1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

72 lines
2.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 "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "コレクレー",
'zh-tw': "索財靈",
th: "คอลเลคเรย์",
id: "Gimmighoul"
},
illustrator: "OKUBO",
category: "Pokemon",
dexId: [999],
hp: 50,
types: ["Psychic"],
description: {
ja: "およそ1500年前 宝箱の中で 生まれた。 宝を 盗む 不埒者の 生気を 吸い取る。",
'zh-tw': "約1500年前出生在寶箱裡。如果有惡棍打算偷走寶藏, 就會被牠吸走精氣。",
th: "เกิดในกล่องสมบัติเมื่อราว 1500 ปีก่อน สูบพลังชีวิตของคนร้ายที่มาขโมยสมบัติ",
id: "Sekitar 1500 tahun lalu, Gimmighoul terlahir di dalam kotak harta. Pokémon ini mengisap vitalitas orang jahat yang hendak mencuri hartanya."
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "はこにかくれる",
'zh-tw': "藏入盒子",
th: "ซ่อนในกล่อง",
id: "Bersembunyi Dalam Kotak"
},
effect: {
ja: "コインを1回投げオモテなら、次の相手の番、このポケモンはワザのダメージや効果を受けない。",
'zh-tw': "擲1次硬幣若為正面則在下個對手的回合這隻寶可夢不會受到招式的傷害與效果的影響。",
th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนนี้จะไม่ได้รับแดเมจและเอฟเฟกต์ของท่าต่อสู้",
id: "Lempar koin 1 kali. Jika hasilnya sisi depan, pada giliran lawan berikutnya, Pokémon ini tidak menerima kerusakan dan efek akibat serangan."
}
}, {
cost: ["Colorless"],
name: {
ja: "ぶつかる",
'zh-tw': "衝撞",
th: "กระแทก",
id: "Menyeruduk"
},
damage: 10
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "G"
}
export default card