mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 00:49:18 +00:00
feat: Add Paradox Rift (#464)
This commit is contained in:
50
data/Scarlet & Violet/Paradox Rift/084.ts
Normal file
50
data/Scarlet & Violet/Paradox Rift/084.ts
Normal file
@ -0,0 +1,50 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paradox Rift"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Tinkatuff",
|
||||
fr: "Forgella",
|
||||
es: "Tinkatuff",
|
||||
it: "Tinkatuff",
|
||||
pt: "Tinkatuff",
|
||||
de: "Tafforgita"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Psychic"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Psychic"],
|
||||
|
||||
name: {
|
||||
en: "Alloy Aswing",
|
||||
fr: "Frappe Alliage",
|
||||
es: "Aleación Oscilante",
|
||||
it: "Metalmazzata",
|
||||
pt: "Giro de Liga Metálica",
|
||||
de: "Schwingende Legierung"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "If this Pokémon has any Metal Energy attached, this attack does 40 more damage.",
|
||||
fr: "Si au moins une Énergie Metal est attachée à ce Pokémon, cette attaque inflige 40 dégâts supplémentaires.",
|
||||
es: "Si este Pokémon tiene alguna Energía Metal unida, este ataque hace 40 puntos de daño más.",
|
||||
it: "Se questo Pokémon ha delle Energie Metal assegnate, questo attacco infligge 40 danni in più.",
|
||||
pt: "Se este Pokémon tiver alguma Energia Metal ligada a ele, este ataque causará 40 pontos de dano a mais.",
|
||||
de: "Wenn an dieses Pokémon mindestens 1 Metal-Energie angelegt ist, fügt diese Attacke 40 Schadenspunkte mehr zu."
|
||||
},
|
||||
|
||||
damage: "20+"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user