mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 08:59:18 +00:00
feat: Add Scarlet & violet three first sets (#446)
Some checks failed
Build / build (push) Failing after 59s
Some checks failed
Build / build (push) Failing after 59s
This commit is contained in:
61
data/Scarlet & Violet/Paldea Evolved/121.ts
Normal file
61
data/Scarlet & Violet/Paldea Evolved/121.ts
Normal file
@ -0,0 +1,61 @@
|
||||
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
|
Reference in New Issue
Block a user