blob: 8faf3148891229d7a7a64eaac949f3e07cc2f892 (
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
|
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
}
|