mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
90 lines
1.3 KiB
TypeScript
90 lines
1.3 KiB
TypeScript
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
|