mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
48 lines
720 B
TypeScript
48 lines
720 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Crown Zenith"
|
|
|
|
const card: Card = {
|
|
dexId: [143],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Snorlax",
|
|
fr: "Ronflex",
|
|
es: "Snorlax",
|
|
it: "Snorlax",
|
|
pt: "Snorlax",
|
|
de: "Relaxo"
|
|
},
|
|
|
|
rarity: "Rare",
|
|
category: "Pokemon",
|
|
hp: 160,
|
|
types: ["Colorless"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless", "Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Heavy Impact",
|
|
fr: "Gros Impact",
|
|
es: "Impacto Pesado",
|
|
it: "Impatto Pesante",
|
|
pt: "Impacto Pesado",
|
|
de: "Schwerer Einschlag"
|
|
},
|
|
|
|
damage: 80
|
|
}],
|
|
|
|
retreat: 3,
|
|
regulationMark: "E",
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |