blob: 2465b89f6f3d1b9fedc347eb8b532419811213f1 (
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
|
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
}
|