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

69 lines
2.4 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 "../S12a"
const card: Card = {
set: Set,
name: {
'zh-tw': "派拉斯特",
th: "พาราเซ็คท์",
ja: "パラセクト"
},
illustrator: "Pani Kobayashi",
category: "Pokemon",
hp: 120,
types: ["Grass"],
description: {
'zh-tw': "本體是背上的蘑菇,底下的蟲子幾乎已經死亡。 一旦蘑菇脫落,牠就再也不會動了。",
th: "ส่วนที่เป็นแมลงเกือบจะตายแล้ว ส่วนตัวจริงของมันคือเห็ดที่อยู่บนหลัง ถ้าเด็ดออกจะเคลื่อนไหวไม่ได้อีก",
ja: "ムシの 方は ほぼ 死んでいて 本体は 背中の キノコだ。 もげると もう 動かなくなる。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "力竭孢子",
th: "สปอร์หมดกำลัง",
ja: "ぐったりほうし"
},
effect: {
'zh-tw': "在自己的回合當從手牌使出這張卡並完成進化時可使用1次。將雙方的戰鬥寶可夢【中毒】與【睡眠】。",
th: "ในเทิร์นฝ่ายเรา เมื่อนำการ์ดนี้จากบนมือออกมาวิวัฒนาการแล้ว ใช้ได้ 1 ครั้ง ทำให้โปเกมอนบนตำแหน่งต่อสู้ของทั้งสองฝ่ายแต่ละตัวเป็นสภาวะ[พิษ]และ[หลับ]",
ja: "自分の番に、このカードを手札から出して進化させたとき、1回使える。おたがいのバトルポケモンを、それぞれどくとねむりにする。"
}
}],
attacks: [{
name: {
'zh-tw': "十字剪",
th: "ซิสเซอร์ครอส",
ja: "シザークロス"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則增加50點傷害。",
th: "ทอยเหรียญ 1 ครั้ง ถ้าออกหัว การโจมตีนี้จะเพิ่มแดเมจอีก 50",
ja: "コインを1回投げオモテなら、50ダメージ追加。"
},
damage: "50",
cost: ["Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "F",
dexId: [47]
}
export default card