1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16:19: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

49
data-asia/SV/SV6a/039.ts Normal file
View File

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