1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 01:49:19 +00:00

Added Celebrations (#86)

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2021-10-10 00:48:54 +02:00
committed by GitHub
parent 8eb96fd279
commit 146aad93fa
52 changed files with 2513 additions and 65 deletions

View File

@ -0,0 +1,47 @@
import { Card } from '../../../interfaces'
import Set from '../Celebrations'
const card: Card = {
set: Set,
name: {
en: "Claydol"
},
illustrator: "Midori Harada",
rarity: "None",
category: "Pokemon",
hp: 80,
types: ["Fighting"],
stage: "Stage1",
abilities: [{
type: "Poke-POWER",
name: {
en: "Cosmic Power"
},
effect: {
en: "Once during your turn (before your attack), you may choose up to 2 cards from your hand and put them on the bottom of your deck in any order. If you do, draw cards until you have 6 cards in your hand. This power cant be used if Claydol is affected by a Special Condition."
}
}],
attacks: [{
name: {
en: "Spinning Attack"
},
damage: 40,
cost: ["Fighting", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "+20"
}],
retreat: 2
}
export default card