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:
70
data/Scarlet & Violet/Paldea Evolved/064.ts
Normal file
70
data/Scarlet & Violet/Paldea Evolved/064.ts
Normal file
@ -0,0 +1,70 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldea Evolved"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
fr: "Raichu",
|
||||
en: "Raichu",
|
||||
es: "Raichu",
|
||||
it: "Raichu",
|
||||
pt: "Raichu",
|
||||
de: "Raichu"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 140,
|
||||
types: ["Lightning"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
fr: "Électrocharge",
|
||||
en: "Electrocharge",
|
||||
es: "Electrocarga",
|
||||
it: "Carica Voltaica",
|
||||
pt: "Eletrocarga",
|
||||
de: "Elektroladung"
|
||||
},
|
||||
|
||||
effect: {
|
||||
fr: "Cherchez dans votre deck jusqu'à 2 cartes Énergie Lightning de base, puis attachez-les à ce Pokémon. Mélangez ensuite votre deck.",
|
||||
en: "Search your deck for up to 2 Basic Lightning Energy cards and attach them to this Pokémon. Then, shuffle your deck.",
|
||||
es: "Busca en tu baraja hasta 2 cartas de Energía Lightning Básica y únelas a este Pokémon. Después, baraja las cartas de tu baraja.",
|
||||
it: "Cerca nel tuo mazzo fino a due carte Energia base Lightning e assegnale a questo Pokémon. Poi rimischia le carte del tuo mazzo.",
|
||||
pt: "Procure por até 2 cartas de Energia Lightning Básica no seu baralho e ligue-as a este Pokémon. Em seguida, embaralhe o seu baralho.",
|
||||
de: "Durchsuche dein Deck nach bis zu 2 Basis-Lightning-Energiekarten und lege sie an dieses Pokémon an. Mische anschließend dein Deck."
|
||||
}
|
||||
}, {
|
||||
cost: ["Lightning", "Lightning", "Colorless"],
|
||||
|
||||
name: {
|
||||
fr: "Tonnerre",
|
||||
en: "Thunderbolt",
|
||||
es: "Rayo",
|
||||
it: "Fulmine",
|
||||
pt: "Relâmpago",
|
||||
de: "Donnerblitz"
|
||||
},
|
||||
|
||||
effect: {
|
||||
fr: "Défaussez toutes les Énergies de ce Pokémon.",
|
||||
en: "Discard all Energy from this Pokémon.",
|
||||
es: "Descarta todas las Energías de este Pokémon.",
|
||||
it: "Scarta tutte le Energie da questo Pokémon.",
|
||||
pt: "Descarte todas as Energias deste Pokémon.",
|
||||
de: "Lege alle Energien von diesem Pokémon auf deinen Ablagestapel."
|
||||
},
|
||||
|
||||
damage: 200
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user