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

56
data-asia/S/S12/076.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../S12"
const card: Card = {
set: Set,
name: {
'zh-tw': "雷吉鐸拉戈V",
th: "เรจิดราโกV",
ja: "レジドラゴV"
},
illustrator: "N-DESIGN Inc.",
category: "Pokemon",
hp: 220,
types: ["Dragon"],
stage: "Basic",
suffix: "V",
attacks: [{
name: {
'zh-tw': "天之吶喊",
th: "เสียงตะโกนแห่งสวรรค์",
ja: "てんのさけび"
},
effect: {
'zh-tw': "將自己的牌庫上方3張卡丟棄將其中的能量卡全部附於這隻寶可夢身上。",
th: "ทิ้งการ์ด 3 ใบจากด้านบนของสำรับการ์ดฝ่ายเราที่ตำแหน่งทิ้งการ์ด นำการ์ดพลังงานทั้งหมดที่อยู่ในนั้น ติดที่โปเกมอนนี้",
ja: "自分の山札を上から3枚トラッシュし、その中にあるエネルギーをすべて、このポケモンにつける。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "龍之鐳射",
th: "ดรากอนเลเซอร์",
ja: "ドラゴンレーザー"
},
effect: {
'zh-tw': "對手的1隻備戰寶可夢也受到30點傷害。[在備戰區不計算弱點・抵抗力。]",
th: "โปเกมอนบนเบนช์ฝ่ายตรงข้าม 1 ตัว ก็จะได้รับแดเมจ 30 ด้วย {โปเกมอนบนเบนช์จะไม่นำจุดอ่อนและความต้านทานมาคิด}",
ja: "相手のベンチポケモン1匹にも、30ダメージ。ベンチは弱点・抵抗力を計算しない。"
},
damage: 130,
cost: ["Grass", "Grass", "Fire"]
}],
retreat: 3,
regulationMark: "F",
rarity: "Double rare"
}
export default card