1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00
Florian Bouillon 0ce5e62460
Added some XY translations (#63)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:18:16 +00:00

84 lines
1.4 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Fates Collide'
const card: Card = {
name: {
en: "Larvitar",
fr: "Embrylex",
es: "Larvitar",
it: "Larvitar",
pt: "Larvitar",
de: "Larvitar"
},
illustrator: "Masakazu Fukuda",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
246,
],
hp: 50,
types: [
"Fighting",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Mountain Munch",
fr: "Dévore-Montagne",
es: "Mascamontañas",
it: "Sgranocchiacime",
pt: "Masca-Montanhas",
de: "Gipfelmampfer"
},
effect: {
en: "Discard the top card of your opponents deck.",
fr: "Défaussez la carte du dessus du deck de votre adversaire.",
es: "Descarta la primera carta de la baraja de tu rival.",
it: "Scarta la prima carta del mazzo del tuo avversario.",
pt: "Descarte o card de cima do baralho do seu oponente.",
de: "Lege die oberste Karte vom Deck deines Gegners auf seinen Ablagestapel."
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Corkscrew Punch",
fr: "Poing Tire-Bouchon",
es: "Puño Tirabuzón",
it: "Pugno Rotante",
pt: "Soco Saca-rolha",
de: "Korkenzieherhieb"
},
damage: 20,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 1,
}
export default card