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

59 lines
1.3 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 "../S9"
const card: Card = {
set: Set,
name: {
'zh-tw': "熱帶龍",
ja: "トロピウス"
},
illustrator: "Shin Nagasawa",
category: "Pokemon",
hp: 110,
types: ["Grass"],
description: {
'zh-tw': "脖子上的美味水果很受歡迎。在溫暖的地區有很多 養殖熱帶龍的牧場。",
ja: "首の フサが 美味しくて 人気。 暖かい 土地には トロピウスを 育てる 牧場が たくさん。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "治癒樹蔭",
ja: "いやしのこかげ"
},
effect: {
'zh-tw': "只要這隻寶可夢在場上,自己的所有身上附有【草】能量的寶可夢不會【混亂】,受到的【混亂】會全部恢復。",
ja: "このポケモンがいるかぎり、エネルギーがついている自分のポケモン全員は、こんらんにならず、受けているこんらんは、すべて回復する。"
}
}],
attacks: [{
name: {
'zh-tw': "利刃切割",
ja: "スライスブレード"
},
damage: 100,
cost: ["Grass", "Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
rarity: "Uncommon",
dexId: [357]
}
export default card