1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00

44 lines
745 B
TypeScript
Raw Permalink 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 "../SVF"
const card: Card = {
set: Set,
name: {
'zh-tw': "拉魯拉絲"
},
illustrator: "Nagomi Nijo",
category: "Pokemon",
hp: 60,
types: ["Psychic"],
description: {
'zh-tw': "能敏銳地感知人和寶可夢的感情。一旦感受到敵意就會躲進暗處。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "記憶跳接"
},
effect: {
'zh-tw': "選擇對手的戰鬥寶可夢持有的1個招式。在下個對手的回合受到這個招式的寶可夢無法使用被選擇的招式。"
},
damage: 10,
cost: ["Psychic"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "F"
}
export default card