1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +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

52
data-asia/S/S8b/004.ts Normal file
View File

@ -0,0 +1,52 @@
import { Card } from "../../../interfaces"
import Set from "../S8b"
const card: Card = {
set: Set,
name: {
'zh-tw': "音箱蟀V"
},
illustrator: "Satoshi Shirai",
category: "Pokemon",
hp: 180,
types: ["Grass"],
stage: "Basic",
suffix: "V",
abilities: [{
type: "Ability",
name: {
'zh-tw': "激動舞台"
},
effect: {
'zh-tw': "在自己的回合時可使用1次。從牌庫抽卡直到自己的手牌滿3張為止。若這隻寶可夢在戰鬥場上則抽卡直到滿4張為止。在這個回合若已經使出了其他的「激動舞台」則這個特性無法使用。"
}
}],
attacks: [{
name: {
'zh-tw': "十字剪"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則增加80點傷害。"
},
damage: "80+",
cost: ["Grass", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "E"
}
export default card