mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 00:49:18 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
46
data-asia/S/S7D/044.ts
Normal file
46
data-asia/S/S7D/044.ts
Normal file
@ -0,0 +1,46 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S7D"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "三首惡龍"
|
||||
},
|
||||
|
||||
illustrator: "hatachu",
|
||||
category: "Pokemon",
|
||||
hp: 170,
|
||||
types: ["Dragon"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "3個頭會輪流去咬敵人。在對方倒下之前,絕對不會停止攻擊。"
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "龍之反擊"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "增加上個對手的回合對手獲得的獎賞卡的張數×100點傷害。"
|
||||
},
|
||||
|
||||
damage: "20+",
|
||||
cost: ["Psychic", "Darkness"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "漆黑之牙"
|
||||
},
|
||||
|
||||
damage: 210,
|
||||
cost: ["Psychic", "Darkness", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "E"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user