1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
TCGdex [Bot] 7e3cf7aa08
editor: fix Paldea Evolved variants (#510)
Co-authored-by: Aviortheking <git@avior.me>
2024-07-03 16:28:15 +02:00

68 lines
1.8 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 "../Paldea Evolved"
const card: Card = {
set: Set,
name: {
fr: "Courrousinge-ex",
en: "Annihilape ex",
es: "Annihilape ex",
it: "Annihilape-ex",
pt: "Annihilape ex",
de: "Epitaff-ex"
},
rarity: "Ultra Rare",
category: "Pokemon",
hp: 320,
types: ["Fighting"],
stage: "Stage2",
attacks: [{
cost: ["Fighting"],
name: {
fr: "Rancune Rageuse",
en: "Angry Grudge",
es: "Rabia Iracunda",
it: "Rancorfurioso",
pt: "Rancor Guardado",
de: "Böses Nachspiel"
},
effect: {
fr: "Placez jusqu'à 12 marqueurs de dégâts sur ce Pokémon. Cette attaque inflige 20 dégâts pour chaque marqueur de dégâts placé de cette façon.",
en: "Put up to 12 damage counters on this Pokémon. This attack does 20 damage for each damage counter you placed in this way.",
es: "Pon hasta 12 contadores de daño en este Pokémon. Este ataque hace 20 puntos de daño por cada contador de daño que hayas colocado de esta manera.",
it: "Metti fino a 12 segnalini danno su questo Pokémon. Questo attacco infligge 20 danni per ogni segnalino danno che hai messo in questo modo.",
pt: "Coloque até 12 contadores de dano neste Pokémon. Este ataque causa 20 pontos de dano para cada contador de dano colocado desta forma.",
de: "Lege bis zu 12 Schadensmarken auf dieses Pokémon. Diese Attacke fügt für jede auf diese Weise platzierte Schadensmarke 20 Schadenspunkte zu."
},
damage: "20×"
}, {
cost: ["Fighting", "Colorless"],
name: {
fr: "Frappe Atlas",
en: "Seismic Toss",
es: "Sísmico",
it: "Movimento Sismico",
pt: "Arremesso Sísmico",
de: "Geowurf"
},
damage: 150
}],
retreat: 2,
regulationMark: "G",
variants: {
reverse: false,
normal: false
}
}
export default card