1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-04 08:32:10 +00:00
Florian Bouillon 3c93a3534c
Some checks failed
Build / build (push) Failing after 59s
feat: Add Scarlet & violet three first sets (#446)
2023-11-12 14:56:22 +01:00

50 lines
1.3 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Paldea Evolved"
const card: Card = {
set: Set,
name: {
fr: "Minisange",
en: "Rookidee",
es: "Rookidee",
it: "Rookidee",
pt: "Rookidee",
de: "Meikro"
},
rarity: "Illustration rare",
category: "Pokemon",
hp: 60,
types: ["Colorless"],
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
fr: "Renvoyer",
en: "Send Back",
es: "Retornar",
it: "Mandaindietro",
pt: "Mandar Embora",
de: "Zurückschicken"
},
effect: {
fr: "Envoyez le Pokémon Actif de l'adversaire sur le Banc. (Votre adversaire choisit le nouveau Pokémon Actif.)",
en: "Switch out your opponent's Active Pokémon to the Bench. (Your opponent chooses the new Active Pokémon.)",
es: "Mueve el Pokémon Activo de tu rival a la Banca. (Tu rival elige el nuevo Pokémon Activo).",
it: "Sposta il Pokémon attivo del tuo avversario nella sua panchina. Il tuo avversario sceglie il nuovo Pokémon attivo.",
pt: "Mande o Pokémon Ativo do seu oponente para o Banco. (O seu oponente escolhe o novo Pokémon Ativo.)",
de: "Wechsle das Aktive Pokémon deines Gegners auf seine Bank aus. (Dein Gegner wählt das neue Aktive Pokémon.)"
},
damage: 10
}],
retreat: 1,
regulationMark: "G"
}
export default card