RPG::Event::Page::Condition
A database of event page conditions.
Superclass
Referrer
Attributes
switch1_valid
Truth value for whether the first [Switch] condition is valid.
switch2_valid
Truth value for whether the second [Switch] condition is valid.
variable_valid
Truth value for whether the [Variable] condition is valid.
self_switch_valid
Truth value for whether the [Self Switch] condition is valid.
switch1_id
If the first [Switch] condition is valid, the ID of that switch.
switch2_id
If the second [Switch] condition is valid, the ID of that switch.
variable_id
If the [Variable] condition is valid, the ID of that variable.
variable_value
If the [Variable] condition is valid, the standard value of that variable (x and greater).
self_switch_ch
If the [Self Switch] condition is valid, the letter of that self switch ("A".."D").
Definition
module RPG
  class Event
    class Page
      class Condition
        def initialize
          @switch1_valid = false
          @switch2_valid = false
          @variable_valid = false
          @self_switch_valid = false
          @switch1_id = 1
          @switch2_id = 1
          @variable_id = 1
          @variable_value = 0
          @self_switch_ch = "A"
        end
        attr_accessor :switch1_valid
        attr_accessor :switch2_valid
        attr_accessor :variable_valid
        attr_accessor :self_switch_valid
        attr_accessor :switch1_id
        attr_accessor :switch2_id
        attr_accessor :variable_id
        attr_accessor :variable_value
        attr_accessor :self_switch_ch
      end
    end
  end
endLast updated