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

51
data-asia/SV/SV6a/036.ts Normal file
View File

@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../SV6a"
const card: Card = {
set: Set,
name: {
'zh-tw': "夠讚狗ex"
},
illustrator: "takuyoa",
category: "Pokemon",
hp: 250,
types: ["Darkness"],
stage: "Basic",
suffix: "EX",
attacks: [{
name: {
'zh-tw': "猛毒筋力"
},
effect: {
'zh-tw': "從自己的牌庫選擇最多2張「基本【惡】能量」卡附於這隻寶可夢身上。並且重洗牌庫。附上卡的情況下將這隻寶可夢【中毒】。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "瘋狂連鎖"
},
effect: {
'zh-tw': "若這隻寶可夢【中毒】則增加130點傷害。"
},
damage: "130+",
cost: ["Darkness", "Darkness", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
regulationMark: "H",
rarity: "Double rare"
}
export default card