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/SC2b/063.ts Normal file
View File

@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../SC2b"
const card: Card = {
set: Set,
name: {
'zh-tw': "河馬獸"
},
illustrator: "KEIICHIRO ITO",
category: "Pokemon",
hp: 150,
types: ["Fighting"],
description: {
'zh-tw': "偶爾會有石子卡在身體的孔洞裡。因為石居蟹會幫忙把石子拿出來,所以會用心地保護牠們。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "三重粉碎"
},
effect: {
'zh-tw': "擲3次硬幣造成正面出現的次數×80點傷害。"
},
damage: "80×",
cost: ["Fighting", "Fighting", "Colorless"]
}, {
name: {
'zh-tw': "大地粉碎"
},
damage: 150,
cost: ["Fighting", "Fighting", "Fighting", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 4,
regulationMark: "D"
}
export default card