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:
61
data/Scarlet & Violet/Paldea Evolved/228.ts
Normal file
61
data/Scarlet & Violet/Paldea Evolved/228.ts
Normal file
@ -0,0 +1,61 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldea Evolved"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
fr: "Farigiraf",
|
||||
en: "Farigiraf",
|
||||
es: "Farigiraf",
|
||||
it: "Farigiraf",
|
||||
pt: "Farigiraf",
|
||||
de: "Farigiraf"
|
||||
},
|
||||
|
||||
rarity: "Illustration rare",
|
||||
category: "Pokemon",
|
||||
hp: 140,
|
||||
types: ["Colorless"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
fr: "Soit l'Un Soit l'Autre",
|
||||
en: "Either Face",
|
||||
es: "Dos Caras",
|
||||
it: "Sceglifaccia",
|
||||
pt: "Qualquer Face",
|
||||
de: "Gesichtswahl"
|
||||
},
|
||||
|
||||
effect: {
|
||||
fr: "Choisissez un joueur. Ce joueur-là mélange sa main avec son deck et pioche 4 cartes.",
|
||||
en: "Choose a player. That player shuffles their hand into their deck and draws 4 cards.",
|
||||
es: "Elige un jugador. Ese jugador pone las cartas de su mano en su baraja, las baraja todas y roba 4 cartas.",
|
||||
it: "Scegli un giocatore. Quel giocatore rimischia le carte che ha in mano nel proprio mazzo e pesca quattro carte.",
|
||||
pt: "Escolha um jogador. Aquele jogador embaralha a mão dele no baralho dele e compra 4 cartas.",
|
||||
de: "Wähle 1 Spieler. Jener Spieler mischt seine Handkarten in sein Deck und zieht 4 Karten."
|
||||
}
|
||||
}, {
|
||||
cost: ["Colorless", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
fr: "Puissant Rayon",
|
||||
en: "Power Beam",
|
||||
es: "Rayo de Luz Poderoso",
|
||||
it: "Raggiopotenza",
|
||||
pt: "Raio de Poder",
|
||||
de: "Power-Strahl"
|
||||
},
|
||||
|
||||
damage: 130
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user