mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 03:42:13 +00:00
99 lines
2.5 KiB
TypeScript
99 lines
2.5 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../BREAKthrough'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Stunfisk",
|
||
fr: "Limonde",
|
||
es: "Stunfisk",
|
||
it: "Stunfisk",
|
||
pt: "Stunfisk",
|
||
de: "Flunschlik"
|
||
},
|
||
illustrator: "Naoki Saito",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
618,
|
||
],
|
||
hp: 110,
|
||
types: [
|
||
"Lightning",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Lightning",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Revenge",
|
||
fr: "Vendetta",
|
||
es: "Desquite",
|
||
it: "Vendetta",
|
||
pt: "Vingança",
|
||
de: "Vergeltung"
|
||
},
|
||
effect: {
|
||
en: "If any of your Pokémon were Knocked Out by damage from an opponent's attack during his or her last turn, this attack does 80 more damage.",
|
||
fr: "Si l'un de vos Pokémon a été mis K.O. par les dégâts d'une attaque de votre adversaire pendant son dernier tour, cette attaque inflige 80 dégâts supplémentaires.",
|
||
es: "Si alguno de tus Pokémon quedó Fuera de Combate por el daño de un ataque de tu rival durante su último turno, este ataque hace 80 puntos de daño más.",
|
||
it: "Se uno qualsiasi dei tuoi Pokémon è stato messo KO dai danni inflitti da un attacco del tuo avversario durante il suo ultimo turno, questo attacco infligge 80 danni in più.",
|
||
pt: "Se qualquer um dos seus Pokémon tiver sido Nocauteado por danos causados pelo ataque de um oponente durante a última vez de jogar desse oponente, este ataque causará 80 de danos adicionais.",
|
||
de: "Falls eins deiner Pokémon während des letzten Zuges deines Gegners durch Schaden eines gegnerischen Angriffs kampfunfähig gemacht wurde, fügt dieser Angriff 80 weitere Schadenspunkte zu."
|
||
},
|
||
damage: "20+",
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Lightning",
|
||
"Lightning",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Thunder Blast",
|
||
fr: "Grondement de Tonnerre",
|
||
es: "Estallido Trueno",
|
||
it: "Tuonobomba",
|
||
pt: "Explosão de Trovões",
|
||
de: "Donnerkeil"
|
||
},
|
||
effect: {
|
||
en: "Discard an Energy attached to this Pokémon.",
|
||
fr: "Défaussez une Énergie attachée à ce Pokémon.",
|
||
es: "Descarta 1 Energía unida a este Pokémon.",
|
||
it: "Scarta un'Energia assegnata a questo Pokémon.",
|
||
pt: "Descarte uma Energia ligada a este Pokémon.",
|
||
de: "Lege 1 an dieses Pokémon angelegte Energie auf deinen Ablagestapel."
|
||
},
|
||
damage: 80,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
resistances: [
|
||
{
|
||
type: "Metal",
|
||
value: "-20"
|
||
},
|
||
],
|
||
retreat: 3,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|