1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

71 lines
2.5 KiB
TypeScript
Raw Permalink 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 "../SV4K"
const card: Card = {
set: Set,
name: {
ja: "アラブルタケ",
'zh-tw': "猛惡菇",
th: "เห็ดคลุ้มคลั่ง"
},
illustrator: "Anesaki Dynamic",
rarity: "Rare",
category: "Pokemon",
dexId: [986],
hp: 120,
types: ["Darkness"],
description: {
ja: "ある本の中で アラブルタケと 記されていた 生物は このポケモンの 可能性がある。",
'zh-tw': "某本書裡記載的一種叫做猛惡菇的生物, 有可能就是這隻寶可夢。",
th: "มีความเป็นไปได้ว่าโปเกมอนตัวนี้คือสิ่งมีชีวิตที่เรียกว่าเห็ดคลุ้มคลั่งซึ่งถูกระบุไว้ในหนังสือเล่มหนึ่ง"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
ja: "もうどくふんじん",
'zh-tw': "劇毒粉塵",
th: "ผงฝุ่นพิษร้ายแรง"
},
effect: {
ja: "このポケモンに「ブーストエナジー 古代」がついているなら、自分の番に1回使える。おたがいのバトルポケモンを、それぞれどくにする。",
'zh-tw': "若這隻寶可夢身上附有「驅勁能量 古代」則在自己的回合時可使用1次。將雙方的戰鬥寶可夢【中毒】。",
th: "ถ้าโปเกมอนนี้มี [บูสต์เอนเนอร์จี้ โบราณ] ติดอยู่ ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา ทำให้โปเกมอนบนตำแหน่งต่อสู้ของทั้งสองฝ่าย แต่ละตัวเป็นสภาวะ[พิษ]"
}
}],
attacks: [{
cost: ["Darkness", "Darkness", "Colorless"],
name: {
ja: "あばれハンマー",
'zh-tw': "暴亂之錘",
th: "ค้อนคลั่ง"
},
damage: 120,
effect: {
ja: "次の自分の番、このポケモンはワザが使えない。",
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。",
th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ท่าต่อสู้ไม่ได้"
}
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "G"
}
export default card