1
0
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

This commit is contained in:
2023-11-12 14:56:22 +01:00
committed by GitHub
parent e0e3a1a4fd
commit 3c93a3534c
988 changed files with 56362 additions and 22 deletions

View File

@ -0,0 +1,61 @@
import { Card } from "../../../interfaces"
import Set from "../151"
const card: Card = {
set: Set,
name: {
fr: "Roucool",
en: "Pidgey",
es: "Pidgey",
it: "Pidgey",
pt: "Pidgey",
de: "Taubsi"
},
rarity: "Common",
category: "Pokemon",
hp: 50,
types: ["Colorless"],
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
fr: "Appel à la Famille",
en: "Call for Family",
es: "Llamar a la Familia",
it: "Cerca Famiglia",
pt: "Chamar a Família",
de: "Familienruf"
},
effect: {
fr: "Cherchez dans votre deck jusqu'à 2 Pokémon de base, puis placez-les sur votre Banc. Mélangez ensuite votre deck.",
en: "Search your deck for up to 2 Basic Pokémon and put them onto your Bench. Then, shuffle your deck.",
es: "Busca en tu baraja hasta 2 Pokémon Básicos y ponlos en tu Banca. Después, baraja las cartas de tu baraja.",
it: "Cerca nel tuo mazzo fino a due Pokémon Base e mettili nella tua panchina. Poi rimischia le carte del tuo mazzo.",
pt: "Procure por até 2 Pokémon Básicos no seu baralho e coloque-os no seu Banco. Em seguida, embaralhe o seu baralho.",
de: "Durchsuche dein Deck nach bis zu 2 Basis-Pokémon und lege sie auf deine Bank. Mische anschließend dein Deck."
}
}, {
cost: ["Colorless", "Colorless"],
name: {
fr: "Charge",
en: "Tackle",
es: "Placaje",
it: "Azione",
pt: "Investida",
de: "Tackle"
},
damage: 20
}],
retreat: 1,
regulationMark: "G"
}
export default card