1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

57 lines
976 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../S10D"
const card: Card = {
set: Set,
name: {
'zh-tw': "基拉祈V"
},
illustrator: "N-DESIGN Inc.",
category: "Pokemon",
hp: 180,
types: ["Psychic"],
stage: "Basic",
suffix: "V",
abilities: [{
type: "Ability",
name: {
'zh-tw': "許願之橋"
},
effect: {
'zh-tw': "每次當自己的【基礎】寶可夢的「寶可夢【V】」受到對手的寶可夢招式的傷害而【氣絕】時可使用1次。選擇1張【氣絕】的寶可夢身上附加的基本能量卡改附於自己的其他寶可夢身上。"
}
}],
attacks: [{
name: {
'zh-tw': "催眠強襲"
},
effect: {
'zh-tw': "將雙方的戰鬥寶可夢【睡眠】。"
},
damage: 60,
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "F"
}
export default card