Advertisement
TechSkylander1518

PhoenixDex Items Script Changes

Jun 30th, 2023
1,446
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.76 KB | None | 0 0
  1. #Crocola
  2. #AI - under this line
  3.     allStatusItems.push(:RAGECANDYBAR) if Settings::RAGE_CANDY_BAR_CURES_STATUS_PROBLEMS
  4. #add
  5.     allStatusItems.push(:CROCOLA)
  6.  
  7. #Wilted Crown
  8. #Script section Move_Usage, under this code
  9.         elsif target.hasActiveItem?(:FOCUSBAND) && @battle.pbRandom(100) < 10
  10.           target.damageState.focusBand = true
  11.           damage -= 1
  12. #Add
  13.         elsif target.hasActiveItem?(:WILTEDCROWN) && @battle.pbRandom(100) < 10 && target.isSpecies?(:ATHLAURIA)
  14.           target.damageState.focusBand = true
  15.           damage -= 1
  16. #And further down, change this line
  17.       @battle.pbDisplay(_INTL("{1} hung on using its Focus Band!", target.pbThis))
  18. #to
  19.       @battle.pbDisplay(_INTL("{1} hung on using its {2}!", target.pbThis, target.itemName))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement