1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00
Florian Bouillon 2e18aa4aac
Sword & Shield Fixes (#84)
* some fixes

Signed-off-by: Avior <github@avior.me>

* Some more changes

Signed-off-by: Avior <github@avior.me>

* u

Signed-off-by: Avior <github@avior.me>

* continuing update

Signed-off-by: Avior <github@avior.me>

* Finished ?

Signed-off-by: Avior <github@avior.me>

* Removed files that were not meant to be

* Remoed even more files
2021-10-26 10:40:03 +02:00

48 lines
838 B
TypeScript

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 can't 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