mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 17:39:18 +00:00
feat: Paldean Fates and Temporal Forces (#478)
This commit is contained in:
67
data/Scarlet & Violet/Paldean Fates/047.ts
Normal file
67
data/Scarlet & Violet/Paldean Fates/047.ts
Normal file
@ -0,0 +1,67 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldean Fates"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Annihilape",
|
||||
fr: "Courrousinge",
|
||||
es: "Annihilape",
|
||||
it: "Annihilape",
|
||||
pt: "Annihilape"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 140,
|
||||
types: ["Fighting"],
|
||||
stage: "Stage2",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fighting"],
|
||||
|
||||
name: {
|
||||
en: "Rage Fist",
|
||||
fr: "Poing de Colère",
|
||||
es: "Puño Furia",
|
||||
it: "Pugno Furibondo",
|
||||
pt: "Punho Feroz"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "This attack does 70 damage for each Prize card your opponent has taken.",
|
||||
fr: "Cette attaque inflige 70 dégâts pour chaque carte Récompense que votre adversaire a récupérée.",
|
||||
es: "Este ataque hace 70 puntos de daño por cada carta de Premio que haya cogido tu rival.",
|
||||
it: "Questo attacco infligge 70 danni per ogni carta Premio presa dal tuo avversario.",
|
||||
pt: "Este ataque causa 70 pontos de dano para cada carta de Prêmio que seu oponente pegou."
|
||||
},
|
||||
|
||||
damage: "70×"
|
||||
}, {
|
||||
cost: ["Fighting", "Fighting"],
|
||||
|
||||
name: {
|
||||
en: "Dynamite Punch",
|
||||
fr: "Poing Dynamite",
|
||||
es: "Puño Dinamita",
|
||||
it: "Pugno Dinamite",
|
||||
pt: "Soco Dinamite"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "This Pokémon also does 50 damage to itself.",
|
||||
fr: "Ce Pokémon s'inflige aussi 50 dégâts.",
|
||||
es: "Este Pokémon también se hace 50 puntos de daño a sí mismo.",
|
||||
it: "Questo Pokémon infligge anche 50 danni a se stesso.",
|
||||
pt: "Este Pokémon também causa 50 pontos de dano a si mesmo."
|
||||
},
|
||||
|
||||
damage: 170
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user