mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
51 lines
807 B
TypeScript
51 lines
807 B
TypeScript
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 |