1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-21 07:39:54 +00:00
Florian Bouillon 6d133f5343
Some checks failed
Build Docker image / build (push) Failing after 42s
feat: Add missing german sets (HGSS & COL) (#451)
2023-12-06 01:20:07 +01:00

80 lines
1.4 KiB
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 '../Call of Legends'
const card: Card = {
name: {
en: "Snorlax",
fr: "Ronflex",
de: "Relaxo"
},
illustrator: "Kent Kanetsuna",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
143,
],
hp: 100,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Layabout",
fr: "Traîne-savates",
de: "Faulenzer"
},
effect: {
en: "Remove all damage counters from Snorlax. Snorlax can't use Layabout during your next turn.",
fr: "Retirez tous ses marqueurs de dégâts à Ronflex. Ronflex ne peut pas utiliser Traîne-savates pendant votre prochain tour.",
de: "Entferne alle Schadensmarken von Relaxo. Relaxo kann Faulenzer in deinem nächsten Zug nicht einsetzten."
},
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Clomp Clomp Clobber",
fr: "Barda abasourdissant",
de: "Rumpeldipumpel"
},
effect: {
en: "Put 1 Energy card attached to Snorlax in the Lost Zone.",
fr: "Placez 1 carte Énergie attachée à Ronflex dans la Zone Perdue.",
de: "Entferne 1 Energiekarte, die an Relaxo angelegt ist, und lege sie ins Nirgendwo."
},
damage: 80,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
retreat: 4,
}
export default card