mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 01:49: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:
50
data/Scarlet & Violet/151/067.ts
Normal file
50
data/Scarlet & Violet/151/067.ts
Normal file
@ -0,0 +1,50 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../151"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
fr: "Machopeur",
|
||||
en: "Machoke",
|
||||
es: "Machoke",
|
||||
it: "Machoke",
|
||||
pt: "Machoke",
|
||||
de: "Maschock"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 100,
|
||||
types: ["Fighting"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fighting", "Fighting"],
|
||||
|
||||
name: {
|
||||
fr: "Pousse-Montagnes",
|
||||
en: "Mountain Ramming",
|
||||
es: "Empuje Montaña",
|
||||
it: "Speronamonte",
|
||||
pt: "Colisão Montanhosa",
|
||||
de: "Bergramme"
|
||||
},
|
||||
|
||||
effect: {
|
||||
fr: "Défaussez la carte du dessus du deck de votre adversaire.",
|
||||
en: "Discard the top card of your opponent's deck.",
|
||||
es: "Descarta la primera carta de la baraja de tu rival.",
|
||||
it: "Scarta la prima carta del mazzo del tuo avversario.",
|
||||
pt: "Descarte a carta de cima do baralho do seu oponente.",
|
||||
de: "Lege die oberste Karte vom Deck deines Gegners auf seinen Ablagestapel."
|
||||
},
|
||||
|
||||
damage: 50
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user