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:
60
data-asia/S/S11a/044.ts
Normal file
60
data-asia/S/S11a/044.ts
Normal file
@ -0,0 +1,60 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S11a"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "巨鉗螳螂"
|
||||
},
|
||||
|
||||
illustrator: "kodama",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Metal"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "巨大的鉗子重達體重的3分之1。鉗子一揮,就連岩石都能一擊粉碎。"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "十字剪"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "擲1次硬幣若為正面,則增加30點傷害。"
|
||||
},
|
||||
|
||||
damage: "30+",
|
||||
cost: ["Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "危險爪"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "若對手的戰鬥寶可夢為【基礎】寶可夢,則增加80點傷害。"
|
||||
},
|
||||
|
||||
damage: "80+",
|
||||
cost: ["Colorless", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Grass",
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user