1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +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

90 lines
1.3 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 '../Steam Siege'
const card: Card = {
name: {
en: "Yanma",
fr: "Yanma",
es: "Yanma",
it: "Yanma",
pt: "Yanma",
de: "Yanma"
},
illustrator: "match",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
193,
],
hp: 70,
types: [
"Grass",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Scout",
fr: "Espionnage",
es: "Explorar",
it: "Esplorazione",
pt: "Explorador",
de: "Späher"
},
effect: {
en: "Your opponent reveals his or her hand.",
fr: "Votre adversaire montre sa main.",
es: "Tu rival enseña las cartas de su mano.",
it: "Il tuo avversario mostra le carte che ha in mano.",
pt: "Seu oponente revela a própria mão.",
de: "Dein Gegner deckt seine Handkarten auf."
},
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Speed Dive",
fr: "Plongée Rapide",
es: "Picado Rápido",
it: "Immersione Rapida",
pt: "Mergulho Veloz",
de: "Tempohechtsprung"
},
damage: 40,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 1,
}
export default card