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:
61
data/Scarlet & Violet/151/035.ts
Normal file
61
data/Scarlet & Violet/151/035.ts
Normal file
@ -0,0 +1,61 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../151"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
fr: "Mélofée",
|
||||
en: "Clefairy",
|
||||
es: "Clefairy",
|
||||
it: "Clefairy",
|
||||
pt: "Clefairy",
|
||||
de: "Piepi"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Psychic"],
|
||||
|
||||
name: {
|
||||
fr: "Invitation Clair de Lune",
|
||||
en: "Moon-Viewing Invitation",
|
||||
es: "Invitación de Avistamiento Lunar",
|
||||
it: "Guarda Che Luna",
|
||||
pt: "Convite Lunar",
|
||||
de: "Mondschaueinladung"
|
||||
},
|
||||
|
||||
effect: {
|
||||
fr: "Cherchez dans votre deck jusqu'à 3 Mélofée, puis placez-les sur votre Banc. Mélangez ensuite votre deck.",
|
||||
en: "Search your deck for up to 3 Clefairy and put them onto your Bench. Then, shuffle your deck.",
|
||||
es: "Busca en tu baraja hasta 3 Clefairy y ponlos en tu Banca. Después, baraja las cartas de tu baraja.",
|
||||
it: "Cerca nel tuo mazzo fino a tre Clefairy e mettili nella tua panchina. Poi rimischia le carte del tuo mazzo.",
|
||||
pt: "Procure por até 3 Clefairy no seu baralho e coloque-os no seu Banco. Em seguida, embaralhe o seu baralho.",
|
||||
de: "Durchsuche dein Deck nach bis zu 3 Piepi und lege sie auf deine Bank. Mische anschließend dein Deck."
|
||||
}
|
||||
}, {
|
||||
cost: ["Psychic", "Colorless"],
|
||||
|
||||
name: {
|
||||
fr: "Claque",
|
||||
en: "Smack",
|
||||
es: "Palmetazo",
|
||||
it: "Schiaffo",
|
||||
pt: "Estalo",
|
||||
de: "Klatscher"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user