功能:随机浮漂钓鱼防挂机 + 商店自动钓鱼卡

核心变更:
1. FishingController 重写
   - cast(): 生成随机浮漂坐标(x/y%) + 一次性 token
   - reel(): 必须携带 token 才能收竿(防脚本绕过)
   - 检测自动钓鱼卡剩余时间并返回给前端

2. 前端钓鱼逻辑重写
   - 抛竿后显示随机位置 🪝 浮漂动画(全屏飘动)
   - 鱼上钩时浮漂「下沉」动画,8秒内点击浮漂才能收竿
   - 超时未点击:鱼跑了,token 也失效
   - 持有自动钓鱼卡:自动点击,紫色提示剩余时间

3. 商店新增「🎣 自动钓鱼卡」分组
   - 3档:2h(800金)/8h(2500金)/24h(6000金)
   - 图标徽章显示剩余有效时间(紫色)
   - 购买后即时激活,无需手动操作

4. 数据库
   - shop_items.type 加 auto_fishing 枚举
   - shop_items.duration_minutes 新字段(分钟精度)
   - Seeder 写入 3 张卡数据

防挂机原理:按钮 → 浮漂随机位置,脚本无法固定坐标点击
This commit is contained in:
2026-03-01 16:19:45 +08:00
parent e0c15b437e
commit 63679a622f
9 changed files with 417 additions and 77 deletions
@@ -0,0 +1,31 @@
<?php
/**
* 文件功能:为 shop_items.type 枚举添加 auto_fishing(自动钓鱼卡)类型
*
* 自动钓鱼卡激活后,钓鱼无需点击随机浮漂,系统自动收竿。
* duration_hours 字段控制有效期(使用 duration_days 字段,1day=24h)。
*/
use Illuminate\Database\Migrations\Migration;
use Illuminate\Support\Facades\DB;
return new class extends Migration
{
/**
* 添加 auto_fishing 枚举值。
*/
public function up(): void
{
DB::statement("ALTER TABLE `shop_items` MODIFY `type` ENUM('instant','duration','one_time','ring','auto_fishing') NOT NULL COMMENT '道具类型'");
}
/**
* 回滚:先将 auto_fishing 记录改为 one_time,再删除枚举值。
*/
public function down(): void
{
DB::statement("UPDATE `shop_items` SET `type` = 'one_time' WHERE `type` = 'auto_fishing'");
DB::statement("ALTER TABLE `shop_items` MODIFY `type` ENUM('instant','duration','one_time','ring') NOT NULL COMMENT '道具类型'");
}
};
@@ -0,0 +1,35 @@
<?php
/**
* 文件功能:为 shop_items 表添加 duration_minutes 字段
*
* 用于自动钓鱼卡等按分钟计算有效期的道具,
* 避免复用 duration_days(天级精度不够)。
*/
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* 添加 duration_minutes 字段。
*/
public function up(): void
{
Schema::table('shop_items', function (Blueprint $table): void {
$table->unsignedSmallInteger('duration_minutes')->default(0)->after('duration_days')->comment('道具有效时长(分钟),0=不适用');
});
}
/**
* 回滚:删除字段。
*/
public function down(): void
{
Schema::table('shop_items', function (Blueprint $table): void {
$table->dropColumn('duration_minutes');
});
}
};