Feature/sandworm, sacks, soulbind (#1710)
* stuff * Create wraptor.json * Update tags.js * fix wool * eggs * Update constants.js * more recipe stuff * doing tooltips the correct way * oops Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com> * oops * eater mixin stuff * add sandworm+dep to pakku * new configs I think * soulbind recipes * thumper * Update main_server_script.js * Update pakku-lock.json * sack configs * Update sns-server.toml * Update sns-server.toml * sack recipes and stuff * Create soulbinding-common.toml * soulbind fix * Update pakku-lock.json Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com> * Update recipes.js * Update recipes.js * Delete EffekseerNativeForJava.dll Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com> * Update .gitignore --------- Signed-off-by: GameStar <56610486+BlueBoat29@users.noreply.github.com>
This commit is contained in:
parent
47b288eea2
commit
d59f73b1ee
16 changed files with 998 additions and 1 deletions
264
defaultconfigs/sns-server.toml
Normal file
264
defaultconfigs/sns-server.toml
Normal file
|
|
@ -0,0 +1,264 @@
|
|||
|
||||
["Container Item Config"]
|
||||
|
||||
["Container Item Config"."Straw Basket"]
|
||||
#Determines if this container will automatically pickup items
|
||||
doPickup = true
|
||||
#Determines if this container can void items on pickup
|
||||
doVoiding = true
|
||||
#Determines if this container can transfer items in an inventory
|
||||
doInventoryTransfer = true
|
||||
#Controls the amount of slots this container has
|
||||
#Range: 1 ~ 27
|
||||
slotCount = 4
|
||||
#Item stack max for the type of container
|
||||
#Range: 1 ~ 512
|
||||
slotCap = 32
|
||||
#The maximum item size allowed in the container
|
||||
#Allowed Values: TINY, VERY_SMALL, SMALL, NORMAL, LARGE, VERY_LARGE, HUGE
|
||||
allowedSize = "SMALL"
|
||||
|
||||
["Container Item Config"."Leather Sack"]
|
||||
#Determines if this container will automatically pickup items
|
||||
doPickup = false
|
||||
#Determines if this container can void items on pickup
|
||||
doVoiding = false
|
||||
#Determines if this container can transfer items in an inventory
|
||||
doInventoryTransfer = true
|
||||
#Controls the amount of slots this container has
|
||||
#Range: 1 ~ 27
|
||||
slotCount = 4
|
||||
#Item stack max for the type of container
|
||||
#Range: 1 ~ 512
|
||||
slotCap = 64
|
||||
#The maximum item size allowed in the container
|
||||
#Allowed Values: TINY, VERY_SMALL, SMALL, NORMAL, LARGE, VERY_LARGE, HUGE
|
||||
allowedSize = "VERY_LARGE"
|
||||
|
||||
["Container Item Config"."Burlap Sack"]
|
||||
#Determines if this container will automatically pickup items
|
||||
doPickup = true
|
||||
#Determines if this container can void items on pickup
|
||||
doVoiding = true
|
||||
#Determines if this container can transfer items in an inventory
|
||||
doInventoryTransfer = false
|
||||
#Controls the amount of slots this container has
|
||||
#Range: 1 ~ 27
|
||||
slotCount = 8
|
||||
#Item stack max for the type of container
|
||||
#Range: 1 ~ 512
|
||||
slotCap = 48
|
||||
#The maximum item size allowed in the container
|
||||
#Allowed Values: TINY, VERY_SMALL, SMALL, NORMAL, LARGE, VERY_LARGE, HUGE
|
||||
allowedSize = "NORMAL"
|
||||
|
||||
["Container Item Config"."Ore Sack"]
|
||||
#Determines if this container will automatically pickup items
|
||||
doPickup = true
|
||||
#Determines if this container can void items on pickup
|
||||
doVoiding = false
|
||||
#Determines if this container can transfer items in an inventory
|
||||
doInventoryTransfer = true
|
||||
#Controls the amount of slots this container has
|
||||
#Range: 1 ~ 27
|
||||
slotCount = 9
|
||||
#Item stack max for the type of container
|
||||
#Range: 1 ~ 512
|
||||
slotCap = 512
|
||||
#The maximum item size allowed in the container
|
||||
#Allowed Values: TINY, VERY_SMALL, SMALL, NORMAL, LARGE, VERY_LARGE, HUGE
|
||||
allowedSize = "SMALL"
|
||||
|
||||
["Container Item Config"."Seed Pouch"]
|
||||
#Determines if this container will automatically pickup items
|
||||
doPickup = true
|
||||
#Determines if this container can void items on pickup
|
||||
doVoiding = false
|
||||
#Determines if this container can transfer items in an inventory
|
||||
doInventoryTransfer = true
|
||||
#Controls the amount of slots this container has
|
||||
#Range: 1 ~ 27
|
||||
slotCount = 27
|
||||
#Item stack max for the type of container
|
||||
#Range: 1 ~ 512
|
||||
slotCap = 64
|
||||
#The maximum item size allowed in the container
|
||||
#Allowed Values: TINY, VERY_SMALL, SMALL, NORMAL, LARGE, VERY_LARGE, HUGE
|
||||
allowedSize = "SMALL"
|
||||
|
||||
["Container Item Config"."Frame Pack"]
|
||||
#Determines if this container will automatically pickup items
|
||||
doPickup = false
|
||||
#Determines if this container can void items on pickup
|
||||
doVoiding = false
|
||||
#Determines if this container can transfer items in an inventory
|
||||
doInventoryTransfer = false
|
||||
#Controls the amount of slots this container has
|
||||
#Range: 1 ~ 27
|
||||
slotCount = 18
|
||||
#Item stack max for the type of container
|
||||
#Range: 1 ~ 512
|
||||
slotCap = 64
|
||||
#The maximum item size allowed in the container
|
||||
#Allowed Values: TINY, VERY_SMALL, SMALL, NORMAL, LARGE, VERY_LARGE, HUGE
|
||||
allowedSize = "VERY_LARGE"
|
||||
|
||||
["Container Item Config"."Lunch Box"]
|
||||
#Determines if this container will automatically pickup items
|
||||
doPickup = false
|
||||
#Determines if this container can void items on pickup
|
||||
doVoiding = false
|
||||
#Determines if this container can transfer items in an inventory
|
||||
doInventoryTransfer = true
|
||||
#Controls the amount of slots this container has
|
||||
#Range: 1 ~ 27
|
||||
slotCount = 8
|
||||
#Item stack max for the type of container
|
||||
#Range: 1 ~ 512
|
||||
slotCap = 4
|
||||
#The maximum item size allowed in the container
|
||||
#Allowed Values: TINY, VERY_SMALL, SMALL, NORMAL, LARGE, VERY_LARGE, HUGE
|
||||
allowedSize = "NORMAL"
|
||||
|
||||
["Container Item Config".Quiver]
|
||||
#Determines if this container will automatically pickup items
|
||||
doPickup = true
|
||||
#Determines if this container can void items on pickup
|
||||
doVoiding = false
|
||||
#Determines if this container can transfer items in an inventory
|
||||
doInventoryTransfer = false
|
||||
#Controls the amount of slots this container has
|
||||
#Range: 1 ~ 27
|
||||
slotCount = 8
|
||||
#Item stack max for the type of container
|
||||
#Range: 1 ~ 512
|
||||
slotCap = 32
|
||||
#The maximum item size allowed in the container
|
||||
#Allowed Values: TINY, VERY_SMALL, SMALL, NORMAL, LARGE, VERY_LARGE, HUGE
|
||||
allowedSize = "VERY_LARGE"
|
||||
|
||||
["Boot config"]
|
||||
#The amount of steps taken before one point of durability is lost
|
||||
#Range: > 0
|
||||
bootsStepPerDamage = 500
|
||||
|
||||
["Boot config"."Hiking Boots"]
|
||||
#The movement speed bonus these boots provide
|
||||
#Range: 0.0 ~ 1024.0
|
||||
movementSpeed = 0.05
|
||||
#The step height bonus these boots provide
|
||||
#Range: 0.0 ~ 512.0
|
||||
stepHeight = 0.0
|
||||
#The extra fall distance in blocks before you begin taking fall damage
|
||||
#Range: 0.0 ~ 64.0
|
||||
fallPadding = 0.5
|
||||
|
||||
["Boot config"."Steel Toe Boots"]
|
||||
#The movement speed bonus these boots provide
|
||||
#Range: 0.0 ~ 1024.0
|
||||
movementSpeed = 0.1
|
||||
#The step height bonus these boots provide
|
||||
#Range: 0.0 ~ 512.0
|
||||
stepHeight = 0.5
|
||||
#The extra fall distance in blocks before you begin taking fall damage
|
||||
#Range: 0.0 ~ 64.0
|
||||
fallPadding = 1.0
|
||||
|
||||
["Boot config"."Black Steel Toe Boots"]
|
||||
#The movement speed bonus these boots provide
|
||||
#Range: 0.0 ~ 1024.0
|
||||
movementSpeed = 0.15
|
||||
#The step height bonus these boots provide
|
||||
#Range: 0.0 ~ 512.0
|
||||
stepHeight = 0.5
|
||||
#The extra fall distance in blocks before you begin taking fall damage
|
||||
#Range: 0.0 ~ 64.0
|
||||
fallPadding = 2.0
|
||||
|
||||
["Boot config"."Blue Steel Toe Boots"]
|
||||
#The movement speed bonus these boots provide
|
||||
#Range: 0.0 ~ 1024.0
|
||||
movementSpeed = 0.2
|
||||
#The step height bonus these boots provide
|
||||
#Range: 0.0 ~ 512.0
|
||||
stepHeight = 0.5
|
||||
#The extra fall distance in blocks before you begin taking fall damage
|
||||
#Range: 0.0 ~ 64.0
|
||||
fallPadding = 5.0
|
||||
|
||||
["Boot config"."Red Steel Toe Boots"]
|
||||
#The movement speed bonus these boots provide
|
||||
#Range: 0.0 ~ 1024.0
|
||||
movementSpeed = 0.2
|
||||
#The step height bonus these boots provide
|
||||
#Range: 0.0 ~ 512.0
|
||||
stepHeight = 0.5
|
||||
#The extra fall distance in blocks before you begin taking fall damage
|
||||
#Range: 0.0 ~ 64.0
|
||||
fallPadding = 5.0
|
||||
|
||||
["Horseshoes config"]
|
||||
#The amount of steps taken before one point of durability is lost
|
||||
#Range: > 0
|
||||
horseshoesStepsPerDamage = 500
|
||||
|
||||
["Horseshoes config"."Steel Horseshoes"]
|
||||
#The movement speed bonus horseshoes provide
|
||||
#Range: 0.0 ~ 1024.0
|
||||
movementSpeed = 0.05
|
||||
#The fall distance bonus horseshoes provide
|
||||
#Range: 0.0 ~ 64.0
|
||||
bonusFallDistance = 2.0
|
||||
#The step height bonus these horseshoes provide
|
||||
#Range: 0.0 ~ 512.0
|
||||
stepHeightBonus = 0.0
|
||||
|
||||
["Horseshoes config"."Black Steel Horseshoes"]
|
||||
#The movement speed bonus horseshoes provide
|
||||
#Range: 0.0 ~ 1024.0
|
||||
movementSpeed = 0.1
|
||||
#The fall distance bonus horseshoes provide
|
||||
#Range: 0.0 ~ 64.0
|
||||
bonusFallDistance = 2.0
|
||||
#The step height bonus these horseshoes provide
|
||||
#Range: 0.0 ~ 512.0
|
||||
stepHeightBonus = 0.0
|
||||
|
||||
["Horseshoes config"."Blue Steel Horseshoes"]
|
||||
#The movement speed bonus horseshoes provide
|
||||
#Range: 0.0 ~ 1024.0
|
||||
movementSpeed = 0.2
|
||||
#The fall distance bonus horseshoes provide
|
||||
#Range: 0.0 ~ 64.0
|
||||
bonusFallDistance = 5.0
|
||||
#The step height bonus these horseshoes provide
|
||||
#Range: 0.0 ~ 512.0
|
||||
stepHeightBonus = 1.0
|
||||
|
||||
["Horseshoes config"."Red Steel Horseshoes"]
|
||||
#The movement speed bonus horseshoes provide
|
||||
#Range: 0.0 ~ 1024.0
|
||||
movementSpeed = 0.2
|
||||
#The fall distance bonus horseshoes provide
|
||||
#Range: 0.0 ~ 64.0
|
||||
bonusFallDistance = 5.0
|
||||
#The step height bonus these horseshoes provide
|
||||
#Range: 0.0 ~ 512.0
|
||||
stepHeightBonus = 1.0
|
||||
|
||||
["Global config"]
|
||||
#Global control for automatic pickup, this will not force enable for every type
|
||||
doPickup = true
|
||||
#A global toggle for item voiding, this will not force enable for every type
|
||||
doVoiding = true
|
||||
#This allows other containers such as vessels to support the pick block search
|
||||
allPickBlock = false
|
||||
#This allows containers to have items inserted and extracted from them via the inventory like vanilla Bundles
|
||||
enableContainerInventoryInteraction = true
|
||||
#The modifier for the 'Lunchbox' food trait. Values less than 1 extend food lifetime, values greater than one decrease it. A value of zero stops decay.
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
traitLunchboxModifier = 0.6
|
||||
#The maximum size of an entity which mob nets can capture. This is not directly related to TFC's animal size stat.
|
||||
#Range: 0.0 ~ 1.7976931348623157E308
|
||||
maximumNetCaptureSize = 0.5
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue