1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49: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/SC1b/101.ts Normal file
View File

@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../SC1b"
const card: Card = {
set: Set,
name: {
'zh-tw': "坦克臭鼬"
},
illustrator: "sowsow",
category: "Pokemon",
hp: 120,
types: ["Darkness"],
description: {
'zh-tw': "會在肚子裡囤滿臭液,從尾巴噴出臭液攻擊敵人。臭味會依吃下的東西而不同。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "劈開"
},
damage: 50,
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "毒陣"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【中毒】。在下個對手的回合,受到這個招式的寶可夢無法撤退。"
},
damage: 80,
cost: ["Darkness", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
regulationMark: "D"
}
export default card