mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 17:09:19 +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:
63
data/Scarlet & Violet/Paldea Evolved/096.ts
Normal file
63
data/Scarlet & Violet/Paldea Evolved/096.ts
Normal file
@ -0,0 +1,63 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldea Evolved"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
fr: "Trépassable",
|
||||
en: "Palossand",
|
||||
es: "Palossand",
|
||||
it: "Palossand",
|
||||
pt: "Palossand",
|
||||
de: "Colossand"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 150,
|
||||
types: ["Psychic"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Psychic", "Colorless"],
|
||||
|
||||
name: {
|
||||
fr: "Tir Effrayant",
|
||||
en: "Spooky Shot",
|
||||
es: "Disparo Embrujado",
|
||||
it: "Colpomistero",
|
||||
pt: "Tiro Assustador",
|
||||
de: "Spukschuss"
|
||||
},
|
||||
|
||||
damage: 40
|
||||
}, {
|
||||
cost: ["Psychic", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
fr: "Puissance Tellurique",
|
||||
en: "Earthen Power",
|
||||
es: "Poder Terrestre",
|
||||
it: "Terrapotenza",
|
||||
pt: "Poder Terrestre",
|
||||
de: "Erdenkraft"
|
||||
},
|
||||
|
||||
effect: {
|
||||
fr: "Si vous avez un Stade en jeu, cette attaque inflige 80 dégâts supplémentaires.",
|
||||
en: "If you have a Stadium in play, this attack does 80 more damage.",
|
||||
es: "Si tienes un Estadio en juego, este ataque hace 80 puntos de daño más.",
|
||||
it: "Se hai in gioco una carta Stadio, questo attacco infligge 80 danni in più.",
|
||||
pt: "Se você tiver um Estádio em jogo, este ataque causará 80 pontos de dano a mais.",
|
||||
de: "Wenn du eine Stadionkarte im Spiel hast, fügt diese Attacke 80 Schadenspunkte mehr zu."
|
||||
},
|
||||
|
||||
damage: "80+"
|
||||
}],
|
||||
|
||||
retreat: 4,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user