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:
64
data-asia/S/S9/061.ts
Normal file
64
data-asia/S/S9/061.ts
Normal file
@ -0,0 +1,64 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S9"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "臭臭泥",
|
||||
ja: "ベトベトン"
|
||||
},
|
||||
|
||||
illustrator: "Scav",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Darkness"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "由於牠會散播病原菌,因此不斷遭到驅逐, 結果導致牠的數量急遽減少。",
|
||||
ja: "病原菌を まき散らすので 駆除 し続けた 結果 数が 激減して しまった。"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
'zh-tw': "污泥路",
|
||||
ja: "ヘドロード"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "只要這隻寶可夢在場上,對手的【中毒】的寶可夢【撤退】所需的能量增加1個。",
|
||||
ja: "このポケモンがいるかぎり、相手のどくのポケモンのにげるためのエネルギーは、1個ぶん多くなる。"
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "絕境猛毒",
|
||||
ja: "ぜっきょうポイズン"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "將對手的戰鬥寶可夢【中毒】與【混亂】。",
|
||||
ja: "相手のバトルポケモンをどくとこんらんにする。"
|
||||
},
|
||||
|
||||
damage: 90,
|
||||
cost: ["Darkness", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "F",
|
||||
rarity: "Uncommon",
|
||||
dexId: [89]
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user