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

56
data-asia/S/S10a/052.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../S10a"
const card: Card = {
set: Set,
name: {
'zh-tw': "青銅鐘"
},
illustrator: "AKIRA EGAWA",
category: "Pokemon",
hp: 130,
types: ["Metal"],
description: {
'zh-tw': "據說當牠發出鐘聲般的音色時,通往異界的洞穴便會開啟。 自古就被視為神而受到供奉。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "衝撞"
},
damage: 30,
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "重力墜擊"
},
effect: {
'zh-tw': "增加對手的戰鬥寶可夢【撤退】所需的能量的數量×40點傷害。"
},
damage: "40+",
cost: ["Metal", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 3,
regulationMark: "F"
}
export default card