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

48 lines
1.0 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: "Dsuke",
category: "Pokemon",
hp: 60,
types: ["Psychic"],
description: {
'zh-tw': "遭到襲擊時,會全身撞向對手, 趁著對方沾滿鮮奶油而看不見前方, 或因奶油的美味而愣住時迅速逃跑。",
'zh-cn': "遭到襲擊時,會全身撞向對手, 趁著對方沾滿鮮奶油而看不見前方, 或因奶油的美味而愣住時迅速逃跑。",
ja: "敵に 襲われたら たいあたり。 クリームまみれにして みえなくするか おいしさに 驚かせて 逃げだす。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "囈語",
'zh-cn': "囈語",
ja: "つぶやく"
},
damage: 20,
cost: ["Psychic"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "H",
dexId: [868],
rarity: "None"
}
export default card