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

49 lines
986 B
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 "../SV6a"
const card: Card = {
set: Set,
name: {
'zh-tw': "桃歹郎ex"
},
illustrator: "aky CG Works",
category: "Pokemon",
hp: 190,
types: ["Darkness"],
stage: "Basic",
suffix: "EX",
attacks: [{
name: {
'zh-tw': "[特性]支配鎖鏈"
},
effect: {
'zh-tw': "在自己的回合時可使用1次。選擇1隻自己的備戰區的【惡】寶可夢「桃歹郎ex」除外與戰鬥寶可夢互換。然後將新的戰鬥寶可夢【中毒】。在這個回合若已經使出了其他的「支配鎖鏈」則這個特性無法使用。"
}
}, {
name: {
'zh-tw': "煩煩爆炸"
},
effect: {
'zh-tw': "造成對手已經獲得的獎賞卡的張數×60點傷害。"
},
damage: "60×",
cost: ["Darkness", "Darkness"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "H",
rarity: "Double rare"
}
export default card