I'm trying to make it so that if Tao Gunka Card is equipped, this status will not provide a bonus.
case SC_DELUGE:
if( status->current_equip_card_id = 4302 )
val2 = 0; //HP increase*
else
val2 = val1*3; //HP increase*
I tried doing this but it doesn't seem to work. It just gives 0 HP bonus no matter what.
case SC_DELUGE:
if( status->current_equip_card_id = 4302 )
val2 = 0; //HP increase*
else
val2 = val1*3; //HP increase*
I tried doing this but it doesn't seem to work. It just gives 0 HP bonus no matter what.