1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-06 17:27:52 +00:00
Florian Bouillon 146aad93fa
Added Celebrations (#86)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-10-09 22:48:54 +00:00

47 lines
839 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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