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

75 lines
2.1 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 "../SV3a"
const card: Card = {
set: Set,
name: {
ja: "イベルタル",
'zh-tw': "伊裴爾塔爾",
th: "อีเวลทอล"
},
illustrator: "Masako Tomii",
category: "Pokemon",
dexId: [717],
hp: 130,
types: ["Darkness"],
description: {
ja: "寿命が つきるとき あらゆる 生き物の 命を 吸いつくし 繭の 姿に 戻るという。",
'zh-tw': "據說當生命走到盡頭時, 會吸光所有生物的生命, 回到繭的狀態。",
th: "เวลาที่หมดอายุขัยจะดูดชีวิตของสิ่งมีชีวิตต่าง ๆ แล้วกลับไปอยู่ในสภาพดักแด้"
},
stage: "Basic",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
ja: "ふりおろす",
'zh-tw': "揮擊",
th: "ฟาด"
},
damage: "30+",
effect: {
ja: "相手のバトルポケモンが進化ポケモンなら、60ダメージ追加。",
'zh-tw': "若對手的戰鬥寶可夢為進化寶可夢則增加60點傷害。",
th: "ถ้าโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นโปเกมอนวิวัฒนาการ การโจมตีนี้จะเพิ่มแดเมจอีก 60"
}
}, {
cost: ["Darkness", "Darkness", "Colorless"],
name: {
ja: "ダークエッジ",
'zh-tw': "暗黑刀鋒",
th: "ดาร์กเอดจ์"
},
damage: 120,
effect: {
ja: "このポケモンについているエネルギーを1個選び、トラッシュする。",
'zh-tw': "選擇1個這隻寶可夢身上附加的能量將其丟棄。",
th: "เลือกพลังงานที่ติดอยู่กับโปเกมอนนี้ 1 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด"
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2,
regulationMark: "G"
}
export default card