Spoiler
#------------------------------------------------------------------------------|
# * Skill/Item Notetags

skill/item notebox in the database) |
# - <charge prior action cost: boolean> |
# Sets the skill/item's action cost to be paid before and after finished |
# charging if boolean is false and true respectively |
# - <charge prior item cost: boolean> |
# Sets the skill/item's non-action cost to be paid before and after |
# finished charging if boolean is false and true respectively |
#------------------------------------------------------------------------------|
#==============================================================================|
# ** You only need to edit this part as it's about what this script does |
#------------------------------------------------------------------------------|
module DoubleX_RMVXA
module YSA_CATB_Charge_Addon
# The skill/item's action cost will be paid after finished charging if
# CHARGE_PRIOR_ACTION_COST is true
# It'll only be used if <charge prior act cost> is absent
CHARGE_PRIOR_ACTION_COST = true
# The skill/item's non-action costs will be paid after finished charging if
# CHARGE_PRIOR_ITEM_COST is true
# It'll only be used if <charge prior item cost> is absent
CHARGE_PRIOR_ITEM_COST = true
end # YSA_CATB_Charge_Addon
end # DoubleX_RMVXA
#==============================================================================|