Skip to content

Instantly share code, notes, and snippets.

@Nullreff
Created January 3, 2014 21:59
Show Gist options
  • Select an option

  • Save Nullreff/8247447 to your computer and use it in GitHub Desktop.

Select an option

Save Nullreff/8247447 to your computer and use it in GitHub Desktop.
define_weapon :magic_sword do
name 'Magic Sword'
description 'This sword burns 30 mana per hit'
damage 20
durability 40
enchant_with :knockback_II, :looting_III
on_damage do |attacker, target|
BURN = 30
target.mana -= BURN
target.send "#{attacker.name}'s sword just burned away #{BURN} of your mana"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment