From ca047312a064974cba2aa873df09baea4d10dfd1 Mon Sep 17 00:00:00 2001 From: ninemine <1371605831@qq.com> Date: Sat, 15 Nov 2025 21:36:51 +0800 Subject: [PATCH] =?UTF-8?q?=E9=99=8D=E4=BD=8E=E9=99=B7=E9=98=B1=E5=AF=BC?= =?UTF-8?q?=E8=87=B4=E7=9A=84=E7=A6=81=E6=AD=A2=E6=97=B6=E9=97=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Plugins/WPSGardenSystem/garden_models.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Plugins/WPSGardenSystem/garden_models.py b/Plugins/WPSGardenSystem/garden_models.py index afe715f..1c09206 100644 --- a/Plugins/WPSGardenSystem/garden_models.py +++ b/Plugins/WPSGardenSystem/garden_models.py @@ -407,7 +407,7 @@ GARDEN_TRAPS: Tuple[GardenTrapDefinition, ...] = ( description="基础防护陷阱,50%概率触发,对偷盗者造成小额罚金并短时禁止偷盗。", trigger_rate=0.5, fine_points=1000, - ban_hours=12, + ban_hours=1, durability=1, # 普通陷阱1次使用 trigger_message="🕸️ 你触发了防盗网!被罚款 {fine} 分,并且在 {hours} 小时内无法继续偷盗。", ), @@ -418,7 +418,7 @@ GARDEN_TRAPS: Tuple[GardenTrapDefinition, ...] = ( description="带刺的防护陷阱,60%概率触发,造成中等罚金并禁止偷盗更长时间。", trigger_rate=0.6, fine_points=2500, - ban_hours=24, + ban_hours=2, durability=2, # 稀有陷阱2次使用 trigger_message="🌵 你踩到了荆棘陷阱!被罚款 {fine} 分,并且在 {hours} 小时内无法继续偷盗。", ), @@ -429,7 +429,7 @@ GARDEN_TRAPS: Tuple[GardenTrapDefinition, ...] = ( description="强大的魔法防护,70%概率触发,造成高额罚金并长时间禁止偷盗。", trigger_rate=0.7, fine_points=5000, - ban_hours=48, + ban_hours=4, durability=3, # 史诗陷阱4次使用 trigger_message="✨ 你触碰到了魔法结界!被罚款 {fine} 分,并且在 {hours} 小时内无法继续偷盗。", ), @@ -440,7 +440,7 @@ GARDEN_TRAPS: Tuple[GardenTrapDefinition, ...] = ( description="传说级的防护装置,80%概率触发,造成巨额罚金并长期禁止偷盗。", trigger_rate=0.8, fine_points=10000, - ban_hours=72, + ban_hours=8, durability=4, # 传说陷阱4次使用 trigger_message="⚡ 你惊醒了传奇守护!被罚款 {fine} 分,并且在 {hours} 小时内无法继续偷盗。", ),