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

49 lines
867 B
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': "派拉斯",
ja: "パラス"
},
illustrator: "Kouki Saitou",
category: "Pokemon",
hp: 70,
types: ["Grass"],
description: {
'zh-tw': "控制蟲子的是一種叫做冬蟲夏草的蕈類。蟲子的意志會被忽視。",
ja: "冬虫夏草と いう キノコが 虫を 操っているのだ。 虫の 意思は 無視される。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "吸取",
ja: "すいとる"
},
effect: {
'zh-tw': "將這隻寶可夢恢復「10」HP。",
ja: "このポケモンのHPを「10」回復する。"
},
damage: 20,
cost: ["Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
dexId: [46]
}
export default card