static rocks
Some checks failed
studiorailgun/Renderer/pipeline/head There was a failure building this commit

This commit is contained in:
austin 2025-04-04 19:45:44 -04:00
parent a530a7242a
commit 1a244f2590
4 changed files with 58 additions and 1 deletions

View File

@ -4,6 +4,7 @@
"files" : [
"Data/entity/foliage/grass.json",
"Data/entity/foliage/trees.json",
"Data/entity/foliage/bushes.json"
"Data/entity/foliage/bushes.json",
"Data/entity/foliage/rocks.json"
]
}

View File

@ -0,0 +1,46 @@
{
"foliageList" : [
{
"id" : "rock_static",
"tokens" : [
],
"buttonInteraction" : {
"onInteract" : "harvest",
"interactionShape" : {
"type" : "CUBE",
"dimension1" : 0.3,
"dimension2" : 0.3,
"dimension3" : 0.3,
"rotX": 0,
"rotY": 0,
"rotZ": 0,
"rotW": 1,
"offsetX" : 0.0,
"offsetY" : 0.1,
"offsetZ" : 0.0
}
},
"healthSystem" : {
"maxHealth" : 1,
"onDamageIFrames" : 0,
"lootPool" : {
"tickets" : [
{
"itemId" : "Rock",
"rarity" : 1.0,
"minQuantity" : 1,
"maxQuantity" : 1
}
]
}
},
"graphicsTemplate": {
"model": {
"path" : "Models/items/materials/rock1.glb"
}
}
}
],
"files" : [
]
}

View File

@ -96,6 +96,15 @@
"threshold": 0.05,
"scale": 0.5,
"priority": 1.0
},
{
"entityIDs": [
"rock_static"
],
"regularity": 0.6,
"threshold": 0.04,
"scale": 0.5,
"priority": 1.0
}
]
}

View File

@ -1445,6 +1445,7 @@ Recursive recipe data files
ServerEntityUtils recursive move function potential bugfix
Harvest bushes kills them
Fix harvest interaction targeting client player entity on server side
Static rocks which harvest into rock items that spawn in forest