Arop Retim
Refugee
I am working to make the clothes tiered and the properties depending to the tier. But I got a problem.
AviatorGoggles and NerdGlasses have a line called "display_value".
I want to change the two lines like this:
But this caused an console error because of the comma in the second line when starting the game.
I also tried multiple display_value lines. But these caused an error too (key already exists).
Is there any way to change the display_value depending on the item tier? Or does someone have a workaround?
AviatorGoggles and NerdGlasses have a line called "display_value".
Code:
<!-- unmodded items.xml -->
<passive_effect name="CraftingTime" operation="perc_add" value="-.1"/>
<display_value name="dCraftingTime" value="-.1"/>
Code:
<passive_effect name="CraftingTime" operation="perc_add" value="-.05,-.2" tier='1,6'/>
<display_value name="dCraftingTime" value="-.05,-.2" tier='1,6'/>
I also tried multiple display_value lines. But these caused an error too (key already exists).
Is there any way to change the display_value depending on the item tier? Or does someone have a workaround?