1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 09:47:51 +00:00
Florian Bouillon 9138eedb16
Add swsh variants (#42)
* Updated Kalos Starter Set data

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed XY set

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed some more XY sets

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Added the rest of the SWSH variants

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-02 12:34:21 +00:00

106 lines
2.3 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Sword & Shield'
const card: Card = {
name: {
en: "Roserade",
fr: "Roserade",
es: "Roserade",
it: "Roserade",
pt: "Roserade",
de: "Roserade"
},
illustrator: "chibi",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
407,
],
hp: 120,
types: [
"Grass",
],
evolveFrom: {
en: "Roselia",
fr: "Rosélia",
},
stage: "Stage1",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Paralyze Poison",
fr: "Poison Paralysant",
es: "Veneno Paralizante",
it: "Veleno Paralizzante",
pt: "Veneno Paralisante",
de: "Lähmendes Gift"
},
effect: {
en: "Your opponents Active Pokémon is now Poisoned. Flip a coin. If heads, your opponents Active Pokémon is also Paralyzed.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné. Lancez une pièce. Si cest face, le Pokémon Actif de votre adversaire est également Paralysé.",
es: "El Pokémon Activo de tu rival pasa a estar Envenenado. Lanza 1 moneda. Si sale cara, el Pokémon Activo de tu rival pasa a estar también Paralizado.",
it: "Il Pokémon attivo del tuo avversario viene avvelenato. Lancia una moneta. Se esce testa, viene anche paralizzato.",
pt: "O Pokémon Ativo do seu oponente agora está Envenenado. Jogue 1 moeda. Se sair cara, o Pokémon Ativo do seu oponente também ficará Paralisado.",
de: "Das Aktive Pokémon deines Gegners ist jetzt vergiftet. Wirf 1 Münze. Bei Kopf ist das Aktive Pokémon deines Gegners auch paralysiert."
},
damage: 30,
},
{
cost: [
"Grass",
"Colorless",
"Colorless",
],
name: {
en: "Mega Drain",
fr: "Méga-Sangsue",
es: "Megaagotar",
it: "Megassorbimento",
pt: "Megadreno",
de: "Megasauger"
},
effect: {
en: "Heal 30 damage from this Pokémon.",
fr: "Soignez 30 dégâts de ce Pokémon.",
es: "Cura 30 puntos de daño a este Pokémon.",
it: "Cura questo Pokémon da 30 danni.",
pt: "Cure 30 pontos de dano deste Pokémon.",
de: "Heile 30 Schadenspunkte bei diesem Pokémon."
},
damage: 90,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 1,
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card