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

55
data-asia/S/SC1D/020.ts Normal file
View 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