Cobalt textures added

This commit is contained in:
zontreck 2024-12-22 20:41:18 -07:00
parent f47eb80677
commit a21fa315a6
8 changed files with 239 additions and 0 deletions

View file

@ -0,0 +1,7 @@
{
"block-looseores-cobalt-*": "Cobalt ore bits",
"ore-cobalt": "Cobalt",
"block-ore-*-cobalt-*": "Cobalt Ore",
"item-nugget-cobalt": "Nugget of Cobalt",
"ingot-cobalt": "Cobalt Ingot"
}

View file

@ -0,0 +1,178 @@
[
{
"op": "add",
"path": "/allowedVariants/-",
"value": "ore-poor-cobalt-limestone",
"file": "blocktypes/stone/ore-graded.json"
},
{
"op": "add",
"path": "/allowedVariants/-",
"value": "ore-medium-cobalt-limestone",
"file": "blocktypes/stone/ore-graded.json"
},
{
"op": "add",
"path": "/allowedVariants/-",
"value": "ore-rich-cobalt-limestone",
"file": "blocktypes/stone/ore-graded.json"
},
{
"op": "add",
"path": "/allowedVariants/-",
"value": "ore-bountiful-cobalt-limestone",
"file": "blocktypes/stone/ore-graded.json"
},
{
"op": "add",
"path": "/allowedVariants/-",
"value": "ore-poor-cobalt-chalk",
"file": "blocktypes/stone/ore-graded.json"
},
{
"op": "add",
"path": "/allowedVariants/-",
"value": "ore-medium-cobalt-chalk",
"file": "blocktypes/stone/ore-graded.json"
},
{
"op":"add",
"path": "/allowedVariants/-",
"value": "crystalizedore-poor-cobalt-limestone",
"file": "itemtypes/resource/crystalizedore-graded.json"
},
{
"op":"add",
"path": "/allowedVariants/-",
"value": "crystalizedore-medium-cobalt-limestone",
"file": "itemtypes/resource/crystalizedore-graded.json"
},
{
"op":"add",
"path": "/allowedVariants/-",
"value": "crystalizedore-rich-cobalt-limestone",
"file": "itemtypes/resource/crystalizedore-graded.json"
},
{
"op":"add",
"path": "/allowedVariants/-",
"value": "crystalizedore-bountiful-cobalt-limestone",
"file": "itemtypes/resource/crystalizedore-graded.json"
},
{
"op":"add",
"path": "/allowedVariants/-",
"value": "crystalizedore-poor-cobalt-chalk",
"file": "itemtypes/resource/crystalizedore-graded.json"
},
{
"op":"add",
"path": "/allowedVariants/-",
"value": "crystalizedore-medium-cobalt-chalk",
"file": "itemtypes/resource/crystalizedore-graded.json"
},
{
"op": "add",
"path": "/requiredMiningTierByType/ore-*-cobalt-*",
"value": 4,
"file": "blocktypes/stone/ore-graded.json"
},
{
"op": "add",
"path": "/variants/-",
"value": {
"Code": "cobalt"
},
"file": "worldproperties/block/ore-graded.json"
},
{
"op": "add",
"path": "/variants/-",
"value": {
"Code": "cobalt"
},
"file": "worldproperties/block/ore-nugget.json"
},
{
"op": "add",
"path": "/allowedVariants/-",
"value": "ore-poor-cobalt-limestone",
"file": "itemtypes/resource/ore-graded.json"
},
{
"op": "add",
"path": "/allowedVariants/-",
"value": "ore-medium-cobalt-limestone",
"file": "itemtypes/resource/ore-graded.json"
},
{
"op": "add",
"path": "/allowedVariants/-",
"value": "ore-rich-cobalt-limestone",
"file": "itemtypes/resource/ore-graded.json"
},
{
"op": "add",
"path": "/allowedVariants/-",
"value": "ore-bountiful-cobalt-limestone",
"file": "itemtypes/resource/ore-graded.json"
},
{
"op": "add",
"path": "/allowedVariants/-",
"value": "looseores-cobalt-limestone-free",
"file": "blocktypes/stone/looseores.json"
},
{
"op": "add",
"path": "combustiblePropsByType/*-cobalt",
"value": {
"meltingPoint": 1100,
"meltingDuration": 30,
"smeltedRatio": 20,
"smeltedStack": {
"type": "item",
"code": "ingot-cobalt"
}
},
"file": "itemtypes/resource/nugget.json"
},
{
"op": "add",
"path": "/attributes/pigmentByType/*-cobalt",
"value": {
"name": "Cobalt",
"color": {
"red": 0,
"green": 0,
"blue": 150
}
},
"file": "itemtypes/resource/nugget.json"
}
]

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

View file

@ -0,0 +1,54 @@
[
{
"code": "cobalt",
"triesPerChunk": 16,
"withOreMap": true,
"handbookPageCode": "item-nugget-cobalt",
"generator": "disc-followsurface",
"attributes": {
"inblock": {
"code": "rock-*",
"name": "rock",
"allowedVariants": [
"limestone",
"chalk",
"granite",
"andesite",
"basalt",
"slate"
]
},
"placeblock": {
"code": "ore-*-cobalt-{rock}",
"name": "grade",
"allowedVariantsByInBlock": {
"rock-limestone": ["poor", "medium", "rich", "bountiful"],
"rock-chalk": ["poor", "medium"],
"rock-granite": ["rich", "bountiful"],
"rock-andesite": ["medium", "rich"],
"rock-basalt": ["rich", "bountiful"],
"rock-slate": ["poor", "medium"]
}
},
"surfaceBlock": {
"code": "looseores-cobalt-{rock}-free"
},
"surfaceBlockChance": 0.75,
"radius": {
"dist": "uniform",
"avg": 16,
"var": 4
},
"yPosRel": {
"dist": "uniform",
"avg": 0.5,
"var": 0.45
},
"thickness": {
"dist": "stronginvexp",
"avg": 3,
"var": 1
}
}
}
]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB