Skip to content

Commit

Permalink
3droads: Fix sideopaque, change sounds
Browse files Browse the repository at this point in the history
  • Loading branch information
Novocain1 committed Nov 13, 2018
1 parent 35cb512 commit 24d03d6
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 41 deletions.
Binary file modified bin/TheNeolithicMod/Neolithic.dll
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,43 +1,49 @@
{
code: "3droad",
variantgroups: [
{ loadFromProperties: "block/rock" },
{
code: "pattern",
states: [ "square", ]
}
],
drawtype: "json",
creativeinventory: {
"general": [ "*" ],
"neolithicdeco": [ "*" ]
},
shapeByType: {
"*-square": { base: "block/road/road-cobble-square" },
},
blockmaterial: "Stone",
replaceable: 900,
lightAbsorption: 99,
textures: {
top: { base: "game:block/stone/roads/roman/{pattern}-{rock}" },
sides: { base: "game:block/stone/gravel/{rock}" },
},
resistance: 3,
walkspeedmultiplier: 1.25,
sideopaque: {
all: true
},
sidesolid: {
all: true
},
collisionSelectionBoxbytype: {
"*-normal": {
x1: 0,
y1: 0,
z1: 0,
x2: 1,
y2: 1,
z2: 1
},
}
code: "3droad",
variantgroups: [
{ loadFromProperties: "block/rock" },
{
code: "pattern",
states: [ "square", ]
}
],
drawtype: "json",
creativeinventory: {
"general": [ "*" ],
"neolithicdeco": [ "*" ]
},
shapeByType: {
"*-square": { base: "block/road/road-cobble-square" },
},
blockmaterial: "Stone",
replaceable: 900,
lightAbsorption: 99,
behaviors: [ { name: "UnstableFalling" } ],
sounds: {
walk: "game:walk/stone",
place: "game:block/gravel",
break: "game:block/rock-break-pickaxe",
},
textures: {
top: { base: "game:block/stone/roads/roman/{pattern}-{rock}" },
sides: { base: "game:block/stone/gravel/{rock}" },
},
resistance: 3,
walkspeedmultiplier: 1.25,
sideopaque: {
all: false
},
sidesolid: {
all: true
},
collisionSelectionBoxbytype: {
"*-normal": {
x1: 0,
y1: 0,
z1: 0,
x2: 1,
y2: 1,
z2: 1
},
}
}

0 comments on commit 24d03d6

Please sign in to comment.