1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

51 lines
802 B
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 "../SV-P"
const card: Card = {
set: Set,
name: {
'zh-tw': "吃吼霸"
},
illustrator: "Shin Nagasawa",
category: "Pokemon",
hp: 150,
types: ["Water"],
description: {
'zh-tw': "雖然是個大胃王, 但不擅長捕食。 會和米立龍聯手捕捉獵物。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "頭突"
},
damage: 60,
cost: ["Water", "Colorless", "Colorless"]
}, {
name: {
'zh-tw': "必殺波"
},
effect: {
'zh-tw': "擲2次硬幣若全部為正面則增加100點傷害。"
},
damage: "100+",
cost: ["Water", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 4,
regulationMark: "G"
}
export default card