#==============================================================================
# ■ RPG::BaseItem
#==============================================================================
class RPG::BaseItem
#--------------------------------------------------------------------------
# ○ オートステートIDの配列を返す
#--------------------------------------------------------------------------
def auto_states
result = []
if /<オートステート\s+(\d+(?:\s*\,\s*\d+)*)\s*>/ =~ @note
$1.scan(/\d+/).each do |id|
result.push(id.to_i)
end
end
result
end
end
#==============================================================================
# ■ Game_Battler
#==============================================================================
class Game_Battler
#--------------------------------------------------------------------------
# ● 戦闘開始処理
#--------------------------------------------------------------------------
alias tmatst_game_battler_on_battle_start on_battle_start
def on_battle_start
tmatst_game_battler_on_battle_start
add_auto_states
end
end
#==============================================================================
# ■ Game_Actor
#==============================================================================
class Game_Actor
#--------------------------------------------------------------------------
# ○ オートステートの付加
#--------------------------------------------------------------------------
def add_auto_states
states = self.actor.auto_states + self.class.auto_states
self.equips.compact.each {|item| states += item.auto_states }
states.uniq.each {|id| self.add_state(id) }
end
end
#==============================================================================
# ■ Game_Enemy
#==============================================================================
class Game_Enemy
#--------------------------------------------------------------------------
# ○ オートステートの付加
#--------------------------------------------------------------------------
def add_auto_states
self.enemy.auto_states.each {|id| self.add_state(id) }
end
end