1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

70 lines
1.6 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 "../SV2a"
const card: Card = {
set: Set,
name: {
ja: "パラス",
'zh-tw': "派拉斯",
th: "พารัส",
id: "Paras"
},
illustrator: "Yoriyuki Ikegami",
rarity: "Common",
category: "Pokemon",
dexId: [46],
hp: 70,
types: ["Grass"],
description: {
ja: "冬虫夏草と いう キノコが 虫を 操っているのだ。 虫の 意思は 無視される。",
'zh-tw': "控制蟲子的是一種 叫做冬蟲夏草的蕈類。 蟲子的意志會被忽視。",
th: "เห็ดที่ชื่อโทจูคะโซจะคอยบงการแมลง โดยไม่สนใจความต้องการของแมลง",
id: "Jamur ulat Yarsagumba mengendalikan bagian tubuh serangga dari Paras. Kemauan serangga tidak dipedulikan."
},
stage: "Basic",
attacks: [{
cost: ["Grass"],
name: {
ja: "ふむ",
'zh-tw': "踩",
th: "เหยียบ",
id: "Menginjak"
},
damage: 10
}, {
cost: ["Grass", "Colorless"],
name: {
ja: "ほうしだま",
'zh-tw': "孢子彈",
th: "ลูกสปอร์",
id: "Bola Spora"
},
damage: 20,
effect: {
ja: "相手のバトルポケモンをねむりにする。",
'zh-tw': "將對手的戰鬥寶可夢【睡眠】。",
th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[หลับ]",
id: "Ubah kondisi Pokémon Bertarung lawan menjadi Tidur."
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card