1
0
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:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

42
data-asia/S/S7D/043.ts Normal file
View 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