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

67 lines
1.7 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 "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "ミニーブ",
'zh-tw': "迷你芙",
th: "มินีฟ",
id: "Smoliv"
},
illustrator: "Shibuzoh.",
category: "Pokemon",
dexId: [928],
hp: 60,
types: ["Grass"],
description: {
ja: "頭の 実から オイルを 出して 敵から 身を 守る。 オイルは とびあがるほど 苦くて 渋い。",
'zh-tw': "會從頭上的果實噴出油來保護自己不受敵人攻擊。 油的味道苦澀到會讓人跳起來。",
th: "ปล่อยน้ำมันออกมาจากผลบนหัวเพื่อปกป้องตัวเองจากศัตรู น้ำมันนั้นทั้งขมและฝาดจนน่าตกใจ",
id: "Smoliv melindungi diri dari musuh dengan mengeluarkan minyak dari buah di kepalanya. Minyaknya pahit dan sepat cukup untuk membuat tersentak."
},
stage: "Basic",
attacks: [{
cost: ["Grass"],
name: {
ja: "えいようそ",
'zh-tw': "營養素",
th: "สารอาหาร",
id: "Nutrisi"
},
effect: {
ja: "自分のポケモン1匹のHPを「30」回復する。",
'zh-tw': "將自己的1隻寶可夢恢復「30」HP。",
th: "ฟื้นฟู HP ของโปเกมอนฝ่ายเรา 1 ตัว [30]",
id: "Pulihkan HP 1 Pokémon sendiri sejumlah 30."
}
}, {
cost: ["Grass", "Colorless"],
name: {
ja: "しるをとばす",
'zh-tw': "噴汁",
th: "ฉีดพ่นน้ำ",
id: "Menyemprotkan Getah"
},
damage: 20
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card