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

54 lines
1.2 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 "../SV7"
const card: Card = {
set: Set,
name: {
'zh-tw': "幼棉棉",
'zh-cn': "幼棉棉",
ja: "ヒメンカ"
},
illustrator: "Heisuke Kitazawa",
category: "Pokemon",
hp: 60,
types: ["Grass"],
description: {
'zh-tw': "當牠把單腳紮進地面裡, 並且沐浴充分的陽光, 花瓣就會染上鮮豔的顏色。",
'zh-cn': "當牠把單腳紮進地面裡, 並且沐浴充分的陽光, 花瓣就會染上鮮豔的顏色。",
ja: "一本足を 地面に 刺して 陽の光を たっぷり 浴びると 花びらが 鮮やかに 色づく。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "雙重旋轉",
'zh-cn': "雙重旋轉",
ja: "ダブルスピン"
},
effect: {
'zh-tw': "擲2次硬幣造成正面出現的次數×10點傷害。",
'zh-cn': "擲2次硬幣造成正面出現的次數×10點傷害。",
ja: "コインを2回投げ、オモテの数×10ダメージ。"
},
damage: "10×",
cost: ["Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "H",
rarity: "Common",
dexId: [829]
}
export default card