mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 17:39:18 +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/151/077.ts
Normal file
61
data/Scarlet & Violet/151/077.ts
Normal file
@ -0,0 +1,61 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../151"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
fr: "Ponyta",
|
||||
en: "Ponyta",
|
||||
es: "Ponyta",
|
||||
it: "Ponyta",
|
||||
pt: "Ponyta",
|
||||
de: "Ponita"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Fire"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fire"],
|
||||
|
||||
name: {
|
||||
fr: "Collecte",
|
||||
en: "Collect",
|
||||
es: "Coleccionar",
|
||||
it: "Tassa",
|
||||
pt: "Coleta",
|
||||
de: "Sammeln"
|
||||
},
|
||||
|
||||
effect: {
|
||||
fr: "Piochez une carte.",
|
||||
en: "Draw a card.",
|
||||
es: "Roba 1 carta.",
|
||||
it: "Pesca una carta.",
|
||||
pt: "Compre uma carta.",
|
||||
de: "Ziehe 1 Karte."
|
||||
}
|
||||
}, {
|
||||
cost: ["Fire", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
fr: "Flop",
|
||||
en: "Flop",
|
||||
es: "Vuelta",
|
||||
it: "Tonfo",
|
||||
pt: "Baque",
|
||||
de: "Plumps"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user