1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 16:39:18 +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

51
data-asia/S/SC1D/022.ts Normal file
View File

@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../SC1D"
const card: Card = {
set: Set,
name: {
'zh-tw': "熔蟻獸"
},
illustrator: "kawayoo",
category: "Pokemon",
hp: 110,
types: ["Fire"],
description: {
'zh-tw': "從尾部的孔洞吸入空氣,燃起火焰。如果孔洞被堵住了,身體就會不舒服。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "灼燒"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【灼傷】。"
},
damage: 10,
cost: ["Fire"]
}, {
name: {
'zh-tw': "火之爪"
},
damage: 50,
cost: ["Fire", "Fire"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card