1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +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/SV/SV5a/044.ts Normal file
View File

@ -0,0 +1,65 @@
import { Card } from "../../../interfaces"
import Set from "../SV5a"
const card: Card = {
set: Set,
name: {
ja: "ダイノーズ",
'zh-tw': "大朝北鼻",
th: "ไดโนซ"
},
illustrator: "OKUBO",
rarity: "Uncommon",
category: "Pokemon",
dexId: [476],
hp: 140,
types: ["Fighting"],
description: {
ja: "強い 磁力を 放っているので 近くにある 電化製品は 使いものに ならなくなってしまう。",
'zh-tw': "因為會釋放強大的磁力, 導致附近的電器都變得 無法使用。",
th: "เนื่องจากมันแผ่พลังแม่เหล็กรุนแรงออกมา จึงทำให้เครื่องใช้ไฟฟ้าที่อยู่บริเวณใกล้เคียงใช้งานไม่ได้"
},
stage: "Stage1",
attacks: [{
cost: ["Colorless", "Colorless", "Colorless"],
name: {
ja: "アサルトレーザー",
'zh-tw': "進擊鐳射",
th: "แอสซอลต์เลเซอร์"
},
damage: "80+",
effect: {
ja: "相手のバトルポケモンに「ポケモンのどうぐ」がついているなら、80ダメージ追加。",
'zh-tw': "若對手的戰鬥寶可夢身上附有「寶可夢道具」卡則增加80點傷害。",
th: "ถ้าโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามมี [ไอเท็มติดโปเกมอน] ติดอยู่ การโจมตีนี้จะเพิ่มแดเมจอีก 80"
}
}, {
cost: ["Fighting", "Colorless", "Colorless", "Colorless"],
name: {
ja: "ランドクラッシュ",
'zh-tw': "大地粉碎",
th: "แลนด์ครัช"
},
damage: 120
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "H"
}
export default card