Моды по запросам, тулбелт + квесты

This commit is contained in:
SpeeeDCraft 2023-11-20 08:03:00 +07:00
parent f5e2441f32
commit b7bde283be
12 changed files with 150 additions and 90 deletions

View file

@ -1,3 +0,0 @@
Main
first_group
second_group

View file

@ -1,37 +0,0 @@
{
"dependencies": [],
"tasks": {},
"rewards": {},
"display": {
"subtitle": {
"text": ""
},
"description": [],
"groups": {
"first_group": {
"position": [
-197,
-119
]
}
},
"icon": {
"item": {
"id": "minecraft:map",
"count": 1
},
"type": "heracles:item"
},
"icon_background": "heracles:textures/gui/quest_backgrounds/default.png",
"title": {
"translate": "asdas"
}
},
"settings": {
"unlockNotification": false,
"showDependencyArrow": true,
"repeatable": false,
"individual_progress": false,
"hidden": "LOCKED"
}
}

View file

@ -1,41 +0,0 @@
{
"dependencies": [
"asdas"
],
"tasks": {},
"rewards": {},
"display": {
"subtitle": {
"translate": "asdasd"
},
"description": [
""
],
"groups": {
"first_group": {
"position": [
-259,
-120
]
}
},
"icon": {
"item": {
"id": "minecraft:stone",
"count": 1
},
"type": "heracles:item"
},
"icon_background": "heracles:textures/gui/quest_backgrounds/rounded_squares.png",
"title": {
"translate": "test"
}
},
"settings": {
"unlockNotification": false,
"showDependencyArrow": true,
"repeatable": false,
"individual_progress": false,
"hidden": "LOCKED"
}
}

View file

@ -1,9 +0,0 @@
<h2>Tutorial</h2>
<p>Quests are a way to guide you through the progression. They are a way to help you learn about things and the world around you.</p>
<p>Quests are split into groups. Each group has a set of quests that you can complete. You can complete quests in any order you want, but some quests may require you to complete other quests first.</p>
<hr/>
<hint color="gray" icon="heracles:quest_book" title="Note:">
<p>You can change this file in the tutorial.html file in the Heracles config folder.</p>
</hint>
<hr/>
<p>Happy Questing!</p>

View file

@ -0,0 +1,28 @@
# This holds the schematic version for internal purposes. DO NOT TOUCH!
schematicVersion = 1
# This category holds configs that define ship behaviour.
[Ship]
#This category holds configs that define general ship behaviour.
[Ship.General]
#General camera settings for ships.
[Ship.General.Camera]
#Automatically enable third person camera when entering a ship.
shipGeneralCameraAutoThirdPerson = true
#Zoom camera settings for third person view in ships.
[Ship.General.Camera.Zoom]
#Generally enable the zooming feature.
shipGeneralCameraZoomEnable = true
#Set maximum distance of zoom (value must be smaller than or equal to 50.0).
shipGeneralCameraZoomMax = 20.0
#Set minimum distance of zoom (value must be bigger than or equal to 1.0).
shipGeneralCameraZoomMin = 5.0
# This category holds configs that define general mod settings.
[General]
#Enable smallships creative tab in the creative inventory (only takes effect after restart).
smallshipsItemGroupEnable = false

View file

@ -0,0 +1,88 @@
# This holds the schematic version for internal purposes. DO NOT TOUCH!
schematicVersion = 2
# This category holds configs that define ship behaviour.
[Ship]
#This category holds configs that define general ship behaviour.
[Ship.General]
shipGeneralSailCooldown = 30
shipGeneralCollisionDamage = 7.5
shipGeneralDoItemDrop = true
#General speed modifier for ships.
[Ship.General.Modifier]
#Maximum speed penalty for a filled container in percent.
shipGeneralContainerModifier = 10.0
#Speed bonus for a paddle ship while paddling in percent.
shipGeneralPaddlingModifier = 35.0
#This category holds configs that define behaviour of fleeing water animals.
[Ship.General."Fleeing Water Animals"]
waterAnimalFleeRadius = 15.0
waterAnimalFleeSpeed = 1.5
waterAnimalFleeDistance = 10.0
[Ship.Cog]
#Default attributes for the Cog. Speed in km/h, Health in default mc health points
[Ship.Cog.Attributes]
shipAttributeCogMaxHealth = 300.0
shipAttributeCogMaxSpeed = 30.0
shipAttributeCogMaxReverseSpeed = 0.1
shipAttributeCogMaxRotationSpeed = 4.5
shipAttributeCogAcceleration = 0.015
shipAttributeCogRotationAcceleration = 0.7
#Default configs for the container of the Cog.
[Ship.Cog.Container]
#Set container size for the Cog (value must be divisible by 9 and bigger than 0).
shipContainerCogContainerSize = 108
#Cog specific speed modifier.
[Ship.Cog.Modifier]
#-1 = none, 0 = cold, 1 = neutral or 2 = warm Biomes
shipModifierCogBiome = 0
[Ship.Brigg]
#Default attributes for the Brigg. Speed in km/h, Health in default mc health points
[Ship.Brigg.Attributes]
shipAttributeBriggMaxHealth = 450.0
shipAttributeBriggMaxSpeed = 35.0
shipAttributeBriggMaxReverseSpeed = 0.1
shipAttributeBriggMaxRotationSpeed = 4.0
shipAttributeBriggAcceleration = 0.015
shipAttributeBriggRotationAcceleration = 0.55
#Default configs for the container of the Brigg.
[Ship.Brigg.Container]
#Set container size for the Brigg (value must be divisible by 9 and bigger than 0).
shipContainerBriggContainerSize = 162
#Brigg specific speed modifier.
[Ship.Brigg.Modifier]
#-1 = none, 0 = cold, 1 = neutral or 2 = warm Biomes
shipModifierBriggBiome = 0
[Ship.Galley]
#Default attributes for the Galley. Speed in km/h, Health in default mc health points
[Ship.Galley.Attributes]
shipAttributeGalleyMaxHealth = 200.0
shipAttributeGalleyMaxSpeed = 30.0
shipAttributeGalleyMaxReverseSpeed = 0.1
shipAttributeGalleyMaxRotationSpeed = 5.0
shipAttributeGalleyAcceleration = 0.015
shipAttributeGalleyRotationAcceleration = 1.0
#Default configs for the container of the Galley.
[Ship.Galley.Container]
#Set container size for the Galley (value must be divisible by 9 and bigger than 0).
shipContainerGalleyContainerSize = 54
#Galley specific speed modifier.
[Ship.Galley.Modifier]
#-1 = none, 0 = cold, 1 = neutral or 2 = warm Biomes
shipModifierGalleyBiome = 2

View file

@ -0,0 +1,20 @@
#Options for customizing the display of tools on the player
[display]
#If set to FALSE, the belts and tools will NOT draw on players.
showBeltOnPlayers = true
#Changes the scale of items on the belt.
#Range: 0.1 ~ 2.0
beltItemScale = 0.5
#Options for customizing the radial menu
[menu]
#If set to TRUE, releasing the menu key (R) will activate the swap. Requires a click otherwise (default).
releaseToSwap = false
#If set to TRUE, the radial menu will try to prevent the mouse from leaving the outer circle.
clipMouseToCircle = false
#If set to TRUE, the radial menu will allow clicking outside the outer circle to activate the items.
allowClickOutsideBounds = false
#If set to TRUE, the radial menu will always display all the slots, even when empty, and will allow choosing which empty slot to insert into.
displayEmptySlots = false

View file

@ -0,0 +1,14 @@
[general]
#If set to FALSE, support for sewing recipes will not be enabled regardless of the mod's presence.
enableSewingKitSupport = true
#If AUTO, the crafting and upgrade recipes will use the Sewing mechanics if the Sewing Kit mod is present. Off disables anvil upgrading regardless.
#Allowed Values: OFF, AUTO, ON
anvilUpgrading = "AUTO"
#If AUTO, the belt and pouch crafting recipes will be disabled if the Sewing Kit mod is present, sewing recipes will be used instead.
#Allowed Values: OFF, AUTO, ON
enableGridCraftingRecipes = "AUTO"
#If AUTO, the belt slot will be disabled if Curios is present. If OFF, the belt slot will be disabled permanently.
#Allowed Values: OFF, AUTO, ON
customBeltSlotMode = "ON"

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
mods/tfships-1.20.1-1.0.jar Normal file

Binary file not shown.