DMGC submitted a new resource:
Berserk Gene - Small script to add the GSC Berserk Gene item
Read more about this resource...
Berserk Gene - Small script to add the GSC Berserk Gene item
Here's a little script for anyone that wants to add the Berserk Gene item from Gen II into their game. Just add this as a new script above Main (but before Battle):
Ruby:Battle::ItemEffects::OnSwitchIn.add(:BERSERKGENE, proc { |item, battler, battle| next if battler.fainted? # You can change the usage message on the next line battle.pbDisplay(_INTL("{1} used its {2}!", battler.pbThis, battler.itemName)) if battler.pbCanRaiseStatStage?( :ATTACK, battler)...
Read more about this resource...