1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

64 lines
709 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Mysterious Treasures'
const card: Card = {
name: {
en: "Snover",
},
illustrator: "Ken Sugimori",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
459,
],
hp: 60,
types: [
"Grass",
],
stage: "Basic",
attacks: [
{
name: {
en: "Curiosity",
},
effect: {
en: "Look at your opponent's hand.",
},
},
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Snowball Fight",
},
effect: {
en: "Flip a coin. If tails, Snover does 10 damage to itself.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Fire",
value: "+10"
},
],
}
export default card