mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-25 01:19:54 +00:00
32 lines
429 B
TypeScript
32 lines
429 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Genetic Apex"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Snorlax"
|
|
},
|
|
|
|
illustrator: "HYOGONOSUKE",
|
|
category: "Pokemon",
|
|
hp: 150,
|
|
types: ["Colorless"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless", "Colorless", "Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Rollout"
|
|
},
|
|
|
|
damage: "70"
|
|
}],
|
|
|
|
retreat: 4,
|
|
rarity: "One Star"
|
|
}
|
|
|
|
export default card
|