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:
69
data-asia/SV/SV4M/045.ts
Normal file
69
data-asia/SV/SV4M/045.ts
Normal file
@ -0,0 +1,69 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV4M"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "ギルガルドex",
|
||||
'zh-tw': "堅盾劍怪ex",
|
||||
th: "กิลการ์ดex"
|
||||
},
|
||||
|
||||
illustrator: "toriyufu",
|
||||
rarity: "Double rare",
|
||||
category: "Pokemon",
|
||||
hp: 330,
|
||||
types: ["Metal"],
|
||||
stage: "Stage2",
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Metal"],
|
||||
|
||||
name: {
|
||||
ja: "ピアレスエッジ",
|
||||
'zh-tw': "絕世刀鋒",
|
||||
th: "คมดาบอดุลย์"
|
||||
},
|
||||
|
||||
damage: "70×",
|
||||
|
||||
effect: {
|
||||
ja: "自分がすでにとったサイドの枚数×70ダメージ。",
|
||||
'zh-tw': "造成自己已經獲得的獎賞卡的張數×70點傷害。",
|
||||
th: "แดเมจจะเท่ากับจำนวนการ์ดรางวัลที่ฝ่ายเราหยิบไปแล้ว x70"
|
||||
}
|
||||
}, {
|
||||
cost: ["Metal", "Metal"],
|
||||
|
||||
name: {
|
||||
ja: "もろはぎり",
|
||||
'zh-tw': "雙刃斬",
|
||||
th: "ฟันดาบสองคม"
|
||||
},
|
||||
|
||||
damage: 220,
|
||||
|
||||
effect: {
|
||||
ja: "このポケモンにも30ダメージ。",
|
||||
'zh-tw': "這隻寶可夢也受到30點傷害。",
|
||||
th: "โปเกมอนนี้ก็จะได้รับแดเมจ 30 ด้วย"
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Grass",
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user