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

53 lines
1.2 KiB
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 "../S12"
const card: Card = {
set: Set,
name: {
'zh-tw': "小灰怪",
th: "ลีเกรย์",
ja: "リグレー"
},
illustrator: "Shigenori Negishi",
category: "Pokemon",
hp: 60,
types: ["Psychic"],
description: {
'zh-tw': "當牠站在電視機旁邊時,畫面上會出現奇怪的景色。 據說那是牠的故鄉。",
th: "ถ้าอยู่ข้าง ๆ ทีวีตรงมอนิเตอร์จะฉายภาพทิวทัศน์ประหลาด ว่ากันว่ามันคือภาพบ้านเกิดของลีเกรย์",
ja: "テレビのそばに いると モニターに 奇妙な 景色が 映る。 リグレーの 故郷だと いわれる。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "頭錘",
th: "พุ่งหัวชน",
ja: "ずつき"
},
damage: 20,
cost: ["Psychic"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "30"
}],
retreat: 1,
regulationMark: "F",
rarity: "Common",
dexId: [605]
}
export default card