mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
51 lines
804 B
TypeScript
51 lines
804 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../S4"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "爆音怪"
|
||
},
|
||
|
||
illustrator: "Shigenori Negishi",
|
||
category: "Pokemon",
|
||
hp: 160,
|
||
types: ["Colorless"],
|
||
|
||
description: {
|
||
'zh-tw': "戰鬥時發出的吼聲會像地震一樣把地面震得不停搖晃。"
|
||
},
|
||
|
||
stage: "Stage2",
|
||
|
||
attacks: [{
|
||
name: {
|
||
'zh-tw': "輪唱"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "造成自己的場上的,持有「輪唱」招式的寶可夢的數量×50點傷害。"
|
||
},
|
||
|
||
damage: "50×",
|
||
cost: ["Colorless", "Colorless"]
|
||
}, {
|
||
name: {
|
||
'zh-tw': "巨聲"
|
||
},
|
||
|
||
damage: 120,
|
||
cost: ["Colorless", "Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 3,
|
||
regulationMark: "D"
|
||
}
|
||
|
||
export default card |