mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-08 11:09: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/Scarlet & Violet/025.ts
Normal file
61
data/Scarlet & Violet/Scarlet & Violet/025.ts
Normal file
@ -0,0 +1,61 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Scarlet & Violet"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Toedscool",
|
||||
fr: "Terracool",
|
||||
es: "Toedscool",
|
||||
it: "Toedscool",
|
||||
pt: "Toedscool",
|
||||
de: "Tentagra"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Grass"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Grass"],
|
||||
|
||||
name: {
|
||||
en: "Spore",
|
||||
fr: "Spore",
|
||||
es: "Espora",
|
||||
it: "Spora",
|
||||
pt: "Esporos",
|
||||
de: "Pilzspore"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Your opponent's Active Pokémon is now Asleep.",
|
||||
fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi.",
|
||||
es: "El Pokémon Activo de tu rival pasa a estar Dormido.",
|
||||
it: "Il Pokémon attivo del tuo avversario viene addormentato.",
|
||||
pt: "O Pokémon Ativo do seu oponente agora está Adormecido.",
|
||||
de: "Das Aktive Pokémon deines Gegners schläft jetzt."
|
||||
}
|
||||
}, {
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Ram",
|
||||
fr: "Collision",
|
||||
es: "Apisonar",
|
||||
it: "Carica",
|
||||
pt: "Aríete",
|
||||
de: "Ramme"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user