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

66 lines
1.1 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Paldea Evolved"
const card: Card = {
set: Set,
name: {
fr: "Selutin",
en: "Nacli",
es: "Nacli",
it: "Nacli",
pt: "Nacli",
de: "Geosali"
},
rarity: "Illustration rare",
category: "Pokemon",
hp: 70,
types: ["Fighting"],
stage: "Basic",
attacks: [{
cost: ["Fighting"],
name: {
fr: "Couche de Sel",
en: "Salt Coating",
es: "Recubrimiento Salino",
it: "Copertura di Sale",
pt: "Camada de Sal",
de: "Salzbeschichtung"
},
effect: {
fr: "Soignez 20 dégâts de l'un de vos Pokémon.",
en: "Heal 20 damage from 1 of your 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.",
de: "Heile 20 Schadenspunkte bei 1 deiner Pokémon."
}
}, {
cost: ["Fighting", "Fighting"],
name: {
fr: "Charge",
en: "Tackle",
es: "Placaje",
it: "Azione",
pt: "Investida",
de: "Tackle"
},
damage: 30
}],
retreat: 3,
regulationMark: "G",
variants: {
normal: false,
reverse: false
}
}
export default card