
Today’s Superhero Random Encounter

Remarkable, Incredible and Amazing nerdiness
I have started looking at adapting this for HexDescribe type reasons.
For example: – https://github.com/bluetyson/Map-Generation/blob/main/src/map.py
https://chgowiz-games.blogspot.com/ is working on a epic random generator for a campaign you can read about at his blog – using HexDescribe https://campaignwiki.org/hex-describe
You can see some examples here https://docs.google.com/spreadsheets/d/1G8AZf2tBOtGYr5AEKis7_AZYpJ1_T18LFYp_mi_rikY/edit#gid=1019219400 and https://pastebin.com/raw/W9zgH3pN
Borrowing his business classifications for an example for the Map-Generation software:
The output for this program is GeoJSON, so thanks to QGIS – which is great open source software.
Randomly perturbed Voronoi generation seems to work well for the random wanderiness of towns or cities that spring up.
The original code has churches, monasteries and Cathedrals. Pretty sure our D&D type games don’t need that sort of building type overload.
As well as GeoJSON – it has a viewer script that is basically QTing a PNG, so your usual plt.savefig() before that will get you that version of the output, saved, too. Need to make one that is labelled – maybe a geopandas .
Converting this to perl directly would take a bit of work – no higher level geospatial apis like shapely around there, so would have to redo in gdal directly :- https://metacpan.org/pod/Geo::GDAL. Probably easier to wrap, for fun.
Or, Mokuy gets dinosaurs
“Giant lizard, small dinosaur or feathered reptile?
There have been conflicting descriptions of this giant reptilian Indigenous cryptid, but documented sightings from the 1950s to the late 1980s describe the creature as walking on two legs – akin to a 20th-century tyrannosaurus rex.”
https://www.racv.com.au/royalauto/travel/australia/australian-mythical-folklore-creatures.html
So of course if it could be seen in 1950, it could be seen in 1800!
Above article also has the ferocious drop bear, of course.
Level 26 is accomodation for the workers.
GM: Key 5 shows dormitory type room setups, a row for men, a row for women, with two of Dr Ruby being perfectly happy to disintegrate on bad behaviour of minions.
Alex has made some adjustments to his Alpine algorithm for TextMapper to get better desert terrain – e.g. Australian. Lots of generic rpg maps assume European type things – e.g. cool to cold, whereas Australia is temperature to equatorial, in general.
This one is a nice example https://campaignwiki.org/text-mapper/alpine/document?width=52&bottom=3&peaks=7&bumps=2&height=48&steepness=4&peak=10&bump=2&arid=0&climate=desert&type=hex&seed=693329917
I have made a small list at this repository, mostly of things with code.
Found the Iron Arachne addition yesterday.
Level 26 is accomodation for the workers.
GM: Key 4 is the bathroom and toilets for the female minions. Where they have the good gin stashed.
Level 26 is accomodation for the workers.
GM: Key 3 is the small kitchen.
https://github.com/LAVS-TM/Map-Generation
A program that can generate cities and towns, medieval Voronoi style. Along with a viewer that can produce graphcis the base output is json, which gives you vector data to use with other things. Very nice!
Here is an example of a possible configuration for the city to be generated:
city = City(10000, 10000, has_walls=True, has_castle=True) tools.json(city, '/generated_city/city.json')