Skip to content

Commit

Permalink
Tidy up Igneous Cur
Browse files Browse the repository at this point in the history
  • Loading branch information
radar committed Feb 15, 2024
1 parent cbedda8 commit f117883
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions lib/magic/cards/igneous_cur.rb
Original file line number Diff line number Diff line change
@@ -1,17 +1,13 @@
module Magic
module Cards
IgneousCur = Creature("Igneous Cur") do
class IgneousCur < Creature
cost "{1}{R}"
creature_type("Elemental Dog")
creature_type "Elemental Dog"
power 1
toughness 2
end

class IgneousCur < Creature
class ActivatedAbility < Magic::ActivatedAbility
def costs
[Costs::Mana.new(red: 1, generic: 1)]
end
costs "{1}{R}"

def resolve!
source.modify_power(2)
Expand Down

0 comments on commit f117883

Please sign in to comment.