mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
56 lines
944 B
TypeScript
56 lines
944 B
TypeScript
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 |