mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-13 09:11:59 +00:00
fix: SV sets now have their illustrator set (#743)
This commit is contained in:
62
data/Scarlet & Violet/SVP Black Star Promos/188.ts
Normal file
62
data/Scarlet & Violet/SVP Black Star Promos/188.ts
Normal file
@@ -0,0 +1,62 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SVP Black Star Promos"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Scrafty",
|
||||
fr: "Baggaïd",
|
||||
de: "Irokex",
|
||||
es: "Scrafty",
|
||||
it: "Scrafty",
|
||||
pt: "Scrafty"
|
||||
},
|
||||
|
||||
illustrator: "OKUBO",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Darkness"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Nab 'n' Dash",
|
||||
fr: "Vol et Ruée",
|
||||
de: "Schnappen und Sprinten",
|
||||
es: "Birlar y Pirarse",
|
||||
it: "Arraffa e Scappa",
|
||||
pt: "Pegar e Vazar"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Search your deck for a number of cards up to the number of your Benched Pokémon and put them into your hand. Then, shuffle your deck.",
|
||||
fr: "Cherchez dans votre deck un nombre de cartes inférieur ou égal au nombre de Pokémon sur votre Banc, puis ajoutez-les à votre main. Mélangez ensuite votre deck.",
|
||||
de: "Durchsuche dein Deck nach bis zu so vielen Karten, wie du Pokémon auf deiner Bank hast, und nimm sie auf deine Hand. Mische anschließend dein Deck.",
|
||||
es: "Busca en tu baraja una cantidad de cartas igual o inferior al número de Pokémon que tengas en Banca y ponlas en tu mano. Después, baraja las cartas de tu baraja.",
|
||||
it: "Cerca nel tuo mazzo un numero di carte uguale o inferiore al numero di Pokémon nella tua panchina e aggiungile alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.",
|
||||
pt: "Procure por um número de cartas no seu baralho até o número dos seus Pokémon no Banco e coloque-as na sua mão. Em seguida, embaralhe o seu baralho."
|
||||
}
|
||||
}, {
|
||||
cost: ["Darkness", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "High Jump Kick",
|
||||
fr: "Pied Voltige",
|
||||
de: "Turmkick",
|
||||
es: "Patada Salto Alta",
|
||||
it: "Calcinvolo",
|
||||
pt: "Chute de Pulo Alto"
|
||||
},
|
||||
|
||||
damage: 100
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user