1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

65 lines
698 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Mysterious Treasures'
const card: Card = {
name: {
en: "Snorunt",
},
illustrator: "Kagemaru Himeno",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
361,
],
hp: 50,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Collect",
},
effect: {
en: "Draw a card.",
},
},
{
cost: [
"Water",
],
name: {
en: "Snowball",
},
effect: {
en: "Flip a coin. If tails, this attack does nothing.",
},
damage: 20,
},
],
weaknesses: [
{
type: "Metal",
value: "+10"
},
],
}
export default card