special modifiers (Edpiece)

ckb

Minion
Staff member
I am trying to get modifiers for The Crown of Ed the Undying.

This works as expected :

> ash string_modifier("Item: The Crown of Ed the Undying","Evaluated Modifiers");

Returned: Maximum HP: +50, Maximum MP: +50, Initiative: +25

Is there a way to access the Edpiece info as well? Looking at modifiers.txt, I would expect this (but it returns nothing):

> ash string_modifier("Edpiece: "+get_property("edPiece"),"Evaluated Modifiers");

Returned:


I have the same issue with "Throne: "+my_enthroned_familiar()
 

ckb

Minion
Staff member
Thanks!

That was confounding. Why does Item: with with a space but not the others?
 

Darzil

Developer
My guess without looking at the code is that ItemFinder does trim, whereas the rest are straight lookups without going though processing to get the best match.
 
Top