mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 00:49:18 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
52
data-asia/S/S10b/039.ts
Normal file
52
data-asia/S/S10b/039.ts
Normal file
@ -0,0 +1,52 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10b"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "太陽岩"
|
||||
},
|
||||
|
||||
illustrator: "Sekio",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Fighting"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "當牠旋轉自己的身體時,會發出太陽般的光芒,讓敵人的眼睛暫時失明。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
'zh-tw': "太陽能量"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "在自己的回合時,可使用1次。從自己的棄牌區選擇1張【超】能量卡,附於自己的「月石」身上。"
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "迴轉攻擊"
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
cost: ["Fighting", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Grass",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user