莱娅的记忆拼图一键脚本

少前2网页小游戏莱娅的记忆拼图一键自动拼图、一键抽卡

// ==UserScript==
// @name         莱娅的记忆拼图一键脚本
// @namespace    https://github.com/Tsuk1ko
// @version      0.1.3
// @description  少前2网页小游戏莱娅的记忆拼图一键自动拼图、一键抽卡
// @author       神代綺凛
// @match        https://gf2.sunborngame.com/lydjypt/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=sunborngame.com
// @grant        none
// @license      MIT
// ==/UserScript==

(function () {
    'use strict';

    const btnDiv = document.createElement('div');
    btnDiv.style.position = 'fixed';
    btnDiv.style.top = '0';
    btnDiv.style.left = '0';
    btnDiv.style.display = 'flex';
    btnDiv.style.flexDirection = 'column';
    document.body.appendChild(btnDiv);

    const gameBtn = initBtn('点击开始自动拼图');
    const gachaBtn = initBtn('点击开始自动抽卡');

    function resetBtn(el) {
        el.innerText = el.dataset.text;
        el.disabled = false;
    }

    function initBtn(text) {
        const el = document.createElement('button');
        el.innerText = text;
        el.style.fontSize = '0.2rem';
        el.style.padding = '0.02rem 0.05rem';
        el.dataset.text = text;
        btnDiv.appendChild(el);
        return el;
    }

    function checkLogin() {
        if (sessionStorage.getItem('key')) return;
        throw new Error('尚未登录(不可用)');
    }

    async function callApi(path, options) {
        const res = await fetch(`https://gf2-h5ump45gacha-api.sunborngame.com${path}`, {
            headers: {
                'Content-Type': 'application/json',
                Accept: 'application/json',
                Authorization: sessionStorage.getItem('key'),
            },
            ...options,
        });
        if (res.status !== 200) {
            throw new Error(`请求错误 ${res.status}`);
        }
        const data = await res.json();
        if (data.Code !== 0) {
            console.error(data);
            throw new Error(data.Message);
        }
        return data.data;
    }

    function callInfoApi() {
        return callApi('/info', {
            headers: {
                'Content-Type': 'application/json',
                Accept: 'application/json',
                Authorization: sessionStorage.getItem('key'),
            },
        });
    }

    async function checkCanPlay() {
        const data = await callInfoApi();
        const needRefresh = data.play_info.stage === 3;
        if (!data.day_can_get_score) throw new Error('今日积分已达上限');
        if (!data.play_num && needRefresh) throw new Error('已无游戏次数');
        if (!needRefresh && data.play_info.info.some(grid => grid)) throw new Error('请在没有格子被点开过的情况下使用本脚本');
        return needRefresh;
    }

    async function callGameApi(index) {
        const data = await callApi('/play_click', {
            method: 'POST',
            body: JSON.stringify({ index }),
        });
        return data.card_id;
    }

    function callRefreshApi() {
        return callApi('/refresh', {
            method: 'POST',
            body: JSON.stringify({}),
        });
    }

    async function startGame() {
        checkLogin();
        gameBtn.disabled = true;
        const needRefresh = await checkCanPlay();
        if (needRefresh) await callRefreshApi();
        const pairs = {};
        for (let i = 0; i < 16; i++) {
            gameBtn.innerText = `翻牌中 ${i} ${i + 1}`;
            const id = await callGameApi(i);
            console.log(`grid ${i} is ${id}`);
            if (!pairs[id]) pairs[id] = [];
            pairs[id].push(i);
        }
        console.log('pairs', pairs);
        for (const [g1, g2] of Object.values(pairs)) {
            if (g2 - g1 === 1 && g1 % 2 === 0) {
                console.log(`${g1} and ${g2} has paired`);
                continue;
            }
            gameBtn.innerText = `配对中 ${g1} ${g2}`;
            console.log(`start pair ${g1} and ${g2}`);
            await callGameApi(g1);
            await callGameApi(g2);
        }
        console.log('done');
        resetBtn(gameBtn);
        if (location.pathname === '/lydjypt/index') location.reload();
    }

    async function callGachaApi() {
        const data = await callApi('/gacha', {
            method: 'POST',
            body: JSON.stringify({}),
        });
        return data.name;
    }

    async function startGacha() {
        checkLogin();
        gachaBtn.disabled = true;
        const { gacha_num: num } = await callInfoApi();
        if (!num) throw new Error('已无抽卡次数');
        for (let i = 1; i <= num; i++) {
            gachaBtn.innerText = `抽卡中 ${i}`
            const name = await callGachaApi();
            console.log('抽卡获得', name);
        }
        resetBtn(gachaBtn);
        alert('抽卡完成,请检查抽卡记录');
        if (location.pathname === '/lydjypt/luckyDraw') location.reload();
    }

    function handleClick(btn, func) {
        btn.addEventListener('click', () => func().catch(e => {
            console.error(e);
            alert(e.message);
            resetBtn(btn);
        }));
    }

    handleClick(gameBtn, startGame);
    handleClick(gachaBtn, startGacha);
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址