Skip to content

Commit

Permalink
Update Cards.lua
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexandreNasajon authored Jun 28, 2017
1 parent 1b423e4 commit 2495711
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Cards.lua
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,20 @@ local Cards = {}
-- end
-- end
-- }

Cards.YoungApprentice = {
name = "Young Apprentice",
power = 0,
cost= 1,
tipo = "Unit",
stamina = 1,
description = "If summoned, this gains power equal to your level.",
effect = {ifsummoned = function(card,Player1,Player2)
card.power = card.power+Player1.level
print(card.name.." gained "..Player1.level.." power.")
end
}
}
Cards.Avatar = {
name = "Avatar",
power = 0,
Expand Down

0 comments on commit 2495711

Please sign in to comment.