这样
比如说武器ID5,就读取武器ID5后面的参数(用技能的note)
然后$data_weapons调用武器,读取其note参数
module RPG
class Skill
def pre_weaponcanshu
note.split(/[\r\n]+/).each { |line|
case line
when //i
return $1.to_i
end
}
return 0
end
def weaponcanshu
w=$data_weapons
w.note.split(/[\r\n]+/).each { |line|
case li ...