1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00

72 lines
1.0 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Legends Awakened'
const card: Card = {
name: {
en: "Gloom",
fr: "Ortide",
},
illustrator: "Ken Sugimori",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
44,
],
hp: 80,
types: [
"Psychic",
],
evolveFrom: {
en: "Oddish",
fr: "Myrapla",
},
stage: "Stage1",
attacks: [
{
name: {
en: "Space Out",
fr: "Sonné",
},
effect: {
en: "Remove 2 damage counters from Gloom. Gloom is now Asleep.",
fr: "Retirez à Ortide 2 marqueurs de dégât. Ortide est maintenant Endormi.",
},
},
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Stinky Nectar",
fr: "Nectar puant",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Confused and Poisoned.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Confus et Empoisonné.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Psychic",
value: "+20"
},
],
retreat: 2,
}
export default card