1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00

63 lines
1.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SV6"
const card: Card = {
set: Set,
name: {
ja: "アラブルタケ",
'zh-tw': "猛惡菇"
},
category: "Pokemon",
rarity: "Uncommon",
illustrator: "danciao",
dexId: [986],
hp: 120,
types: ["Darkness"],
description: {
ja: "ある本の中で アラブルタケと 記されていた 生物は このポケモンの 可能性がある。",
'zh-tw': "某本書裡記載的一種 叫做猛惡菇的生物, 有可能就是這隻寶可夢。"
},
stage: "Basic",
attacks: [{
cost: ["Darkness"],
name: {
ja: "どくをとばす",
'zh-tw': "噴毒"
},
effect: {
ja: "相手のバトルポケモンをどくにする。",
'zh-tw': "將對手的戰鬥寶可夢【中毒】。"
}
}, {
cost: ["Darkness", "Darkness", "Darkness"],
name: {
ja: "まくしなぐる",
'zh-tw': "爆毆"
},
damage: "50+",
effect: {
ja: "相手のバトルポケモンにのっているダメカンの数×50ダメージ追加。",
'zh-tw': "增加對手的戰鬥寶可夢身上放置的傷害指示物的數量×50點傷害。"
}
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "H"
}
export default card