Upload files to "/"

This commit is contained in:
TheOnlyJoeEnderman 2023-09-18 23:21:55 +00:00
parent 6ddeb18193
commit ed7f8c2229
1 changed files with 4 additions and 3 deletions

View File

@ -1,7 +1,7 @@
# Geodes Library
Register a geode:
```
geodes_lib:register_geode({
wherein = node in which geodes generate, set to mapgen_stone unless you need it to spawn in a specific place,
y_min = minimum level at which geodes generate,
@ -15,9 +15,9 @@ geodes_lib:register_geode({
radius_max = maximum radius of geode cavity,
generation_chance = % chance a geode spawns given other conditions, lets geodes be even rarer,
})
```
Example:
```
geodes_lib:register_geode({
wherein = "mapgen_stone",
y_min = -31000,
@ -31,3 +31,4 @@ geodes_lib:register_geode({
radius_max = 10,
generation_chance = 50, -- set to around 10 if you are adding 20 or more geodes this way
})
```