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:
42
data-asia/S/S7D/043.ts
Normal file
42
data-asia/S/S7D/043.ts
Normal file
@ -0,0 +1,42 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S7D"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "雙首暴龍"
|
||||
},
|
||||
|
||||
illustrator: "Akira Komayama",
|
||||
category: "Pokemon",
|
||||
hp: 100,
|
||||
types: ["Dragon"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "2個頭會爭搶同一個食物。明明沒有去和別人戰鬥,卻總是遍體鱗傷。"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "咬住"
|
||||
},
|
||||
|
||||
damage: 40,
|
||||
cost: ["Psychic", "Darkness"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "龍之頭擊"
|
||||
},
|
||||
|
||||
damage: 100,
|
||||
cost: ["Psychic", "Darkness", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "E"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user