1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-01 23:22:11 +00:00
Florian Bouillon 9138eedb16
Add swsh variants (#42)
* Updated Kalos Starter Set data

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed XY set

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed some more XY sets

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Added the rest of the SWSH variants

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-02 12:34:21 +00:00

99 lines
2.3 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Champion\'s Path'
const card: Card = {
name: {
en: "Scrafty",
fr: "Baggaïd",
es: "Scrafty",
it: "Scrafty",
pt: "Scrafty",
de: "Irokex"
},
illustrator: "tetsuya koizumi",
rarity: "Rare",
category: "Pokemon",
set: Set,
hp: 120,
types: [
"Darkness",
],
evolveFrom: {
en: "Scraggy",
fr: "Baggiguane"
},
attacks: [
{
cost: [
"Darkness",
],
name: {
en: "Corner",
fr: "Coinçage",
es: "Arrinconar",
it: "Trappola",
pt: "Quina",
de: "Bedrängen"
},
effect: {
en: "During your opponents next turn, the Defending Pokémon cant retreat.",
fr: "Pendant le prochain tour de votre adversaire, le Pokémon Défenseur ne peut pas battre en retraite.",
es: "Durante el próximo turno de tu rival, el Pokémon Defensor no puede retirarse.",
it: "Durante il prossimo turno del tuo avversario, il Pokémon difensore non può ritirarsi.",
pt: "Durante o próximo turno do seu oponente, o Pokémon Defensor não poderá recuar.",
de: "Während des nächsten Zuges deines Gegners kann sich das Verteidigende Pokémon nicht zurückziehen."
},
damage: 30,
},
{
cost: [
"Darkness",
"Colorless",
"Colorless",
],
name: {
en: "Bad Brawl",
fr: "Grosse Bagarre",
es: "Seria Pelea",
it: "Brutta Rissa",
pt: "Briga Braba",
de: "Übles Raufen"
},
effect: {
en: "If you played Piers from your hand during this turn, this attack does 90 more damage.",
fr: "Si vous avez joué Peterson de votre main pendant ce tour, cette attaque inflige 90 dégâts supplémentaires.",
es: "Si has jugado 1 carta de Nerio de tu mano durante este turno, este ataque hace 90 puntos de daño más.",
it: "Se hai giocato Ginepro dalla tua mano durante questo turno, questo attacco infligge 90 danni in più.",
pt: "Se você jogou Pietro da sua mão durante este turno, este ataque causará 90 pontos de dano a mais.",
de: "Wenn du Nezz während dieses Zuges aus deiner Hand gespielt hast, fügt diese Attacke 90 Schadenspunkte mehr zu."
},
damage: "90+",
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 2,
regulationMark: "D",
variants: {
normal: false,
reverse: true,
holo: true,
firstEdition: false
}
}
export default card