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

55
data-asia/S/SI/037.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../SI"
const card: Card = {
set: Set,
name: {
'zh-tw': "轟擂金剛猩"
},
illustrator: "Hitoshi Ariga",
category: "Pokemon",
hp: 180,
types: ["Grass"],
description: {
'zh-tw': "打鼓技巧最高超的那一隻 會成為首領。性情溫和, 重視族群的和諧相處。"
},
stage: "Stage2",
attacks: [{
name: {
'zh-tw': "木之吸取"
},
effect: {
'zh-tw': "將這隻寶可夢恢復「30」HP。"
},
damage: 60,
cost: ["Grass", "Colorless"]
}, {
name: {
'zh-tw': "怒濤連打"
},
effect: {
'zh-tw': "將自己的場上寶可夢身上附加的任意數量的能量丟棄增加其張數×30點傷害。"
},
damage: "120+",
cost: ["Grass", "Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 3,
regulationMark: "E"
}
export default card