• Do not use Discord to host any images you post, these links expire quickly! You can learn how to add images to your posts here.
  • Reminder: AI-generated content is not allowed on the forums per the Rules and Regulations. Please contact us if you have any questions!
Berserk Gene

Resource Berserk Gene 2026-05-04

DMGC

Rookie
Member
Joined
Aug 4, 2025
Posts
7
DMGC submitted a new 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:
Expand Collapse Copy
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...
 
Back
Top