1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59: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/S7D/019.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../S7D"
const card: Card = {
set: Set,
name: {
'zh-tw': "伽勒爾 閃電鳥"
},
illustrator: "kodama",
category: "Pokemon",
hp: 110,
types: ["Fighting"],
description: {
'zh-tw': "擁有能夠一腳踢毀砂石車的強勁腳力。據說能以時速300公里在山中奔跑。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "健腳充能"
},
effect: {
'zh-tw': "在自己的回合當從手牌將這張卡放置於備戰區時可使用1次。從自己的手牌選擇最多2張【鬥】能量卡附於這隻寶可夢身上。"
}
}],
attacks: [{
name: {
'zh-tw': "閃踢"
},
effect: {
'zh-tw': "若希望,將這隻寶可夢身上附加的能量全部丟棄。這個情況下,將對手的戰鬥寶可夢【麻痺】。"
},
damage: 70,
cost: ["Fighting", "Fighting", "Colorless"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 0,
regulationMark: "E"
}
export default card