diff options
Diffstat (limited to 'npc/items')
-rw-r--r-- | npc/items/shovel.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/npc/items/shovel.txt b/npc/items/shovel.txt index 7d2cb072d..7c4e68d89 100644 --- a/npc/items/shovel.txt +++ b/npc/items/shovel.txt @@ -263,6 +263,9 @@ OnInit: // Aeros can be used too (for events) AddDigRect("001-1", 20, 20, 342, 158); + // LoF Areas + AddDigRect("018-1", 20, 20, 80, 80); + OnHour00: // Clear random treasure deletearray $@WBT_Random_id; @@ -287,6 +290,9 @@ OnHour00: shovel_scatter("007-1", 20, 20, 180, 180, .@Treasure, rand(30,180)); shovel_scatter("011-1", 20, 20, 180, 180, .@Treasure, rand(30,180)); shovel_scatter("015-1", 20, 20, 180, 180, .@Treasure, rand(30,180)); + + // Extra burried treasure (25~65 over 3600 tiles: aprox. 0.70% to 1.80%) + shovel_scatter("018-1", 20, 20, 80, 80, .@Treasure, rand(25,65)); end; } |