class RPG::Skill

Attributes

message1[RW]
message2[RW]
mp_cost[RW]
required_wtype_id1[RW]
required_wtype_id2[RW]
stype_id[RW]
tp_cost[RW]

Public Class Methods

new() click to toggle source
Calls superclass method RPG::UsableItem::new
# File lib/rgss3/rpg.rb, line 578
def initialize
  super
  @scope = 1
  @stype_id = 1
  @mp_cost = 0
  @tp_cost = 0
  @message1 = ''
  @message2 = ''
  @required_wtype_id1 = 0
  @required_wtype_id2 = 0
end