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

65
data-asia/S/S12/077.ts Normal file
View File

@ -0,0 +1,65 @@
import { Card } from "../../../interfaces"
import Set from "../S12"
const card: Card = {
set: Set,
name: {
'zh-tw': "雷吉鐸拉戈VSTAR",
th: "เรจิดราโกVSTAR",
ja: "レジドラゴVSTAR"
},
illustrator: "PLANETA Yamashita",
category: "Pokemon",
hp: 280,
types: ["Dragon"],
stage: "VMAX",
abilities: [{
type: "Ability",
name: {
'zh-tw': "古舊星星",
th: "เลกาซีสตาร์"
},
effect: {
'zh-tw': "在自己的回合時可使用。將自己的牌庫上方7張卡丟棄。然後從自己的棄牌區任意選擇最多2張卡在給對手看過後加入手牌。[對戰中己方只可使用1次【VSTAR】力量。]",
th: "ใช้ได้ในเทิร์นฝ่ายเรา ทิ้งการ์ด 7 ใบจากด้านบนของสำรับการ์ดฝ่ายเราที่ตำแหน่งทิ้งการ์ด หลังจากนั้น เลือกการ์ดที่ชอบได้สูงสุด 2 ใบจากตำแหน่งทิ้งการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู แล้วนำขึ้นมือ {ในระหว่างการแบตเทิล ฝ่ายเราใช้พลัง【VSTAR】ได้ 1 ครั้งเท่านั้น}"
}
}],
attacks: [{
name: {
'zh-tw': "龍無雙",
th: "มังกรไร้คู่ปรับ",
ja: "りゅうむそう"
},
effect: {
'zh-tw': "選擇自己的棄牌區的【龍】寶可夢持有的1個招式作為這個招式使用。",
th: "เลือกท่าต่อสู้ที่โปเกมอน[มังกร]บนตำแหน่งทิ้งการ์ดฝ่ายเรามี 1 ท่า ใช้เป็นท่าต่อสู้นี้ได้",
ja: "自分のトラッシュにあるポケモンが持っているワザを1つ選び、このワザとして使う。"
},
cost: ["Grass", "Grass", "Fire"]
}, {
name: {
ja: "特性"
}
}, {
name: {
ja: "レガシースター"
},
effect: {
ja: "自分の番に使える。自分の山札を上から7枚トラッシュする。その後、自分のトラッシュから好きなカードを2枚まで選び、相手に見せて、手札に加える。対戦中、自分はVSTARパワーを1回しか使えない。"
}
}],
retreat: 3,
regulationMark: "F"
}
export default card