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:
61
data-asia/S/SC1a/107.ts
Normal file
61
data-asia/S/SC1a/107.ts
Normal 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
|
Reference in New Issue
Block a user