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

50 lines
871 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: "kurumitsu",
category: "Pokemon",
hp: 90,
types: ["Psychic"],
description: {
'zh-tw': "用溫順的長相讓對手大意,然後用大顎一口咬住對手。 咬住後就絕不會鬆口。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "甜甜圈套"
},
effect: {
'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。在下個自己的回合,受到這個招式的寶可夢受到招式的傷害「+90」點。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "咬住"
},
damage: 90,
cost: ["Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "F"
}
export default card