HeroesFightingFear
"The Champion of Alon"
- 99
- Posts
- 5
- Years
- Orange, TX
- Seen Nov 22, 2020
Based on the Youtuber Mr. Buddy's Buddymon series, I've created my first big script. Only use if the idea of this intrigues you.
Spoiler:
Code:
def pbBuddymonSummoning
if Kernel.pbConfirmMessage(_INTL("Would you like a Buddymon?"))
if $Trainer.party.length>=6
Kernel.pbMessage(_INTL("There isn't enough space to carry it!"))
else
Kernel.pbMessage(_INTL("Please select an item."))
Kernel.pbChooseItem
if isConst?(@item,PBItems,:BUDDYBRACE)
Kernel.pbMessage(_INTL("The {1} is radiating a mystical energy...",item.name))
if Kernel.pbConfirmMessage(_INTL("Let the {1} bring a Buddymon forth?",item.name))
pbGeneratePokemon(:SHROOTINI,_I("The furthest reaches."))
pkmn=$Trainer.lastParty
pbWait(1)
pbMEPlay("Pkmn get")
Kernel.pbMessage(_INTL("The {1} summoned a Buddymon!",item.name))
else
Kernel.pbMessage(_INTL("You decided against it."))
end
end
end
end
end
end