mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
65 lines
894 B
TypeScript
65 lines
894 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Great Encounters'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Delibird",
|
|
fr: "Cadoizo",
|
|
},
|
|
illustrator: "Masakazu Fukuda",
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
225,
|
|
],
|
|
hp: 70,
|
|
types: [
|
|
"Water",
|
|
],
|
|
|
|
stage: "Basic",
|
|
|
|
|
|
attacks: [
|
|
{
|
|
|
|
name: {
|
|
en: "Present",
|
|
fr: "Cadeau",
|
|
},
|
|
effect: {
|
|
en: "Flip a coin. If heads, search your deck for any 1 card and put it into your hand. Shuffle your deck afterward.",
|
|
fr: "Lancez une pièce. Si c'est face, choisissez 1 carte dans votre deck et placez-la dans votre main. Ensuite, mélangez votre deck.",
|
|
},
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Water",
|
|
],
|
|
name: {
|
|
en: "Ice Ball",
|
|
fr: "Ball'glace",
|
|
},
|
|
|
|
damage: 20,
|
|
|
|
},
|
|
],
|
|
weaknesses: [
|
|
{
|
|
type: "Metal",
|
|
value: "+20"
|
|
},
|
|
],
|
|
|
|
retreat: 1,
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|