}
@Override
public List<Node> getNodes() {
List<Node> nodes = new ArrayList<Node>();
nodes.add(new Node("", SettingsType.GENERAL,
"economy.prices.wizard.teleport", 100));
nodes.add(new Node("", SettingsType.GENERAL,
"economy.prices.wizard.changetime", 100));
nodes.add(new Node("", SettingsType.GENERAL,
"economy.prices.wizard.spawnmob", 100));
nodes.add(new Node("", SettingsType.GENERAL,
"economy.prices.wizard.togglestorm", 100));
nodes.add(new Node("TeleportManaCost", SettingsType.GENERAL,
"wizards.mana-costs.teleport", 5));
nodes.add(new Node("ChangeTimeManaCost", SettingsType.GENERAL,
"wizards.mana-costs.changetime", 5));
nodes.add(new Node("SpawnMobManaCost", SettingsType.GENERAL,
"wizards.mana-costs.spawnmob", 5));
nodes.add(new Node("ToggleStormManaCost", SettingsType.GENERAL,
"wizards.mana-costs.togglestorm", 5));
nodes.add(new Node("WizardMaxLocations", SettingsType.GENERAL,
"wizards.max-locations", 10));
nodes.add(new Node("WizardMaxMana", SettingsType.GENERAL,
"wizards.max-mana", 100));
nodes.add(new Node("WizardInteractItem", SettingsType.GENERAL,
"wizards.interact-item", 288));
nodes.add(new Node("WizardManaRegenItem", SettingsType.GENERAL,
"wizards.mana-regen-item", 348));
nodes.add(new Node("WizardManaRegenRate", SettingsType.GENERAL,
"wizards.mana-regen-rate", 6000));
nodes.add(new Node("RegenWizardMana", SettingsType.GENERAL,
"wizards.regen-mana", true));
return nodes;
}