#==============================================================================|# ** Notetag Info |#------------------------------------------------------------------------------|# * Skill/Item Notetags: |# 1. <symphony wrapper: wrapper> |# - Encapsulates all symphony tags included in wrapper into a single line|# - wrapper names can only use alphanumeric characters |#==============================================================================|#==============================================================================|# ** You only need to edit this part as it's about what this script does |#------------------------------------------------------------------------------|module DoubleX_RMVXA module YES_BattleSymphony_Wrapper_Addon # Example symphony wrapper: <symphony wrapper: THUNDER_BLADE> # Wraps all symphony tags in skill "Thunder Blade" THUNDER_BLADE = %Q( <whole action> immortal: targets, true move user: forward, wait pose: user, cast stance: user, cast animation 81: user, wait hide nonfocus icon create: user, weapon </whole action> <target action> pose: user, 2h swing stance: user, attack icon: user, weapon, swing animation 65: target ani wait: 3 skill effect: dmg wait for animation </target action> <follow action> animation 81: user, wait pose: user, 2h swing stance: user, attack icon: user, weapon, swing animation 68: targets ani wait: 2 skill effect: whole ani wait: 2 skill effect: whole ani wait: 2 skill effect: whole ani wait: 2 skill effect: whole show nonfocus immortal: targets, false </follow action> ) # Adds new symphony wrappers here end # YES_BattleSymphony_Wrapper_Addonend # DoubleX_RMVXA#==============================================================================|