mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-26 12:52:13 +00:00
* 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
102 lines
2.8 KiB
TypeScript
102 lines
2.8 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Darkness Ablaze'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Galarian Stunfisk V",
|
||
fr: "Limonde de Galar V",
|
||
es: "Stunfisk V de Galar",
|
||
it: "Stunfisk di Galar V",
|
||
pt: "Stunfisk de Galar V",
|
||
de: "Galar-Flunschlik V"
|
||
},
|
||
|
||
illustrator: "PLANETA Tsuji",
|
||
rarity: "Ultra Rare",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
hp: 200,
|
||
|
||
types: [
|
||
"Metal",
|
||
],
|
||
|
||
abilities: [
|
||
{
|
||
type: "Ability",
|
||
name: {
|
||
en: "Metal Skin",
|
||
fr: "Peau Métal",
|
||
es: "Piel Metálica",
|
||
it: "Metalpelle",
|
||
pt: "Pele Metálica",
|
||
de: "Metallhaut"
|
||
},
|
||
effect: {
|
||
en: "This Pokémon gets +20 HP for each Metal Energy attached to it.",
|
||
fr: "Chaque Énergie Metal attachée à ce Pokémon lui ajoute 20 PV.",
|
||
es: "Este Pokémon obtiene 20 PS más por cada Energía Metal unida a él.",
|
||
it: "Questo Pokémon ha 20 PS in più per ogni Energia Metal a esso assegnata.",
|
||
pt: "Este Pokémon recebe 20 PS a mais para cada Energia Metal ligada a ele.",
|
||
de: "Dieses Pokémon erhält für jede an es angelegte Metal-Energie +20 KP."
|
||
},
|
||
},
|
||
],
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Trapping Bite",
|
||
fr: "Piège Mordant",
|
||
es: "Mordisco Trampa",
|
||
it: "Morso Trappola",
|
||
pt: "Arapuca Mordedora",
|
||
de: "Fangbiss"
|
||
},
|
||
effect: {
|
||
en: "During your opponent's next turn, if this Pokémon is damaged by an attack (even if it is Knocked Out), put 12 damage counters on the Attacking Pokémon.",
|
||
fr: "Pendant le prochain tour de votre adversaire, si ce Pokémon subit les dégâts d'une attaque (même s'il est mis K.O.), placez 12 marqueurs de dégâts sur le Pokémon Attaquant.",
|
||
es: "Durante el próximo turno de tu rival, si este Pokémon resulta dañado por un ataque (incluso si queda Fuera de Combate), pon 12 contadores de daño en el Pokémon Atacante.",
|
||
it: "Durante il prossimo turno del tuo avversario, se questo Pokémon viene danneggiato da un attacco, anche se viene messo KO, metti 12 segnalini danno sul Pokémon attaccante.",
|
||
pt: "Durante o próximo turno do seu oponente, se este Pokémon for danificado por um ataque (mesmo que ele seja Nocauteado), coloque 12 contadores de dano no Pokémon Atacante.",
|
||
de: "Wenn diesem Pokémon während des nächsten Zuges deines Gegners durch eine Attacke Schaden zugefügt wird (auch wenn dieses Pokémon dadurch kampfunfähig wird), lege 12 Schadensmarken auf das Angreifende Pokémon."
|
||
},
|
||
damage: 60,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Fire",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
resistances: [
|
||
{
|
||
type: "Grass",
|
||
value: "-30"
|
||
},
|
||
],
|
||
|
||
retreat: 4,
|
||
regulationMark: "D",
|
||
|
||
variants: {
|
||
normal: false,
|
||
reverse: false,
|
||
holo: true,
|
||
firstEdition: false
|
||
},
|
||
|
||
stage: "Basic",
|
||
suffix: "V"
|
||
}
|
||
|
||
export default card
|