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:
56
data-asia/S/S6a/039.ts
Normal file
56
data-asia/S/S6a/039.ts
Normal file
@ -0,0 +1,56 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S6a"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "花潔夫人"
|
||||
},
|
||||
|
||||
illustrator: "Kagemaru Himeno",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Psychic"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "擁有數百年的壽命。據說牠終其一生都會不斷守護著庭園。"
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
'zh-tw': "連擊連接"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "在自己的回合時,可不限次數使用。選擇1個自己的場上寶可夢身上附加的能量,改附於自己的其他「連擊」寶可夢身上。"
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "奇跡閃耀"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "將對手的戰鬥寶可夢【混亂】。"
|
||||
},
|
||||
|
||||
damage: 110,
|
||||
cost: ["Psychic", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Metal",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "E"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user