HippoKing
Member
I want to work out the effect on numeric modifiers of my equipment, including my familiar equipment (inc weight modifiers, simple modifiers like the +1% item from rake, and more complex modifiers like the Jill's LED candle).
I've been trying to do this using Mafia's familiar specialisations of numeric_modifier, and they seem to give incorrect answers while using my current familiar. Specifically, for weight equips, `$item[none]` as equip gives the current power including the equipment, while including the current equipment adds that effect on again.
Example with the chest mimic:
I don't like this, but I guess I could correct out the extra familiar weight doing something weird like
And it gets worse with the Jill of All Trades:
My actual modifier with the Jill was 131.93. I don't know what's going on here or how to correct for it.
I've been trying to do this using Mafia's familiar specialisations of numeric_modifier, and they seem to give incorrect answers while using my current familiar. Specifically, for weight equips, `$item[none]` as equip gives the current power including the equipment, while including the current equipment adds that effect on again.
Example with the chest mimic:
Code:
> ash my_familiar().to_string()
Returned: Chest Mimic
> ash equipped_item($slot[familiar]).name
Returned: Apriling band piccolo
> ash numeric_modifier(my_familiar(),$modifier[item drop],50,$item[none]) # 50 here is the weight including the familiar equip
Returned: 99.44044240850758 # this is the correct number
> ash numeric_modifier(my_familiar(),$modifier[item drop],50,equipped_item($slot[familiar]))
Returned: 114.44562646538029
I don't like this, but I guess I could correct out the extra familiar weight doing something weird like
Code:
my_weight = familiar_weight(my_familiar()) + weight_adjustment() - numeric_modifier(equipped_item($slot[familiar]),$modifier[familiar weight])
And it gets worse with the Jill of All Trades:
Code:
> ash my_familiar().to_string()
Returned: Jill-of-All-Trades
> ash equipped_item($slot[familiar]).name
Returned: LED candle
> get ledCandleMode
disco
> ash numeric_modifier(my_familiar(),$modifier[item drop],48,$item[none])
Returned: 96.38093031466052
> ash numeric_modifier(my_familiar(),$modifier[item drop],48,equipped_item($slot[familiar]))
Returned: 103.99073994677235
My actual modifier with the Jill was 131.93. I don't know what's going on here or how to correct for it.