1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00
Florian Bouillon 2e18aa4aac
Sword & Shield Fixes (#84)
* some fixes

Signed-off-by: Avior <github@avior.me>

* Some more changes

Signed-off-by: Avior <github@avior.me>

* u

Signed-off-by: Avior <github@avior.me>

* continuing update

Signed-off-by: Avior <github@avior.me>

* Finished ?

Signed-off-by: Avior <github@avior.me>

* Removed files that were not meant to be

* Remoed even more files
2021-10-26 10:40:03 +02:00

42 lines
2.1 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Battle Styles'
const card: Card = {
set: Set,
name: {
en: "Single Strike Style Mustard",
fr: "Mustar Style Poing Final",
es: "Mostaz Estilo Brusco",
it: "Mustard Stile Singolcolpo",
pt: "Mostarda Estilo Golpe Decisivo",
de: "Fokussierter-Stil-Mastrich"
},
rarity: "Secret Rare",
category: "Trainer",
effect: {
en: "You can play this card only when it is the last card in your hand.\nSearch your deck for a Single Strike Pokémon and put it onto your Bench. Then, shuffle your deck. If you searched your deck in this way, draw 5 cards.",
fr: "Vous ne pouvez jouer cette carte que si c'est votre dernière carte en main.\n\nCherchez dans votre deck un Pokémon Poing Final, puis placez-le sur votre Banc. Mélangez ensuite votre deck. Si vous avez cherché dans votre deck de cette façon, piochez 5 cartes.",
es: "Puedes jugar esta carta solo cuando sea la última carta en tu mano.\n\nBusca en tu baraja 1 Pokémon Golpe Brusco y ponlo en tu Banca. Después, baraja las cartas de tu baraja. Si has buscado en tu baraja de esta manera, roba 5 cartas.",
it: "Puoi giocare questa carta solo se è l'ultima carta che hai in mano.\n\nCerca nel tuo mazzo un Pokémon Colpo Singolo e mettilo nella tua panchina. Poi rimischia le carte del tuo mazzo. Se hai cercato nel tuo mazzo in questo modo, pesca cinque carte.",
pt: "Você só pode jogar esta carta se ela for a última carta na sua mão.\n\nProcure por 1 Pokémon Golpe Decisivo no seu baralho e coloque-o no seu Banco. Em seguida, embaralhe o seu baralho. Se você procurar no seu baralho desta forma, compre 5 cartas.",
de: "Du kannst diese Karte nur spielen, wenn es die letzte Karte auf deiner Hand ist.\n\nDurchsuche dein Deck nach 1 Fokussierter-Angriff-Pokémon und lege es auf deine Bank. Mische anschließend dein Deck. Wenn du auf diese Weise dein Deck durchsucht hast, ziehe 5 Karten."
},
trainerType: "Supporter",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
},
illustrator: "Mitsuhiro Arita",
regulationMark: "E"
}
export default card