Skip to content

Commit

Permalink
release 1.4.0 (#73)
Browse files Browse the repository at this point in the history
* feat(mapper): 💄 add new shop terrain types

add Witch Doctor, Combat Book Shop, Artisan Books Shop, Crafting Book Shop, and Scroll Scribe

* docs: 🔖 advance local version to 1.4.0
  • Loading branch information
iLPdev committed May 11, 2023
1 parent 2be55e5 commit 92f1f34
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
3 changes: 2 additions & 1 deletion PRS.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
-- Procedural Realms Script (PRS) by Stack
local version = "1.3.0"

local version = "1.4.0"

-- check if the generic_mapper package is installed and, if so, uninstall it
if table.contains(getPackages(),"generic_mapper") then
Expand Down
7 changes: 6 additions & 1 deletion prs-mapper.lua
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,12 @@ local terrain_types = {
["Obsidian Floor"] = {id = 89, r = 192, g = 192, b = 192},
["Obelisk Exit"] = {id = 90, r = 128, g = 0, b = 128},
["Permafrost"] = {id = 91, r = 0, g = 255, b = 255},
["Gold Mine Tailings"] = {id = 92, r = 255, g = 255, b = 255},
["Gold Mine Tailings"] = {id = 92, r = 255, g = 255, b = 255},
["Witch Doctor"] = {id = 93, r = 255, g = 0, b = 255},
["Combat Book Shop"] = {id = 94, r = 255, g = 255, b = 0},
["Artisan Book Shop"] = {id = 95, r = 255, g = 255, b = 0},
["Crafting Book Shop"] = {id = 96, r = 255, g = 255, b = 0},
["Scroll Scribe"] = {id = 97, r = 255, g = 255, b = 0},
}

-- list of possible movement directions and appropriate coordinate changes
Expand Down

0 comments on commit 92f1f34

Please sign in to comment.