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

60
data-asia/SV/SV6a/035.ts Normal file
View File

@ -0,0 +1,60 @@
import { Card } from "../../../interfaces"
import Set from "../SV6a"
const card: Card = {
set: Set,
name: {
'zh-tw': "伊裴爾塔爾"
},
illustrator: "SIE NANAHARA",
category: "Pokemon",
hp: 120,
types: ["Darkness"],
description: {
'zh-tw': "傳說的寶可夢。據說當牠 展開的翅膀與尾羽閃耀紅色光芒時, 就會吸走生物的生命。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "侵蝕之風"
},
effect: {
'zh-tw': "在對手的身上放置有傷害指示物的所有寶可夢身上各放置2個傷害指示物。"
},
cost: ["Darkness"]
}, {
name: {
'zh-tw': "破壞光束"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則選擇1個對手的戰鬥寶可夢身上附加的能量將其丟棄。"
},
damage: 100,
cost: ["Darkness", "Darkness", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "H",
rarity: "Uncommon"
}
export default card