mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 17: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:
70
data/Scarlet & Violet/151/039.ts
Normal file
70
data/Scarlet & Violet/151/039.ts
Normal file
@ -0,0 +1,70 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../151"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
fr: "Rondoudou",
|
||||
en: "Jigglypuff",
|
||||
es: "Jigglypuff",
|
||||
it: "Jigglypuff",
|
||||
pt: "Jigglypuff",
|
||||
de: "Pummeluff"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Colorless"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
fr: "Mentor",
|
||||
en: "Lead",
|
||||
es: "Liderazgo",
|
||||
it: "Guidare",
|
||||
pt: "Liderar",
|
||||
de: "Führen"
|
||||
},
|
||||
|
||||
effect: {
|
||||
fr: "Cherchez dans votre deck une carte Supporter, montrez-la, puis ajoutez-la à votre main. Mélangez ensuite votre deck.",
|
||||
en: "Search your deck for a Supporter card, reveal it, and put it into your hand. Then, shuffle your deck.",
|
||||
es: "Busca en tu baraja 1 carta de Partidario, enséñala y ponla en tu mano. Después, baraja las cartas de tu baraja.",
|
||||
it: "Cerca nel tuo mazzo una carta Aiuto, mostrala e aggiungila alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.",
|
||||
pt: "Procure por uma carta de Apoiador no seu baralho, revele-a e coloque-a na sua mão. Em seguida, embaralhe o seu baralho.",
|
||||
de: "Durchsuche dein Deck nach 1 Unterstützerkarte, zeige sie deinem Gegner und nimm sie auf deine Hand. Mische anschließend dein Deck."
|
||||
}
|
||||
}, {
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
fr: "Pied-Piétine",
|
||||
en: "Stompy Stomp",
|
||||
es: "Pisotonazo",
|
||||
it: "Pesto Ripesto",
|
||||
pt: "Pisada",
|
||||
de: "Hopphopphurra"
|
||||
},
|
||||
|
||||
effect: {
|
||||
fr: "Lancez 2 pièces. Cette attaque inflige 20 dégâts pour chaque côté face.",
|
||||
en: "Flip 2 coins. This attack does 20 damage for each heads.",
|
||||
es: "Lanza 2 monedas. Este ataque hace 20 puntos de daño por cada cara.",
|
||||
it: "Lancia due volte una moneta. Questo attacco infligge 20 danni ogni volta che esce testa.",
|
||||
pt: "Jogue 2 moedas. Este ataque causa 20 pontos de dano para cada cara.",
|
||||
de: "Wirf 2 Münzen. Diese Attacke fügt 20 Schadenspunkte pro Kopf zu."
|
||||
},
|
||||
|
||||
damage: "20×"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user