1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-31 20:01:58 +00:00

feat: Paldean Fates and Temporal Forces (#478)

This commit is contained in:
2024-03-25 00:30:17 +01:00
committed by GitHub
parent 0c29886812
commit 2d27a129a1
472 changed files with 25187 additions and 7 deletions

View File

@@ -0,0 +1,57 @@
import { Card } from "../../../interfaces"
import Set from "../Paldean Fates"
const card: Card = {
set: Set,
name: {
en: "Nacli",
fr: "Selutin",
es: "Nacli",
it: "Nacli",
pt: "Nacli"
},
rarity: "Shiny rare",
category: "Pokemon",
hp: 70,
types: ["Fighting"],
stage: "Basic",
attacks: [{
cost: ["Fighting"],
name: {
en: "Salt Coating",
fr: "Couche de Sel",
es: "Recubrimiento Salino",
it: "Copertura di Sale",
pt: "Camada de Sal"
},
effect: {
en: "Heal 20 damage from 1 of your Pokémon.",
fr: "Soignez 20 dégâts de l'un de vos Pokémon.",
es: "Cura 20 puntos de daño a uno de tus Pokémon.",
it: "Cura uno dei tuoi Pokémon da 20 danni.",
pt: "Cure 20 pontos de dano de 1 dos seus Pokémon."
}
}, {
cost: ["Fighting", "Fighting"],
name: {
en: "Tackle",
fr: "Charge",
es: "Placaje",
it: "Azione",
pt: "Investida"
},
damage: 30
}],
retreat: 3,
regulationMark: "G"
}
export default card