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

51 lines
807 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 "../S10D"
const card: Card = {
set: Set,
name: {
'zh-tw': "蚊香君"
},
illustrator: "Scav",
category: "Pokemon",
hp: 90,
types: ["Water"],
description: {
'zh-tw': "一直盯著牠肚子上的漩渦看,就會想睡覺。牠會利用這花紋 來代替搖籃曲去哄孩子睡覺。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "打擊"
},
damage: 30,
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "雙重粉碎"
},
effect: {
'zh-tw': "擲2次硬幣造成正面出現的次數×50點傷害。"
},
damage: "50×",
cost: ["Water", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2,
regulationMark: "F"
}
export default card