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

52
data-asia/S/S4a/116.ts Normal file
View File

@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../S4a"
const card: Card = {
set: Set,
name: {
'zh-tw': "灰塵山"
},
illustrator: "tetsuya koizumi",
category: "Pokemon",
hp: 120,
types: ["Darkness"],
description: {
'zh-tw': "吃掉的垃圾會在體內轉化為毒素。毒素的成分會隨著吃掉的垃圾而不同。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "浸毒之地"
},
effect: {
'zh-tw': "若場上有競技場卡則在自己的回合時可使用1次。將對手的戰鬥寶可夢【中毒】。"
}
}],
attacks: [{
name: {
'zh-tw': "污泥炸彈"
},
damage: 80,
cost: ["Darkness", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card