-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Save parameter per world in superflat.txt
Little fix at saving blockcache. Add more example. Update README. Add README in plain text.
- Loading branch information
Showing
5 changed files
with
92 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
(Yet Another) Superflat Map Generator [superflat] | ||
========= | ||
|
||
#License | ||
CC 1.0 Universal (see LICENSE file) | ||
|
||
#Feature | ||
- This mod will create customizable world's layers' world | ||
- Decoration (optional) | ||
- If you're falling, you will be returned to surface | ||
|
||
#How To Modify | ||
- Open parameter.lua file | ||
- Change `sflat.Y_ORIGIN` to adjust where first layer is (default: 1) | ||
- Change `sflat.BLOCKS` to adjust the layer of map (code: from bottom to top;biome,decoration) (examples available) | ||
|
||
##Modify existed world | ||
- Open superflat.txt file in your world's folder | ||
- Do like opening parameter.lua file | ||
|
||
#sflat.BLOCKS code's Built-in Preset | ||
Preset | ||
Code | ||
|
||
Example | ||
"node:name_bottom=amount,node:name_top=amount" | ||
Example (+decoration) | ||
"node:name_bottom=amount,node:name_top=amount;Biome,decoration" | ||
|
||
Forest | ||
"superflat:bedrock=1,default:dirt=2,default:dirt_with_grass=1;Forest,decoration" | ||
Default superflat | ||
"superflat:bedrock=1,default:dirt=2,default:dirt_with_grass=1" | ||
Shallow Underground | ||
"superflat:bedrock=1,default:stone=230,default:dirt=5,default:dirt_with_grass=1" | ||
Deep Underground | ||
"superflat:bedrock=1,default:stone=920,default:dirt=10,default:dirt_with_grass=1" | ||
Very Deep Underground | ||
"superflat:bedrock=1,default:stone=3680,default:dirt=15,default:dirt_with_grass=1" | ||
Bottomless Pit | ||
"default:cobble=2,default:dirt=3,default:dirt_with_grass=1" | ||
Shallow Sea | ||
"superflat:bedrock=1,default:dirt=3,default:water_source=5" | ||
Sea | ||
"superflat:bedrock=1,default:dirt=3,default:water_source=10" | ||
Deep Sea | ||
"superflat:bedrock=1,default:dirt=3,default:water_source=20" | ||
Water World | ||
"superflat:bedrock=1,default:dirt=3,default:water_source=60" | ||
Beach | ||
"superflat:bedrock=1,default:sand=3,default:water_source=1" | ||
Desert superflat | ||
"superflat:bedrock=1,default:desert_sand=3" | ||
Farmer's dream | ||
"superflat:bedrock=1,default:water_source=1,farming:soil_wet=1" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters