Skip to content

Commit 92f1f34

Browse files
authored
release 1.4.0 (#73)
* 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
1 parent 2be55e5 commit 92f1f34

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

PRS.lua

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
-- Procedural Realms Script (PRS) by Stack
2-
local version = "1.3.0"
2+
3+
local version = "1.4.0"
34

45
-- check if the generic_mapper package is installed and, if so, uninstall it
56
if table.contains(getPackages(),"generic_mapper") then

prs-mapper.lua

+6-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,12 @@ local terrain_types = {
100100
["Obsidian Floor"] = {id = 89, r = 192, g = 192, b = 192},
101101
["Obelisk Exit"] = {id = 90, r = 128, g = 0, b = 128},
102102
["Permafrost"] = {id = 91, r = 0, g = 255, b = 255},
103-
["Gold Mine Tailings"] = {id = 92, r = 255, g = 255, b = 255},
103+
["Gold Mine Tailings"] = {id = 92, r = 255, g = 255, b = 255},
104+
["Witch Doctor"] = {id = 93, r = 255, g = 0, b = 255},
105+
["Combat Book Shop"] = {id = 94, r = 255, g = 255, b = 0},
106+
["Artisan Book Shop"] = {id = 95, r = 255, g = 255, b = 0},
107+
["Crafting Book Shop"] = {id = 96, r = 255, g = 255, b = 0},
108+
["Scroll Scribe"] = {id = 97, r = 255, g = 255, b = 0},
104109
}
105110

106111
-- list of possible movement directions and appropriate coordinate changes

0 commit comments

Comments
 (0)