mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 09:29:19 +00:00
feat: Add Scarlet & violet three first sets (#446)
Some checks failed
Build / build (push) Failing after 59s
Some checks failed
Build / build (push) Failing after 59s
This commit is contained in:
61
data/Scarlet & Violet/Paldea Evolved/046.ts
Normal file
61
data/Scarlet & Violet/Paldea Evolved/046.ts
Normal file
@ -0,0 +1,61 @@
|
||||
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
|
Reference in New Issue
Block a user