Descriptions

This commit is contained in:
CocoTheOwner 2021-07-17 20:38:05 +02:00
parent 4eb1117659
commit ffc8a5188d
3 changed files with 7 additions and 2 deletions

View File

@ -26,7 +26,7 @@ public class IrisSapling {
@Desc("List of objects to overwrite saplings with")
private KList<String> replace = new KList<>();
@Desc("The size of the square of saplings this applies to (two means a 2 by 2 sapling area")
@Desc("The size of the square of saplings this applies to (two means a 2 by 2 sapling area)")
@MinNumber(1)
@MaxNumber(4)
private int size = 1;

View File

@ -18,7 +18,12 @@
package com.volmit.iris.engine.object;
import com.volmit.iris.engine.object.annotations.Desc;
@Desc("Terrain modes are used to decide the generator type currently used")
public enum IrisTerrainMode {
@Desc("Normal terrain, similar to the vanilla overworld")
NORMAL,
@Desc("Island terrain, more similar to the end, but endless possibilities!")
ISLANDS
}

View File

@ -20,7 +20,7 @@ package com.volmit.iris.engine.object;
import com.volmit.iris.engine.object.annotations.Desc;
@Desc("A loot mode is used to descrive what to do with the existing loot layers before adding this loot. Using ADD will simply add this table to the building list of tables (i.e. add dimension tables, region tables then biome tables). By using clear or replace, you remove the parent tables before and add just your tables.")
@Desc("A loot mode is used to describe what to do with the existing loot layers before adding this loot. Using ADD will simply add this table to the building list of tables (i.e. add dimension tables, region tables then biome tables). By using clear or replace, you remove the parent tables before and add just your tables.")
public enum LootMode {
@Desc("Add to the existing parent loot tables")