1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

76
data-asia/SV/SV3a/039.ts Normal file
View File

@ -0,0 +1,76 @@
import { Card } from "../../../interfaces"
import Set from "../SV3a"
const card: Card = {
set: Set,
name: {
ja: "イベルタル",
'zh-tw': "伊裴爾塔爾",
th: "อีเวลทอล"
},
illustrator: "kawayoo",
rarity: "Rare",
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