mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-28 06:49:18 +00:00
fix: SV sets now have their illustrator set (#743)
This commit is contained in:
51
data/Scarlet & Violet/SVP Black Star Promos/187.ts
Normal file
51
data/Scarlet & Violet/SVP Black Star Promos/187.ts
Normal file
@ -0,0 +1,51 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SVP Black Star Promos"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Yanmega",
|
||||
fr: "Yanmega",
|
||||
de: "Yanmega",
|
||||
es: "Yanmega",
|
||||
it: "Yanmega",
|
||||
pt: "Yanmega"
|
||||
},
|
||||
|
||||
illustrator: "Dsuke",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Grass"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Grass", "Grass", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Gyro Shockwave",
|
||||
fr: "Onde de Choc Gyro",
|
||||
de: "Gyro-Schockwelle",
|
||||
es: "Onda Giratoria Explosiva",
|
||||
it: "Vortexonda d'Urto",
|
||||
pt: "Onda de Choques Giroscópica"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Switch this Pokémon with 1 of your Benched Pokémon.",
|
||||
fr: "Échangez ce Pokémon contre l'un de vos Pokémon de Banc.",
|
||||
de: "Tausche dieses Pokémon gegen 1 Pokémon auf deiner Bank aus.",
|
||||
es: "Cambia este Pokémon por uno de tus Pokémon en Banca.",
|
||||
it: "Scambia questo Pokémon con uno della tua panchina.",
|
||||
pt: "Troque este Pokémon por 1 dos seus Pokémon no Banco."
|
||||
},
|
||||
|
||||
damage: 110
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user