mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-01 12:22:02 +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/052.ts
Normal file
61
data/Scarlet & Violet/151/052.ts
Normal file
@@ -0,0 +1,61 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../151"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
fr: "Miaouss",
|
||||
en: "Meowth",
|
||||
es: "Meowth",
|
||||
it: "Meowth",
|
||||
pt: "Meowth",
|
||||
de: "Mauzi"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Colorless"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
fr: "Miaou Vas-Tu ?",
|
||||
en: "Come Here Right Meow",
|
||||
es: "Ven Aquí Ya",
|
||||
it: "Gatto nel Sacco",
|
||||
pt: "Miaujude Aqui",
|
||||
de: "Miau, komm her"
|
||||
},
|
||||
|
||||
effect: {
|
||||
fr: "Lancez une pièce. Si c'est face, envoyez l'un des Pokémon de Banc de votre adversaire sur le Poste Actif.",
|
||||
en: "Flip a coin. If heads, switch in 1 of your opponent's Benched Pokémon to the Active Spot.",
|
||||
es: "Lanza 1 moneda. Si sale cara, cambia 1 de los Pokémon en Banca de tu rival por el Pokémon que esté en el Puesto Activo.",
|
||||
it: "Lancia una moneta. Se esce testa, sostituisci uno dei Pokémon nella panchina del tuo avversario con il suo Pokémon in posizione attiva.",
|
||||
pt: "Jogue uma moeda. Se sair cara, mande 1 dos Pokémon no Banco do seu oponente para o Campo Ativo.",
|
||||
de: "Wirf 1 Münze. Wechsle bei Kopf 1 Pokémon von der Bank deines Gegners in die Aktive Position ein."
|
||||
}
|
||||
}, {
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
fr: "Creusogriffes",
|
||||
en: "Dig Claws",
|
||||
es: "Hundir Garras",
|
||||
it: "Scavazanne",
|
||||
pt: "Fincar Garras",
|
||||
de: "Schaufelkrallen"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user