mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
82 lines
1.8 KiB
TypeScript
82 lines
1.8 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Team Rocket'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Dark Gloom",
|
||
fr: "Ortide obscur",
|
||
de: "Dunkles Duflor"
|
||
},
|
||
|
||
illustrator: "Kagemaru Himeno",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
dexId: [
|
||
44,
|
||
],
|
||
|
||
hp: 50,
|
||
|
||
types: [
|
||
"Grass",
|
||
],
|
||
|
||
evolveFrom: {
|
||
en: "Oddish",
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
abilities: [
|
||
{
|
||
type: "Pokemon Power",
|
||
name: {
|
||
en: "Pollen Stench",
|
||
fr: "Pollen puant",
|
||
de: "Pollengestank"
|
||
},
|
||
effect: {
|
||
en: "Once during your turn (before your attack), you may flip a coin. If heads, the Defending Pokémon is now Confused; if tails, your Active Pokémon is now Confused. This power can't be used if Dark Gloom is Asleep, Confused, or Paralyzed.",
|
||
fr: "Une fois pendant votre tour (avant votre attaque), vous pouvez lancer une pièce. Si c'est face, le Pokémon Défenseur est maintenant Confus ; si c'est pile, votre Pokémon Actif est maintenant Confus. Ce pouvoir ne peut être utilisé si Ortide obscur est Endormi, Confus ou Paralysé.",
|
||
de: "Einmal während deines Zuges (vor deinem Angriff) darfst du eine Münze werfen. Bei 'Kopf' ist das verteidigende Pokémon jetzt verwirrt. Diese Fähigkeit kann nicht gespielt werden, falls Dunkles Duflor schläft, verwirrt oder gelähmt ist."
|
||
},
|
||
},
|
||
],
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Grass",
|
||
"Grass",
|
||
],
|
||
name: {
|
||
en: "Poisonpowder",
|
||
fr: "Poudre toxik",
|
||
de: "Giftpuder"
|
||
},
|
||
effect: {
|
||
en: "The Defending Pokémon is now Poisoned.",
|
||
fr: "Le Pokémon Défenseur est maintenant Empoisonné.",
|
||
de: "Das vertdidigende Pokémon ist jetzt vergiftet."
|
||
},
|
||
damage: 10,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
description: {
|
||
fr: "Son pollen sent si fort qu'il s'étourdit parfois lui-même."
|
||
}
|
||
}
|
||
|
||
export default card
|