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

53 lines
879 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 "../SC1D"
const card: Card = {
set: Set,
name: {
'zh-tw': "豐蜜龍"
},
illustrator: "Akira Komayama",
category: "Pokemon",
hp: 90,
types: ["Grass"],
description: {
'zh-tw': "啃果蟲吃了甜蘋果後進化而成。以蟲寶可夢為食,會從體內發出甜甜的香味引誘牠們上鉤。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "美味香氣"
},
effect: {
'zh-tw': "在自己的回合時可使用1次。擲1次硬幣若為正面則選擇對手的備戰區的1隻【基礎】寶可夢與戰鬥寶可夢互換。"
}
}],
attacks: [{
name: {
'zh-tw': "日光束"
},
damage: 70,
cost: ["Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 3,
regulationMark: "D"
}
export default card