1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Florian Bouillon 3c93a3534c
Some checks failed
Build / build (push) Failing after 59s
feat: Add Scarlet & violet three first sets (#446)
2023-11-12 14:56:22 +01:00

61 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: "Common",
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"
}
export default card