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

61
data-asia/S/SC1a/107.ts Normal file
View File

@ -0,0 +1,61 @@
import { Card } from "../../../interfaces"
import Set from "../Sc1a"
const card: Card = {
set: Set,
name: {
'zh-tw': "伽勒爾 泥巴魚"
},
illustrator: "Kouki Saitou",
category: "Pokemon",
hp: 120,
types: ["Metal"],
description: {
'zh-tw': "棲息在富含鐵質的泥巴裡,因此獲得了結實堅固的鋼鐵身軀。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "捕獸夾"
},
effect: {
'zh-tw': "當這隻寶可夢在戰鬥場上受到對手的寶可夢招式的傷害時選擇1個使用招式的寶可夢身上附加的能量將其丟棄。"
}
}],
attacks: [{
name: {
'zh-tw': "傷害衝刺"
},
effect: {
'zh-tw': "擲硬幣直到出現反面增加正面出現的次數×30點傷害。"
},
damage: "30+",
cost: ["Metal", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 2,
regulationMark: "D"
}
export default card