mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-29 11:09:51 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
51
data-asia/S/SC2b/016.ts
Normal file
51
data-asia/S/SC2b/016.ts
Normal file
@ -0,0 +1,51 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SC2b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "火神蛾"
|
||||
},
|
||||
|
||||
illustrator: "NC Empire",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Fire"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "據說地表因火山灰而陷入一片黑暗時,火神蛾的火焰代替了太陽。"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "炙燒傷痕"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "若對手的戰鬥寶可夢身上沒有放置傷害指示物,則這個招式失敗。"
|
||||
},
|
||||
|
||||
damage: 80,
|
||||
cost: ["Fire"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "火焰之翼"
|
||||
},
|
||||
|
||||
damage: 110,
|
||||
cost: ["Fire", "Fire", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Water",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "D"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user