blob: 96e5a9579bb4b13e58fef5ea0bee3e687b2268f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
package jp.plusplus.fbs.event.wish.entry;
import jp.plusplus.fbs.api.FBSEntityPropertiesAPI;
import jp.plusplus.fbs.event.wish.WishHandler;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;
import net.minecraft.util.ChatComponentText;
import net.minecraft.util.StatCollector;
import java.util.regex.Pattern;
/**
* Created by plusplus_F on 2016/03/31.
*/
public class WishEntrySanity implements IWishEntry {
@Override
public float priority() {
return 1.f;
}
@Override
public boolean matches(String string) {
return Pattern.compile(StatCollector.translateToLocal("wish.fbs.sanity.regex"), Pattern.CASE_INSENSITIVE).matcher(string).matches();
}
@Override
public ItemStack get(EntityPlayer player, String string) {
FBSEntityPropertiesAPI.AddSanity(player, 100, 1, true);
player.addChatComponentMessage(new ChatComponentText(WishHandler.getGetMessage("sanity")));
return null;
}
}
|