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

55 lines
820 B
TypeScript
Raw 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 "../SC2D"
const card: Card = {
set: Set,
name: {
'zh-tw': "好壞星"
},
illustrator: "Tomokazu Komiya",
category: "Pokemon",
hp: 70,
types: ["Water"],
description: {
'zh-tw': "要是被牠的毒刺給刺中,首先會發麻,接著會奇癢無比,讓人恨不得把皮都給抓爛。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "再生"
},
effect: {
'zh-tw': "將這隻寶可夢恢復「30」HP。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "毒之觸手"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【中毒】。"
},
damage: 20,
cost: ["Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card