Navigation Menu

Skip to content

Commit

Permalink
Add a few preliminary cards.
Browse files Browse the repository at this point in the history
  • Loading branch information
lehmannro committed Feb 28, 2013
1 parent f117ec5 commit d9ccfc6
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
9 changes: 9 additions & 0 deletions cardshuffle/cards/books.py
@@ -0,0 +1,9 @@
# Copyright (C) 2010 Robert Lehmann

from cardshuffle.cards import Card

class TomeOfMagic(Card):
tags = "dark"
def apply(self, caster, args):
caster.health -= 50
caster.max_mana += 50
9 changes: 9 additions & 0 deletions cardshuffle/cards/priest.py
@@ -0,0 +1,9 @@
# Copyright (C) 2010 Robert Lehmann

from cardshuffle.cards import Card

class Heal(Card):
mana = 20
damage = -20
desc = "Heal your target."
tags = "light"

0 comments on commit d9ccfc6

Please sign in to comment.