如何从im使用函数引用对象

时间:2017-01-07 21:25:14

标签: ruby

我学习红宝石,我正在编写一个简单的文字游戏,我们正在与对手作战。我有一个班级" Hero",我有这样的代码

  def attack(enemy)
    enemy.hp -= attack_damage
    puts enemy.name + " HP:" + enemy.hp.to_s
    enemy.attack(# This is the place where I need to refer to object from what I'm calling this method #)
  end

当我想要打架时,我只是创造新的英雄和敌人,但我不能使用递归,因为我不知道如何引用物体,正如我所说,所以战斗只持续1次击中

abundzu = Hero.new("abundzu", 100, 25, 5)
herr = Hero.new("herr", 50, 25, 5)
abundzu.attack(herr)

1 个答案:

答案 0 :(得分:5)

只需使用self

def attack(enemy)
  enemy.hp -= attack_damage
  puts "#{enemy.name} HP: #{enemy.hp}"
  enemy.attack(self)
end