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

56 lines
900 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 "../SVD"
const card: Card = {
set: Set,
name: {
'zh-tw': "爆炸頭水牛"
},
illustrator: "Yuya Oka",
category: "Pokemon",
hp: 120,
types: ["Colorless"],
description: {
'zh-tw': "會組成約20隻的群體一起生活。不知為何,背叛了群體的 爆炸頭水牛頭上的毛會脫落。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "爆炸頭防守"
},
effect: {
'zh-tw': "這隻寶可夢受到招式的傷害「-20」點。"
}
}],
attacks: [{
name: {
'zh-tw': "傷害衝刺"
},
effect: {
'zh-tw': "擲硬幣直到出現反面增加正面出現的次數×30點傷害。"
},
damage: "50+",
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card