Data class for battle events (pages).
Last updated 1 year ago
Condition ().
Span (0: battle, 1: turn, 2: moment).
Program contents. An array.
module RPG class Troop class Page def initialize @condition = RPG::Troop::Page::Condition.new @span = 0 @list = [RPG::EventCommand.new] end attr_accessor :condition attr_accessor :span attr_accessor :list end end end