mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 01:19: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:
50
data/Scarlet & Violet/Paldea Evolved/069.ts
Normal file
50
data/Scarlet & Violet/Paldea Evolved/069.ts
Normal file
@ -0,0 +1,50 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldea Evolved"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
fr: "Lixy",
|
||||
en: "Shinx",
|
||||
es: "Shinx",
|
||||
it: "Shinx",
|
||||
pt: "Shinx",
|
||||
de: "Sheinux"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Lightning"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Lightning"],
|
||||
|
||||
name: {
|
||||
fr: "Coup Déchaîné",
|
||||
en: "Wild Kick",
|
||||
es: "Patada Salvaje",
|
||||
it: "Calcio Selvaggio",
|
||||
pt: "Chute sem Pontaria",
|
||||
de: "Stürmischer Kick"
|
||||
},
|
||||
|
||||
effect: {
|
||||
fr: "Lancez une pièce. Si c'est pile, cette attaque ne fait rien.",
|
||||
en: "Flip a coin. If tails, this attack does nothing.",
|
||||
es: "Lanza 1 moneda. Si sale cruz, este ataque no hace nada.",
|
||||
it: "Lancia una moneta. Se esce croce, questo attacco non ha effetto.",
|
||||
pt: "Jogue uma moeda. Se sair coroa, este ataque não fará nada.",
|
||||
de: "Wirf 1 Münze. Bei Zahl hat diese Attacke keine Auswirkungen."
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user