1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 10:52:10 +00:00
2024-12-19 11:52:36 +01:00

55 lines
933 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../Dragon Frontiers'
const card: Card = {
name: {
en: "Snorlax δ",
fr: "Ronflex δ",
de: "Relaxo"
},
illustrator: "Masakazu Fukuda",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
143,
],
hp: 80,
types: [
"Grass",
],
stage: "Basic",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Bedhead",
fr: "Tête de lit",
de: "Schlafmütze"
},
effect: {
en: "As long as Snorlax remains Asleep between turns, put 2 damage counters on 1 of the Defending Pokémon.",
fr: "Tant que Ronflex est Endormi entre deux tours, placez 2 marqueurs de dégât sur 1 des Pokémon Défenseurs.",
de: "Wenn Relaxo schläft und zwischen zwei Zügen nicht aufwacht, lege 2 Schadensmarken auf 1 Verteidigendes Pokémon."
},
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
}
export default card