mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 16:19:18 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
82
data-asia/SV/SV2D/013.ts
Normal file
82
data-asia/SV/SV2D/013.ts
Normal file
@ -0,0 +1,82 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV2D"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "ファイアロー",
|
||||
'zh-tw': "烈箭鷹",
|
||||
th: "ไฟร์แอโรว์",
|
||||
id: "Talonflame"
|
||||
},
|
||||
|
||||
illustrator: "Nisota Niso",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
dexId: [663],
|
||||
hp: 150,
|
||||
types: ["Fire"],
|
||||
|
||||
description: {
|
||||
ja: "飛翔力は トップクラス。 100キロ以上の 獲物を 掴んだまま 楽々 飛びまわる。",
|
||||
'zh-tw': "飛行能力數一數二。能夠攫著100公斤以上的 獵物輕輕鬆鬆地飛來飛去。",
|
||||
th: "พละกำลังในการบินระดับแนวหน้า แม้จะจับเหยื่อหนักกว่า 100 กิโลกรัมอยู่ ก็ยังบินไปมาได้สบาย ๆ",
|
||||
id: "Kekuatan terbang Talonflame menduduki tingkat atas. Pokémon ini terbang berkeliling sambil membawa mangsa seberat 100 kg lebih dengan mudahnya."
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fire"],
|
||||
|
||||
name: {
|
||||
ja: "わしづかみ",
|
||||
'zh-tw': "緊抓",
|
||||
th: "โฉบเหยื่อ",
|
||||
id: "Mencengkeram"
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
|
||||
effect: {
|
||||
ja: "次の相手の番、このワザを受けたポケモンは、にげられない。",
|
||||
'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。",
|
||||
th: "เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนที่ได้รับท่าต่อสู้นี้ จะหนีไม่ได้",
|
||||
id: "Pada giliran lawan berikutnya, Pokémon yang menerima serangan ini tidak dapat Mundur."
|
||||
}
|
||||
}, {
|
||||
cost: ["Fire"],
|
||||
|
||||
name: {
|
||||
ja: "れっかのかぜ",
|
||||
'zh-tw': "烈火之風",
|
||||
th: "สายลมแห่งไฟลุกโชน",
|
||||
id: "Angin Api Berkobar"
|
||||
},
|
||||
|
||||
damage: "70+",
|
||||
|
||||
effect: {
|
||||
ja: "このポケモンにダメカンがのっているなら、90ダメージ追加。",
|
||||
'zh-tw': "若這隻寶可夢身上放置有傷害指示物,則增加90點傷害。",
|
||||
th: "ถ้าโปเกมอนนี้มีตัวนับแดเมจวางอยู่ การโจมตีนี้จะเพิ่มแดเมจอีก 90",
|
||||
id: "Jika Pokémon ini memiliki Token Kerusakan, kerusakan yang diberikan bertambah sejumlah 90."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Fighting",
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user