Configuration EpicWorldGenerator

Pungle_

@Pungle_
28 Octobre 2013
2 370
457
247
25
Hello,
Je viens ici car je recherche quelqu'un qui pourrait m'aider à configurer le Plugin EpicWorldGenerator
Comment modifier les biomes, ect.
Je voulais savoir aussi si il pourrait entrer en relation avec d'autres plugins du même type (Nordic, TerrainControl).
Si vous pouvez m'aider, contactez-moi sur Skype (MrPungle).
J'aimerai surtout savoir comment modifier la génération de manière approfondie. :)
 

Pungle_

@Pungle_
28 Octobre 2013
2 370
457
247
25
En fait j'ai juste un problème,
En gros je sais comment m'en servir à peu près, mais en sous-sol il n'y a aucun minerai, que de la Stone, partout, alors que dans les presets, il y'a des minerais normalement.
 

Pungle_

@Pungle_
28 Octobre 2013
2 370
457
247
25
C'est assez bizarre à Config.. x)
Dans la config du Dossier Plugins :
Code:
 settings.json
{
  "worldsWithDefaultWG": [
    "myvanillaworld"
  ]
}

Après, un dossier Settings se met dans les fichiers de World, donc il y'a ça :
Code:
world-settings.yml
{
  "pluginVersion": "7.0.0BETA",
  "defaultForEnvironment": false,
  "useLavaOceans": false,
  "useFastOres": false,
  "useOpenSimplexNoise": true,
  "useFastRandomAlgorithm": true,
  "overrideSaplings": true,
  "plain17Map": false,
  "roughFading": true,
  "flatBedrock": false,
  "seaLevel": 55,
  "bedrockLevel": 1,
  "mineshaftChance": 0.01,
  "biomeTypeSize": 800.0,
  "biomeSize": 600.0,
  "flatAreas": [
    {
      "radius": 70,
      "xLocation": 0,
      "zLocation": 0,
      "baseLevel": 60,
      "outerRadius": 40
    }
  ],
  "biomeTypes": {
    "DESERT": {
      "enabled": true,
      "percentage": 0.14285714285714285
    },
    "AQUATIC": {
      "enabled": true,
      "percentage": 0.07142857142857142
    },
    "GRASSLAND": {
      "enabled": true,
      "percentage": 0.2857142857142857
    },
    "FOREST": {
      "enabled": true,
      "percentage": 0.5
    },
    "TUNDRA": {
      "enabled": false,
      "percentage": 0.0
    }
  }
}

Et après il y'a un fichier avec tous les biomes de base, par exemple, la forêt de Bonsai :

Code:
Bonsai Forest.yml
{
  "enabled": true,
  "biomeType": "GRASSLAND",
  "useDungeons": true,
  "dungeonChance": 8,
  "useMineShafts": true,
  "useStrongholds": true,
  "useVillages": true,
  "useTemples": false,
  "useNetherFortress": false,
  "useCaves": true,
  "useMonuments": true,
  "useRavines": true,
  "useWaterLakes": true,
  "useLavaLakes": false,
  "useNativePainting": false,
  "useNativeStructure": false,
  "lavaLakeChance": 80,
  "waterLakeChance": 4,
  "ores": [
    {
      "type": "DIRT",
      "data": 0,
      "size": 33,
      "count": 10,
      "minHeight": 0,
      "maxHeight": 256
    },
    {
      "type": "GRAVEL",
      "data": 0,
      "size": 33,
      "count": 8,
      "minHeight": 0,
      "maxHeight": 256
    },
    {
      "type": "STONE",
      "data": 1,
      "size": 33,
      "count": 10,
      "minHeight": 0,
      "maxHeight": 80
    },
    {
      "type": "STONE",
      "data": 3,
      "size": 33,
      "count": 10,
      "minHeight": 0,
      "maxHeight": 80
    },
    {
      "type": "STONE",
      "data": 5,
      "size": 33,
      "count": 10,
      "minHeight": 0,
      "maxHeight": 80
    },
    {
      "type": "COAL_ORE",
      "data": 0,
      "size": 17,
      "count": 20,
      "minHeight": 0,
      "maxHeight": 128
    },
    {
      "type": "IRON_ORE",
      "data": 0,
      "size": 9,
      "count": 20,
      "minHeight": 0,
      "maxHeight": 64
    },
    {
      "type": "GOLD_ORE",
      "data": 0,
      "size": 9,
      "count": 2,
      "minHeight": 0,
      "maxHeight": 32
    },
    {
      "type": "REDSTONE_ORE",
      "data": 0,
      "size": 8,
      "count": 8,
      "minHeight": 0,
      "maxHeight": 16
    },
    {
      "type": "DIAMOND_ORE",
      "data": 0,
      "size": 8,
      "count": 1,
      "minHeight": 0,
      "maxHeight": 16
    },
    {
      "type": "LAPIS_ORE",
      "data": 0,
      "size": 7,
      "count": 1,
      "minHeight": 0,
      "maxHeight": 32
    },
    {
      "type": "EMERALD_ORE",
      "data": 0,
      "size": 4,
      "count": 2,
      "minHeight": 4,
      "maxHeight": 32
    }
  ],
  "terrainSettings": {
    "subTerrains": [
      {
        "provider": "EWG",
        "name": "Bonsai Forest",
        "xModifier": 1.0,
        "yModifer": 1.0,
        "zModifer": 1.0,
        "yOffset": 0
      }
    ]
  },
  "overlaySettings": {
    "spawnLillypads": false,
    "spawnCactus": false,
    "spawnSnowLayers": false,
    "spawnIceOnWater": false,
    "minRiver": 2.0,
    "groundDepth": 4,
    "surfaceDepth": 1,
    "surfaceBlocks": [
      [
        [
          {
            "type": "STAINED_CLAY",
            "data": 9,
            "inclinationsConditions": [
              {
                "minInclination": 2.3,
                "maxInclination": 99.0
              }
            ]
          },
          1.0
        ]
      ],
      [
        [
          {
            "type": "STONE",
            "data": 0,
            "inclinationsConditions": [
              {
                "minInclination": 1.3,
                "maxInclination": 1.7
              }
            ]
          },
          0.4
        ],
        [
          {
            "type": "COBBLESTONE",
            "data": 0,
            "inclinationsConditions": [
              {
                "minInclination": 1.3,
                "maxInclination": 1.7
              }
            ]
          },
          0.3
        ],
        [
          {
            "type": "STONE",
            "data": 5,
            "inclinationsConditions": [
              {
                "minInclination": 1.3,
                "maxInclination": 1.7
              }
            ]
          },
          0.3
        ]
      ],
      [
        [
          {
            "type": "GRASS",
            "data": 0
          },
          1.0
        ]
      ]
    ],
    "oceanBlocks": [],
    "groundBlocks": [
      [
        [
          {
            "type": "STAINED_CLAY",
            "data": 9,
            "inclinationsConditions": [
              {
                "minInclination": 2.3,
                "maxInclination": 99.0
              }
            ]
          },
          1.0
        ]
      ],
      [
        [
          {
            "type": "STONE",
            "data": 0,
            "inclinationsConditions": [
              {
                "minInclination": 1.3,
                "maxInclination": 1.7
              }
            ]
          },
          0.4
        ],
        [
          {
            "type": "COBBLESTONE",
            "data": 0,
            "inclinationsConditions": [
              {
                "minInclination": 1.3,
                "maxInclination": 1.7
              }
            ]
          },
          0.3
        ],
        [
          {
            "type": "STONE",
            "data": 5,
            "inclinationsConditions": [
              {
                "minInclination": 1.3,
                "maxInclination": 1.7
              }
            ]
          },
          0.3
        ]
      ],
      [
        [
          {
            "type": "DIRT",
            "data": 0
          },
          0.8
        ],
        [
          {
            "type": "COBBLESTONE",
            "data": 0
          },
          0.2
        ]
      ]
    ],
    "beachBlocks": [
      [
        [
          {
            "type": "SAND",
            "data": 0,
            "heightConditions": [
              {
                "minHeight": 0,
                "maxHeight": 53
              }
            ]
          },
          1.0
        ]
      ],
      [
        [
          {
            "type": "SAND",
            "data": 0,
            "inclinationsConditions": [
              {
                "minInclination": 0.0,
                "maxInclination": 0.5
              }
            ]
          },
          1.0
        ]
      ]
    ],
    "slabBlocks": [],
    "stairBlocks": [],
    "plantBlocks": [
      {},
      {},
      [
        [
          {
            "type": "SUGAR_CANE_BLOCK",
            "data": 0,
            "heightConditions": [
              {
                "minHeight": 54,
                "maxHeight": 54
              }
            ]
          },
          0.1
        ],
        [
          {
            "type": "LONG_GRASS",
            "data": 1,
            "inclinationsConditions": [
              {
                "minInclination": 0.0,
                "maxInclination": 1.7
              }
            ]
          },
          0.25
        ],
        [
          {
            "type": "DOUBLE_PLANT",
            "data": 0,
            "inclinationsConditions": [
              {
                "minInclination": 0.0,
                "maxInclination": 1.7
              }
            ]
          },
          0.001
        ],
        [
          {
            "type": "DOUBLE_PLANT",
            "data": 1,
            "inclinationsConditions": [
              {
                "minInclination": 0.0,
                "maxInclination": 1.7
              }
            ]
          },
          0.001
        ],
        [
          {
            "type": "DOUBLE_PLANT",
            "data": 2,
            "inclinationsConditions": [
              {
                "minInclination": 0.0,
                "maxInclination": 1.7
              }
            ]
          },
          0.001
        ],
        [
          {
            "type": "DOUBLE_PLANT",
            "data": 3,
            "inclinationsConditions": [
              {
                "minInclination": 0.0,
                "maxInclination": 1.7
              }
            ]
          },
          0.001
        ],
        [
          {
            "type": "DOUBLE_PLANT",
            "data": 4,
            "inclinationsConditions": [
              {
                "minInclination": 0.0,
                "maxInclination": 1.7
              }
            ]
          },
          0.001
        ],
        [
          {
            "type": "DOUBLE_PLANT",
            "data": 5,
            "inclinationsConditions": [
              {
                "minInclination": 0.0,
                "maxInclination": 1.7
              }
            ]
          },
          0.001
        ],
        [
          {
            "type": "RED_ROSE",
            "data": 0,
            "inclinationsConditions": [
              {
                "minInclination": 0.0,
                "maxInclination": 1.7
              }
            ]
          },
          0.001
        ],
        [
          {
            "type": "YELLOW_FLOWER",
            "data": 0,
            "inclinationsConditions": [
              {
                "minInclination": 0.0,
                "maxInclination": 1.7
              }
            ]
          },
          0.001
        ],
        [
          {
            "type": "RED_ROSE",
            "data": 1,
            "inclinationsConditions": [
              {
                "minInclination": 0.0,
                "maxInclination": 1.7
              }
            ]
          },
          0.001
        ],
        [
          {
            "type": "RED_ROSE",
            "data": 2,
            "inclinationsConditions": [
              {
                "minInclination": 0.0,
                "maxInclination": 1.7
              }
            ]
          },
          0.001
        ],
        [
          {
            "type": "RED_ROSE",
            "data": 3,
            "inclinationsConditions": [
              {
                "minInclination": 0.0,
                "maxInclination": 1.7
              }
            ]
          },
          0.001
        ],
        [
          {
            "type": "RED_ROSE",
            "data": 4,
            "inclinationsConditions": [
              {
                "minInclination": 0.0,
                "maxInclination": 1.7
              }
            ]
          },
          0.001
        ],
        [
          {
            "type": "RED_ROSE",
            "data": 5,
            "inclinationsConditions": [
              {
                "minInclination": 0.0,
                "maxInclination": 1.7
              }
            ]
          },
          0.001
        ],
        [
          {
            "type": "RED_ROSE",
            "data": 6,
            "inclinationsConditions": [
              {
                "minInclination": 0.0,
                "maxInclination": 1.7
              }
            ]
          },
          0.001
        ],
        [
          {
            "type": "RED_ROSE",
            "data": 7,
            "inclinationsConditions": [
              {
                "minInclination": 0.0,
                "maxInclination": 1.7
              }
            ]
          },
          0.001
        ],
        [
          {
            "type": "RED_ROSE",
            "data": 8,
            "inclinationsConditions": [
              {
                "minInclination": 0.0,
                "maxInclination": 1.7
              }
            ]
          },
          0.001
        ]
      ],
      {},
      [
        [
          {
            "type": "DOUBLE_PLANT",
            "data": 2
          },
          0.001953125
        ]
      ]
    ],
    "riverBlocks": []
  },
  "customTrees": [
    {
      "name": "TREES_bonsai_tiny",
      "density": 7.142857142857143E-4,
      "size": "MEDIUM",
      "type": "TREES",
      "blocksRequiredUnderneath": [
        "GRASS"
      ],
      "blacklistedDecoBlocks": [],
      "spawnIndepend": false,
      "spawnOnGround": true,
      "overrideExsistingBlocks": false,
      "allowRotation": true,
      "applyPhysics": true,
      "applyAir": false,
      "fixFlyingRoots": true,
      "minY": 55,
      "maxY": 113,
      "maxSlope": 0.7,
      "minSlope": 0.0
    },
    {
      "name": "TREES_bonsai_big",
      "density": 7.142857142857143E-4,
      "size": "MEDIUM",
      "type": "TREES",
      "blocksRequiredUnderneath": [
        "GRASS"
      ],
      "blacklistedDecoBlocks": [],
      "spawnIndepend": false,
      "spawnOnGround": true,
      "overrideExsistingBlocks": false,
      "allowRotation": true,
      "applyPhysics": true,
      "applyAir": false,
      "fixFlyingRoots": true,
      "minY": 55,
      "maxY": 113,
      "maxSlope": 0.7,
      "minSlope": 0.0
    },
    {
      "name": "TREES_bonsai_big_2",
      "density": 7.142857142857143E-4,
      "size": "MEDIUM",
      "type": "TREES",
      "blocksRequiredUnderneath": [
        "GRASS"
      ],
      "blacklistedDecoBlocks": [],
      "spawnIndepend": false,
      "spawnOnGround": true,
      "overrideExsistingBlocks": false,
      "allowRotation": true,
      "applyPhysics": true,
      "applyAir": false,
      "fixFlyingRoots": true,
      "minY": 55,
      "maxY": 113,
      "maxSlope": 0.7,
      "minSlope": 0.0
    },
    {
      "name": "TREES_bonsai_huge",
      "density": 7.142857142857143E-4,
      "size": "MEDIUM",
      "type": "TREES",
      "blocksRequiredUnderneath": [
        "GRASS"
      ],
      "blacklistedDecoBlocks": [],
      "spawnIndepend": false,
      "spawnOnGround": true,
      "overrideExsistingBlocks": false,
      "allowRotation": true,
      "applyPhysics": true,
      "applyAir": false,
      "fixFlyingRoots": true,
      "minY": 55,
      "maxY": 113,
      "maxSlope": 0.7,
      "minSlope": 0.0
    },
    {
      "name": "TREES_bonsai_medium_2",
      "density": 7.142857142857143E-4,
      "size": "MEDIUM",
      "type": "TREES",
      "blocksRequiredUnderneath": [
        "GRASS"
      ],
      "blacklistedDecoBlocks": [],
      "spawnIndepend": false,
      "spawnOnGround": true,
      "overrideExsistingBlocks": false,
      "allowRotation": true,
      "applyPhysics": true,
      "applyAir": false,
      "fixFlyingRoots": true,
      "minY": 55,
      "maxY": 113,
      "maxSlope": 0.7,
      "minSlope": 0.0
    },
    {
      "name": "TREES_bonsai_normal_2",
      "density": 7.142857142857143E-4,
      "size": "MEDIUM",
      "type": "TREES",
      "blocksRequiredUnderneath": [
        "GRASS"
      ],
      "blacklistedDecoBlocks": [],
      "spawnIndepend": false,
      "spawnOnGround": true,
      "overrideExsistingBlocks": false,
      "allowRotation": true,
      "applyPhysics": true,
      "applyAir": false,
      "fixFlyingRoots": true,
      "minY": 55,
      "maxY": 113,
      "maxSlope": 0.7,
      "minSlope": 0.0
    },
    {
      "name": "TREES_bonsai_big_3",
      "density": 7.142857142857143E-4,
      "size": "MEDIUM",
      "type": "TREES",
      "blocksRequiredUnderneath": [
        "GRASS"
      ],
      "blacklistedDecoBlocks": [],
      "spawnIndepend": false,
      "spawnOnGround": true,
      "overrideExsistingBlocks": false,
      "allowRotation": true,
      "applyPhysics": true,
      "applyAir": false,
      "fixFlyingRoots": true,
      "minY": 55,
      "maxY": 113,
      "maxSlope": 0.7,
      "minSlope": 0.0
    },
    {
      "name": "TREES_bonsai_medium",
      "density": 7.142857142857143E-4,
      "size": "MEDIUM",
      "type": "TREES",
      "blocksRequiredUnderneath": [
        "GRASS"
      ],
      "blacklistedDecoBlocks": [],
      "spawnIndepend": false,
      "spawnOnGround": true,
      "overrideExsistingBlocks": false,
      "allowRotation": true,
      "applyPhysics": true,
      "applyAir": false,
      "fixFlyingRoots": true,
      "minY": 55,
      "maxY": 113,
      "maxSlope": 0.7,
      "minSlope": 0.0
    },
    {
      "name": "TREES_bonsai_small",
      "density": 7.142857142857143E-4,
      "size": "MEDIUM",
      "type": "TREES",
      "blocksRequiredUnderneath": [
        "GRASS"
      ],
      "blacklistedDecoBlocks": [],
      "spawnIndepend": false,
      "spawnOnGround": true,
      "overrideExsistingBlocks": false,
      "allowRotation": true,
      "applyPhysics": true,
      "applyAir": false,
      "fixFlyingRoots": true,
      "minY": 55,
      "maxY": 113,
      "maxSlope": 0.7,
      "minSlope": 0.0
    },
    {
      "name": "TREES_bonsai_normal",
      "density": 7.142857142857143E-4,
      "size": "MEDIUM",
      "type": "TREES",
      "blocksRequiredUnderneath": [
        "GRASS"
      ],
      "blacklistedDecoBlocks": [],
      "spawnIndepend": false,
      "spawnOnGround": true,
      "overrideExsistingBlocks": false,
      "allowRotation": true,
      "applyPhysics": true,
      "applyAir": false,
      "fixFlyingRoots": true,
      "minY": 55,
      "maxY": 113,
      "maxSlope": 0.7,
      "minSlope": 0.0
    }
  ],
  "customStructures": [
    {
      "name": "forest",
      "density": 3.333333333333333E-4,
      "size": "MEDIUM",
      "type": "DECO",
      "blocksRequiredUnderneath": [
        "GRASS"
      ],
      "blacklistedDecoBlocks": [],
      "spawnIndepend": false,
      "spawnOnGround": true,
      "overrideExsistingBlocks": false,
      "allowRotation": false,
      "applyPhysics": true,
      "applyAir": true,
      "fixFlyingRoots": false,
      "minY": 60,
      "maxY": 100,
      "maxSlope": 0.0,
      "minSlope": 0.0
    }
  ],
  "maxEWGObjectsPerChunk": 4,
  "xNoiseModifier": 1.2,
  "yNoiseModifier": 0.8,
  "zNoiseModifier": 1.2,
  "lakeDepth": 0.0,
  "baseHeight": 60,
  "nativeBiomes": [
    {
      "nativeBiome": "FOREST_HILLS",
      "chance": 0.8
    },
    {
      "nativeBiome": "FOREST",
      "chance": 0.2
    }
  ],
  "entitySettings": {},
  "groundMaterials": [
    {
      "material": "STONE",
      "data": 0,
      "chance": 1.0
    }
  ]
}

Voilà pour la config, si tu vois où ça coince dis-le moi :/
L'aide est ici : http://discuss.dynamic-bytes.com XD
 

Pungle_

@Pungle_
28 Octobre 2013
2 370
457
247
25
le Data en gros c'est si par exemple, en material, si tu veux un autre sorte de bois, tu vas mettre "Wood" en material, et 3 en "data" pour avoir le bois 17:3.
Enfin, c'est ce qu'il y'a de marqué dans les Docs.