1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +00:00

feat(asian): Updated SV6 and added SV6a & SV6s (#502)

This commit is contained in:
2024-10-10 00:44:36 +02:00
committed by GitHub
parent 4f2c27937a
commit 1d14078dd8
365 changed files with 13098 additions and 481 deletions

48
data-asia/SV/SV6a/038.ts Normal file
View File

@ -0,0 +1,48 @@
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