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

48 lines
948 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: "takuyoa",
category: "Pokemon",
hp: 210,
types: ["Darkness"],
stage: "Basic",
suffix: "EX",
attacks: [{
name: {
'zh-tw': "[特性]扭轉乾坤"
},
effect: {
'zh-tw': "在上個對手的回合若自己的寶可夢【昏厥】了則在自己的回合時可使用1次。從自己的牌庫抽出3張卡。在這個回合若已經使出了其他的「扭轉乾坤」則這個特性無法使用。"
}
}, {
name: {
'zh-tw': "殘酷箭"
},
effect: {
'zh-tw': "對手的1隻寶可夢受到100點傷害。[在備戰區不計算弱點・抵抗力。]"
},
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "H",
rarity: "Double rare"
}
export default card