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

55
data-asia/S/SC2a/024.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "木木梟"
},
illustrator: "HYOGONOSUKE",
category: "Pokemon",
hp: 50,
types: ["Grass"],
description: {
'zh-tw': "一邊飛行一邊射出刀刃般銳利的羽毛,距離近時會使出猛烈的踢擊。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "天空雜耍"
},
effect: {
'zh-tw': "在這個回合,若從自己的手牌使出了「養鳥人」,則這隻寶可夢使用招式所需的能量全部消除。"
}
}],
attacks: [{
name: {
'zh-tw': "風礫"
},
effect: {
'zh-tw': "對手的1隻備戰寶可夢受到60點傷害。[在備戰區不計算弱點・抵抗力。]"
},
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card