1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

52 lines
743 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SCC"
const card: Card = {
set: Set,
name: {
'zh-tw': "沙丘娃"
},
illustrator: "KIYOTAKA OSHIYAMA",
category: "Pokemon",
hp: 80,
types: ["Psychic"],
description: {
'zh-tw': "玩沙時堆成的沙山如果沒有在回家時破壞掉,就有可能被靈魂附上而變成沙丘娃。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "震動"
},
damage: 10,
cost: ["Psychic"]
}, {
name: {
'zh-tw': "陰森射擊"
},
damage: 30,
cost: ["Psychic", "Psychic"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 3,
regulationMark: "E"
}
export default card