1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 16:39: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/S11/078.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../S11"
const card: Card = {
set: Set,
name: {
'zh-tw': "伽勒爾 泥巴魚"
},
illustrator: "Shigenori Negishi",
category: "Pokemon",
hp: 100,
types: ["Metal"],
description: {
'zh-tw': "棲息在富含鐵質的泥巴裡,因此獲得了 結實堅固的鋼鐵身軀。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "場地陷阱"
},
effect: {
'zh-tw': "將場上的對手的競技場卡丟棄。有丟棄的情況下選擇2個對手的戰鬥寶可夢身上附加的能量將其丟棄。"
},
damage: 20,
cost: ["Metal"]
}, {
name: {
'zh-tw': "撞擊"
},
damage: 50,
cost: ["Metal", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 3,
regulationMark: "F"
}
export default card