mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
51 lines
846 B
TypeScript
51 lines
846 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SI"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "多邊獸Z"
|
||
},
|
||
|
||
illustrator: "Tomokazu Komiya",
|
||
category: "Pokemon",
|
||
hp: 140,
|
||
types: ["Colorless"],
|
||
stage: "Stage2",
|
||
|
||
abilities: [{
|
||
type: "Ability",
|
||
|
||
name: {
|
||
'zh-tw': "漏洞傳輸"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "在自己的回合,每次從自己的手牌將能量附於這隻寶可夢身上時,都可使用1次。將對手的戰鬥寶可夢【混亂】。"
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
name: {
|
||
'zh-tw': "超級光束"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "選擇2個這隻寶可夢身上附加的能量,將其丟棄。"
|
||
},
|
||
|
||
damage: 170,
|
||
cost: ["Colorless", "Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2,
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card |