fix readme

This commit is contained in:
TheOnlyJoeEnderman 2023-09-18 23:23:54 +00:00
parent e0c5ea99ed
commit 33f166e121
1 changed files with 11 additions and 11 deletions

View File

@ -3,17 +3,17 @@
Register a geode:
```lua
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,
y_max = maximum level at which geodes generate,
scarcity = rarity of geodes, rarest at 80, lower values not recommended unless you use generation chance,
core = node comprising innermost part of geode, usually a crystal such as amethyst,
core_alt = replacement for node comprising innermost part of geode, usually a budding node which spawns plantlike drawtype crystal nodes on all sides,
core_alt_chance = chance of core_alt replacing core,
shell = array of nodes comprising geode shell, from outermost to innermost,
radius_min = minimum radius of geode cavity,
radius_max = maximum radius of geode cavity,
generation_chance = % chance a geode spawns given other conditions, lets geodes be even rarer,
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,
y_max = -- maximum level at which geodes generate,
scarcity = -- rarity of geodes, rarest at 80, lower values not recommended unless you use generation chance,
core = -- node comprising innermost part of geode, usually a crystal such as amethyst,
core_alt = -- replacement for node comprising innermost part of geode, usually a budding node which spawns plantlike drawtype crystal nodes on all sides,
core_alt_chance = -- chance of core_alt replacing core,
shell = -- array of nodes comprising geode shell, from outermost to innermost,
radius_min = -- minimum radius of geode cavity,
radius_max = -- maximum radius of geode cavity,
generation_chance = -- % chance a geode spawns given other conditions, lets geodes be even rarer,
})
```
Example: