well i finished it and decided to share because I'm nice took like 20 mins to write this shit down!!!
enum Spells {
HomeTeleport("Lunar Home Teleport", 0, 16),
BakePie("Bake Pie", 65, 15),
CurePlant("Cure Plant", 66, 31),
MonsterExamine("Monster Examine", 66, 6),
NpcContact("NPC Contact", 67, 4),
CureOther("Cure Other", 68, 1),
Humidify("Humidify", 68, 7),
MoonClanTeleport("Moonclan Teleport", 69,20),
TeleGroupMoonclan("Tele Group Moonclan", 70, 32),
CureMe("Cure Me", 71, 23),
HunterKit("Hunter Kit", 71, 8),
WaterbirthTeleport("Waterbirth Teleport", 72, 24),
TeleGroupWaterbirth("Tele Group Waterbirth",73,33),
CureGroup("Cure Group",74,3),
StatSpy("Stat Spy",75,9),
BarbarianTeleport("Barbarian Teleport",75,0),
TeleGroupBarbarian("Tele Group Barbarian",76,34),
SuperglassMake("Superglass Make",77,25),
KhazardTeleport("Khazard Teleport",78,18),
TeleGroupKhazard("Tele Group Khazard",79,35),
Dream("Dream",79,10),
StringJewellery("String Jewellery",80,22),
StatRestorePotShare("Stat Restore Pot Share",81,27),
MagicImbue("Magic Imbue",82,13),
FertileSoil("Fertile Soil",83,2),
BoostPotionShare("Boost Potion Share",84,26),
FishingGuildTeleport("Fishing Guild Teleport",85,17),
TeleGroupFishingGuild("Tele Group Fishing Guild",86,36),
PlankMake("Plank Make",86,11),
CatherbyTeleport("Catherby Teleport",87,21),
TeleGroupCatherby("Tele Group Catherby",88,37),
IcePlateauTeleport("Ice Plateau Teleport",89,28),
TeleGroupIcePlateau("Tele Group Ice Plateau",90,38),
EnergyTransfer("Energy Transfer",91,5),
HealOther("Heal Other",92,29),
VengeanceOther("Vengance Other",93,19),
Vengance("Vengance",94,14),
HealGroup("Heal Group",95,30),
SpellbookSwap("Spellbook Swap",96,12);
private final int level;
private final int childid;
private final String name;
Spells(String name, int level, int childid) {
this.name = name;
this.level = level;
this.childid = childid;
}
public String getName() {
return name;
}
public int getLevel() {
return level;
}
public int getChild() {
return childid;
}
public int getParent() {
return 430;
}
}