1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59: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

49
data-asia/S/S9/060.ts Normal file
View File

@ -0,0 +1,49 @@
import { Card } from "../../../interfaces"
import Set from "../S9"
const card: Card = {
set: Set,
name: {
'zh-tw': "臭泥",
ja: "ベトベター"
},
illustrator: "Masakazu Fukuda",
category: "Pokemon",
hp: 80,
types: ["Darkness"],
description: {
'zh-tw': "最近工廠排放的廢水太乾淨,使得牠沒東西可吃。 據說就快要絕種了。",
ja: "最近は 工場が 流す 廃液が 綺麗で エサが ない。 じき 絶滅すると いわれている。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "毒瓦斯",
ja: "どくガス"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【中毒】。",
ja: "相手のバトルポケモンをどくにする。"
},
cost: ["Darkness"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
regulationMark: "F",
rarity: "Common",
dexId: [88]
}
export default card