1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49:18 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

51
data-asia/S/S4/089.ts Normal file
View File

@ -0,0 +1,51 @@
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