1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 12:52:13 +00:00
Florian Bouillon 96f34fcafb
Added informations on more languages for Sword & Shield cards
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-29 17:20:26 +02:00

81 lines
2.7 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 '../Shining Fates'
const card: Card = {
set: Set,
name: {
fr: "Limonde de Galar",
en: "Galarian Stunfisk",
es: "Stunfisk de Galar",
it: "Stunfisk di Galar",
pt: "Stunfisk de Galar",
de: "Galar-Flunschlik"
},
illustrator: "tetsuya koizumi",
rarity: "Ultra Rare",
category: "Pokemon",
hp: 120,
types: ["Metal"],
abilities: [{
type: "Ability",
name: {
fr: "Troquenard",
en: "Snap Trap",
es: "Cepo",
it: "Tagliola",
pt: "Armadilha Surpresa",
de: "Fangeisen"
},
effect: {
fr: "Si ce Pokémon est sur le Poste Actif et quil subit les dégâts dune attaque de votre adversaire (même sil est mis K.O.), défaussez une Énergie du Pokémon Attaquant.",
en: "If this Pokémon is in the Active Spot and is damaged by an opponents attack (even if it is Knocked Out), discard an Energy from the Attacking Pokémon.",
es: "Si este Pokémon está en el Puesto Activo y resulta dañado por un ataque de tu rival (incluso si queda Fuera de Combate), descarta 1 Energía del Pokémon Atacante.",
it: "Se questo Pokémon è in posizione attiva e viene danneggiato da un attacco dellavversario, anche se viene messo KO, scarta unEnergia dal Pokémon attaccante.",
pt: "Se este Pokémon estiver no Campo Ativo e for danificado por um ataque do seu oponente (mesmo que ele seja Nocauteado), descarte 1 Energia do Pokémon Atacante.",
de: "Wenn dieses Pokémon in der Aktiven Position ist und durch eine Attacke deines Gegners Schaden erhält (auch wenn es dadurch kampfunfähig wird), lege 1 Energie vom Angreifenden Pokémon auf den Ablagestapel."
}
}],
attacks: [{
name: {
fr: "Charge Destructrice",
en: "Damage Rush",
es: "Embestida Dañina",
it: "Sfuriadanni",
pt: "Fúria Destruidora",
de: "Schadensrausch"
},
effect: {
fr: "Lancez une pièce jusquà obtenir un côté pile. Cette attaque inflige 30 dégâts supplémentaires pour chaque côté face.",
en: "Flip a coin until you get tails. This attack does 30 more damage for each heads.",
es: "Lanza 1 moneda hasta que salga cruz. Este ataque hace 30 puntos de daño más por cada cara.",
it: "Lancia una moneta finché non esce croce. Questo attacco infligge 30 danni in più ogni volta che esce testa.",
pt: "Jogue 1 moeda até sair coroa. Este ataque causa 30 pontos de dano a mais para cada cara.",
de: "Wirf so lange 1 Münze, bis zum ersten Mal das Ergebnis Zahl kommt. Diese Attacke fügt 30 Schadenspunkte mehr pro Kopf zu."
},
damage: "30+",
cost: ["Metal", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 2,
regulationMark: "D"
}
export default card