1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-03 08:02:10 +00:00
Florian Bouillon d4be6fa84f
fix: Add Diamond & Pearl French translations (#179)
* fix: Add the two first sets

Signed-off-by: Avior <github@avior.me>

* fix: Add DP, DP Black Star and Mysterious Treasures

Signed-off-by: Avior <github@avior.me>
2021-11-22 18:11:03 +00:00

78 lines
1.2 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,
description: {
fr: "L'odeur du nectar de sa bouche est si répugnante qu'elle agresse les narines à deux kilomètres."
}
}
export default card