mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 16:39:18 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
61
data-asia/SV/SV5M/044.ts
Normal file
61
data-asia/SV/SV5M/044.ts
Normal file
@ -0,0 +1,61 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV5M"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "巨鉗螳螂ex",
|
||||
th: "ฮัซซัมex"
|
||||
},
|
||||
|
||||
illustrator: "toriyufu",
|
||||
category: "Pokemon",
|
||||
hp: 270,
|
||||
types: ["Metal"],
|
||||
stage: "Stage1",
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "鋼翼",
|
||||
th: "ปีกเหล็ก"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "在下個對手的回合,這隻寶可夢受到招式的傷害「-50」點。",
|
||||
th: "เทิร์นถัดไปของฝ่ายตรงข้าม แดเมจของท่าต่อสู้ที่โปเกมอนนี้จะได้รับจะถูก [-50]"
|
||||
},
|
||||
|
||||
damage: 70,
|
||||
cost: ["Colorless", "Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "十字破壞",
|
||||
th: "ครอสเบรกเกอร์"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "將最多2張這隻寶可夢身上附加的【鋼】能量卡丟棄,造成其張數×120點傷害。",
|
||||
th: "ทิ้งพลังงาน[โลหะ]ที่ติดอยู่กับโปเกมอนนี้ได้สูงสุด 2 ใบที่ตำแหน่งทิ้งการ์ด แดเมจจะเท่ากับจำนวนการ์ดนั้น x120"
|
||||
},
|
||||
|
||||
damage: "120×",
|
||||
cost: ["Metal", "Metal"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Grass",
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user