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:
65
data-asia/SV/SV3/093.ts
Normal file
65
data-asia/SV/SV3/093.ts
Normal file
@ -0,0 +1,65 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV3"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "マッスグマ",
|
||||
'zh-tw': "直衝熊",
|
||||
th: "มัสสึกุมะ"
|
||||
},
|
||||
|
||||
illustrator: "Nagomi Nijo",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
dexId: [264],
|
||||
hp: 110,
|
||||
types: ["Colorless"],
|
||||
|
||||
description: {
|
||||
ja: "抜群の 瞬発力と するどいツメで 獲物を しとめる。 曲がった 道を 走るのは 下手。",
|
||||
'zh-tw': "用自己超群的爆發力和銳利的爪子來制服獵物。不擅長在彎曲的道路上奔跑。",
|
||||
th: "สามารถแสดงพลังได้อย่างรวดเร็ว ใช้กรงเล็บแหลมคมในการจัดการเหยื่อ ไม่ถนัดวิ่งบนถนนทางโค้ง"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "ジェットヘッド",
|
||||
'zh-tw': "噴射頭擊",
|
||||
th: "เจ็ตเฮด"
|
||||
},
|
||||
|
||||
damage: 40
|
||||
}, {
|
||||
cost: ["Colorless", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "とつげき",
|
||||
'zh-tw': "突擊",
|
||||
th: "ประจัญบาน"
|
||||
},
|
||||
|
||||
damage: 150,
|
||||
|
||||
effect: {
|
||||
ja: "このポケモンにも30ダメージ。",
|
||||
'zh-tw': "這隻寶可夢也受到30點傷害。",
|
||||
th: "โปเกมอนนี้ก็จะได้รับแดเมจ 30 ด้วย"
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 0,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user