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} 小时内无法继续偷盗。", ),