mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 16:39: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/085.ts
Normal file
61
data/Scarlet & Violet/Paldea Evolved/085.ts
Normal file
@ -0,0 +1,61 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Paldea Evolved"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
fr: "Ramoloss",
|
||||
en: "Slowpoke",
|
||||
es: "Slowpoke",
|
||||
it: "Slowpoke",
|
||||
pt: "Slowpoke",
|
||||
de: "Flegmon"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Psychic"],
|
||||
|
||||
name: {
|
||||
fr: "Pêche à la Queue",
|
||||
en: "Tail-Fishing",
|
||||
es: "Cola Cebo",
|
||||
it: "Codapesca",
|
||||
pt: "Pesca de Cauda",
|
||||
de: "Schweifangeln"
|
||||
},
|
||||
|
||||
effect: {
|
||||
fr: "Lancez une pièce. Si c'est face, cherchez dans votre deck une carte et ajoutez-la à votre main. Mélangez ensuite votre deck. Si c'est pile, défaussez une carte de votre main.",
|
||||
en: "Flip a coin. If heads, search your deck for a card and put it into your hand. Then, shuffle your deck. If tails, discard a card from your hand.",
|
||||
es: "Lanza 1 moneda. Si sale cara, busca en tu baraja 1 carta y ponla en tu mano. Después, baraja las cartas de tu baraja. Si sale cruz, descarta 1 carta de tu mano.",
|
||||
it: "Lancia una moneta. Se esce testa, cerca nel tuo mazzo una carta e aggiungila a quelle che hai in mano. Poi rimischia le carte del tuo mazzo. Se esce croce, scarta una carta che hai in mano.",
|
||||
pt: "Jogue uma moeda. Se sair cara, procure por uma carta no seu baralho e coloque-a na sua mão. Em seguida, embaralhe o seu baralho. Se sair coroa, descarte uma carta da sua mão.",
|
||||
de: "Wirf 1 Münze. Durchsuche bei Kopf dein Deck nach 1 Karte und nimm sie auf deine Hand. Mische anschließend dein Deck. Lege bei Zahl 1 Karte aus deiner Hand auf deinen Ablagestapel."
|
||||
}
|
||||
}, {
|
||||
cost: ["Psychic", "Psychic"],
|
||||
|
||||
name: {
|
||||
fr: "Psykoud'Boul",
|
||||
en: "Zen Headbutt",
|
||||
es: "Cabezazo Zen",
|
||||
it: "Cozzata Zen",
|
||||
pt: "Cabeçada Zen",
|
||||
de: "Zen-Kopfstoß"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user