1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-29 06:12:10 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

61 lines
653 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Mysterious Treasures'
const card: Card = {
name: {
en: "Dunsparce",
},
illustrator: "Midori Harada",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
206,
],
hp: 60,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
name: {
en: "Snake Hook",
},
effect: {
en: "Draw a card.",
},
},
{
name: {
en: "Bite and Run",
},
effect: {
en: "Switch Dunsparce with 1 of your Benched Pokémon.",
},
damage: 10,
},
],
weaknesses: [
{
type: "Fighting",
value: "+10"
},
],
}
export default card