1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-04 08:32:10 +00:00
Florian Bouillon 3c93a3534c
Some checks failed
Build / build (push) Failing after 59s
feat: Add Scarlet & violet three first sets (#446)
2023-11-12 14:56:22 +01:00

61 lines
937 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Paldea Evolved"
const card: Card = {
set: Set,
name: {
fr: "Cadoizo",
en: "Delibird",
es: "Delibird",
it: "Delibird",
pt: "Delibird",
de: "Botogel"
},
rarity: "Common",
category: "Pokemon",
hp: 90,
types: ["Water"],
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
fr: "Double Pioche",
en: "Double Draw",
es: "Roba Doble",
it: "Pescata Doppia",
pt: "Compra Dupla",
de: "Zweifachzug"
},
effect: {
fr: "Piochez 2 cartes.",
en: "Draw 2 cards.",
es: "Roba 2 cartas.",
it: "Pesca due carte.",
pt: "Compre 2 cartas.",
de: "Ziehe 2 Karten."
}
}, {
cost: ["Water", "Colorless"],
name: {
fr: "Aile Glace",
en: "Ice Wing",
es: "Ala Gélida",
it: "Alagelata",
pt: "Asa de Gelo",
de: "Frostschwinge"
},
damage: 30
}],
retreat: 1,
regulationMark: "G"
}
export default card