mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 08:39:17 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
55
data-asia/S/SC1D/020.ts
Normal file
55
data-asia/S/SC1D/020.ts
Normal file
@ -0,0 +1,55 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SC1D"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "鴨嘴炎獸"
|
||||
},
|
||||
|
||||
illustrator: "Kazuma Koda",
|
||||
category: "Pokemon",
|
||||
hp: 140,
|
||||
types: ["Fire"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "棲息在火山口。據說1座火山只有一對鴨嘴炎獸。"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "爆破拳"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "將對手的戰鬥寶可夢【灼傷】。"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
cost: ["Fire", "Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "大地灼燒"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "將雙方的牌庫上方各1張卡丟棄,增加其中能量卡的張數×100點傷害。"
|
||||
},
|
||||
|
||||
damage: "80+",
|
||||
cost: ["Fire", "Fire", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Water",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "D"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user