1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-08 11:09: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 "../Scarlet & Violet"
const card: Card = {
set: Set,
name: {
en: "Drowzee",
fr: "Soporifik",
es: "Drowzee",
it: "Drowzee",
pt: "Drowzee",
de: "Traumato"
},
rarity: "Common",
category: "Pokemon",
hp: 70,
types: ["Psychic"],
stage: "Basic",
attacks: [{
cost: ["Psychic"],
name: {
en: "Forced Sleep",
fr: "Sommeil Forcé",
es: "Sueño Obligado",
it: "Sonno Forzato",
pt: "Dormir à Força",
de: "Ungewollter Schlummer"
},
effect: {
en: "Your opponent chooses 1 of their Benched Pokémon and switches it with their Active Pokémon. The new Active Pokémon is now Asleep.",
fr: "Votre adversaire choisit l'un de ses Pokémon de Banc et l'échange contre son Pokémon Actif. Le nouveau Pokémon Actif est maintenant Endormi.",
es: "Tu rival elige 1 de sus Pokémon en Banca y lo cambia por su Pokémon Activo. El nuevo Pokémon Activo pasa a estar Dormido.",
it: "Il tuo avversario sceglie uno dei suoi Pokémon in panchina e lo scambia con il suo Pokémon attivo. Il nuovo Pokémon attivo viene addormentato.",
pt: "Seu oponente escolhe 1 dos Pokémon no Banco dele e troca-o pelo Pokémon Ativo dele. O novo Pokémon Ativo agora está Adormecido.",
de: "Dein Gegner wählt 1 Pokémon auf seiner Bank und tauscht es gegen sein Aktives Pokémon aus. Das neue Aktive Pokémon schläft jetzt."
}
}, {
cost: ["Psychic", "Colorless", "Colorless"],
name: {
en: "Gentle Slap",
fr: "Gifle Douce",
es: "Bofetada Gentil",
it: "Schiaffetto",
pt: "Tapinha",
de: "Sanfter Hieb"
},
damage: 30
}],
retreat: 1,
regulationMark: "G"
}
export default card