Stereowalker / tiered

Adds tiers/modifiers to tools.
https://www.curseforge.com/minecraft/mc-mods/tiered
Other
5 stars 4 forks source link

Curios Support ? #13

Open rperraudeau opened 2 years ago

rperraudeau commented 2 years ago

Hey,

I have some troubles adding Curios items in my custom attribute json file: I tried to add to the verifiers list:

"verifiers": [ { "tag": "forge:helmets" }, { "tag": "forge:chestplates" }, { "tag": "forge:leggings" }, { "tag": "forge:boots" }, { "tag": "curios:curio" }, { "tag": "curios:back" }, { "tag": "curios:belt" }, { "tag": "curios:body" }, { "tag": "curios:bracelet" }, { "tag": "curios:charm" }, { "tag": "curios:head" }, { "tag": "curios:hands" }, { "tag": "curios:necklace" }, { "tag": "curios:ring" } ],

It seems to work, as the curios items get the "legendary" name. But they have no stats.

so I tried to add optional_equipment_slots:

"optional_equipment_slots": [ "FEET", "LEGS", "CHEST", "HEAD", "CHARM", "RING" ]

But it doesn't seem to work. and the legendary armor doesn't work anymore

Is there a way to manage it, or does it need a support from you ?

I looked at the code, it seems you try to load a "net.minecraft.inventory.EquipmentSlotType" directly from the json (in gson/EquipmentSlotDeserializer.java), so I guess I won't be able to do what I want, am I wrong ?

Thank you !

Stereowalker commented 2 years ago

There isn't support for curios added in the mod

rperraudeau commented 2 years ago

Okay, thank you for the reply. Any plan to do it ?