Skip to content

Commit

Permalink
adjust items
Browse files Browse the repository at this point in the history
  • Loading branch information
MegaPiggy committed Sep 14, 2024
1 parent b8304f4 commit a9aea99
Show file tree
Hide file tree
Showing 6 changed files with 47 additions and 20 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
{
"itemNameKey": "exampleitems.milk.name",
"itemDescriptionKey": "exampleitems.milk.desc",
"itemType": "GENERAL",
"itemSubtype": "EXAMPLE",
"sprite": "exampleitems.milk",
"itemColor": {
"r": 58,
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"itemNameKey": "exampleitems.nautilus.name",
"itemDescriptionKey": "exampleitems.nautilus.desc",
"itemType": "GENERAL",
"itemSubtype": "MATERIAL",
"sprite": "exampleitems.nautilus",
"itemColor": {
"r": 58,
"g": 40,
"b": 32,
"a": 255
},
"value": 50,
"dimensions": [
"X"
],
"damageMode": "DESTROY",
"harvestMinigameType": "DREDGE_RADIAL",
"perSpotMin": 1,
"perSpotMax": 1,
"harvestPOICategory": "MATERIAL",
"harvestableType": "DREDGE",
"harvestDifficulty": "VERY_HARD",
"canBeCaughtByRod": true,
"canBeCaughtByNet": true,
"canBeCaughtByPot": true
}

Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"location": {
"x": 390.0,
"y": 0.0,
"z": -365.0
},
"harvestableParticlePrefab": "ImportantDredgeParticles",
"items": [ "exampleitems.nautilus" ],
"startStock": 1,
"maxStock": 1,
"doesRestock": true,
"usesTimeSpecificStock": false
}
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"location": {
"x": 390.0,
"x": 425.0,
"y": 0.0,
"z": -365.0
"z": -375.0
},
"harvestableParticlePrefab" : "ImportantDredgeParticles",
"items": ["exampleitems.nautilus"]
"items": ["exampleitems.milk"]
}
1 change: 1 addition & 0 deletions Winch.Examples/ExampleItems/ExampleEnums.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ namespace ExampleItems;
[EnumHolder]
public static class ExampleEnums
{
public static readonly ItemSubtype EXAMPLE;
public static readonly GridKey EXAMPLE_INPUT;
public static readonly GridKey EXAMPLE_OUTPUT;
}

0 comments on commit a9aea99

Please sign in to comment.