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

50 lines
748 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 "../SCD"
const card: Card = {
set: Set,
name: {
'zh-tw': "天蠍王"
},
illustrator: "SATOSHI NAKAI",
category: "Pokemon",
hp: 110,
types: ["Fighting"],
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "切落"
},
effect: {
'zh-tw': "選擇1個對手的戰鬥寶可夢身上附加的能量將其丟棄。"
},
damage: 30,
cost: ["Fighting", "Colorless"]
}, {
name: {
'zh-tw': "毒液一擊"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【中毒】。"
},
damage: 100,
cost: ["Fighting", "Fighting", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 1,
regulationMark: "E"
}
export default card