blob: ce8ad608ad8a14806cff981653d6192e0798738f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
package darkknight.jewelrycraft.curses;
import darkknight.jewelrycraft.api.Curse;
import darkknight.jewelrycraft.util.Variables;
import net.minecraft.util.StatCollector;
public class CurseSacredOath extends Curse {
public CurseSacredOath(String name, int txtID, String texturepack) {
super(name, txtID, texturepack);
}
@Override
public String getDescription() {
return StatCollector.translateToLocal("curse." + Variables.MODID + ".sacredoath.description");
}
@Override
public String getDisplayName() {
return StatCollector.translateToLocal("curse." + Variables.MODID + ".sacredoath");
}
// TODO implement sacred oath to do something
}
|