diff --git a/src/main/java/electroblob/wizardry/integration/baubles/WizardryBaublesIntegration.java b/src/main/java/electroblob/wizardry/integration/baubles/WizardryBaublesIntegration.java index a4f37104..52ceec12 100644 --- a/src/main/java/electroblob/wizardry/integration/baubles/WizardryBaublesIntegration.java +++ b/src/main/java/electroblob/wizardry/integration/baubles/WizardryBaublesIntegration.java @@ -46,6 +46,10 @@ public final class WizardryBaublesIntegration { ARTEFACT_TYPE_MAP.put(ItemArtefact.Type.RING, BaubleType.RING); ARTEFACT_TYPE_MAP.put(ItemArtefact.Type.AMULET, BaubleType.AMULET); ARTEFACT_TYPE_MAP.put(ItemArtefact.Type.CHARM, BaubleType.CHARM); + ARTEFACT_TYPE_MAP.put(ItemArtefact.Type.BELT, BaubleType.BELT); + ARTEFACT_TYPE_MAP.put(ItemArtefact.Type.BODY, BaubleType.BODY); + ARTEFACT_TYPE_MAP.put(ItemArtefact.Type.HEAD, BaubleType.HEAD); + ARTEFACT_TYPE_MAP.put(ItemArtefact.Type.TRINKET, BaubleType.TRINKET); } public static boolean enabled(){ diff --git a/src/main/java/electroblob/wizardry/item/ItemArtefact.java b/src/main/java/electroblob/wizardry/item/ItemArtefact.java index a18abae6..22d5b32e 100644 --- a/src/main/java/electroblob/wizardry/item/ItemArtefact.java +++ b/src/main/java/electroblob/wizardry/item/ItemArtefact.java @@ -88,7 +88,11 @@ public class ItemArtefact extends Item { /** An artefact that improves attacking spells. Two of these can be active at any one time. */ RING(2), /** An artefact that improves defensive spells. One of these can be active at any one time. */ AMULET(1), - /** An artefact that improves utility spells. One of these can be active at any one time. */ CHARM(1); + /** An artefact that improves utility spells. One of these can be active at any one time. */ CHARM(1), + /** Added for add-on artefacts. */ BELT(1), + /** Added for add-on artefacts. */ BODY(1), + /** Added for add-on artefacts. */ HEAD(1), + /** Added for add-on artefacts. */ TRINKET(1); public final int maxAtOnce; diff --git a/src/main/resources/assets/ebwizardry/lang/en_us.lang b/src/main/resources/assets/ebwizardry/lang/en_us.lang index ba49f0b4..64c41b5a 100644 --- a/src/main/resources/assets/ebwizardry/lang/en_us.lang +++ b/src/main/resources/assets/ebwizardry/lang/en_us.lang @@ -403,6 +403,10 @@ item.ebwizardry\:generic.disabled=This item has been disabled in the config item.ebwizardry\:ring.generic.desc=Equip this ring in the Baubles inventory or by placing it on your hotbar. Up to 2 rings may be equipped at once. item.ebwizardry\:amulet.generic.desc=Equip this amulet in the Baubles inventory or by placing it on your hotbar. Only one amulet may be equipped at a time. item.ebwizardry\:charm.generic.desc=Equip this charm in the Baubles inventory or by placing it on your hotbar. Only one charm may be equipped at a time. +item.ebwizardry\:belt.generic.desc=Equip this belt in the Baubles inventory or by placing it on your hotbar. Only one belt may be equipped at a time. +item.ebwizardry\:body.generic.desc=Equip this body item in the Baubles inventory or by placing it on your hotbar. Only one body item may be equipped at a time. +item.ebwizardry\:trinket.generic.desc=Equip this trinket in the Baubles inventory or by placing it on your hotbar. Only one trinklet may be equipped at a time. +item.ebwizardry\:head.generic.desc=Equip this headgear in the Baubles inventory or by placing it on your hotbar. Only one headgear may be equipped at a time. item.ebwizardry\:ring_condensing.name=Ring of Condensing item.ebwizardry\:ring_condensing.desc=Slowly regenerates mana for all wands on your hotbar