Skip to content

Commit

Permalink
Update several entwatch configs (#13)
Browse files Browse the repository at this point in the history
* Update slender escape entwatch config

* Update grau entwatch config

* Update farmhouse entwatch config

* Update README

* Update biohazard manor entwatch config

* Add counter tracking to predator ultimate

* Update 8bit entwatch config

* Update backrooms deathbed entwatch config

* Update template.jsonc

* Clean up formatting

* Update bathroom entwatch

* Update fapescape entwatch

* Update fapescape rote entwatch

* Update journey entwatch cfg

* Update l0v0l entwatch cfg

* Add lotr helms deep entwatch cfg

* Update LOTR minas tirith entwatch cfg

* Update LOTR Mines of Moria entwatch cfg

* Update ze_lotr_mount_doom_p.jsonc

* Update ze_rizomata_p.jsonc

* Update ze_santassination_p.jsonc

* Update ze_tesv_skyrim_p.jsonc

* Update ze_tilex_ultimate_p.jsonc

* Update ze_visualizer.jsonc

* Update ze_fapescape_p.jsonc

* Update ze_lotr_minas_tirith_p.jsonc

* Update ze_tesv_skyrim_p.jsonc

* Fix description

* Scoreboard will not be only HUD long-term

---------

Co-authored-by: Vauff <[email protected]>
  • Loading branch information
notkoen and Vauff authored Oct 12, 2024
1 parent bad712e commit 61fc29d
Show file tree
Hide file tree
Showing 26 changed files with 1,993 additions and 644 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ Find entity classnames that start with `weapon_` as a starting point for creatin
"triggers": [""], // Array of hammerids of any triggers that this item is associated with
"handlers": [
{
"type": "button", // "button" or "game_ui"
"type": "button", // "button", "game_ui", or "counter"
"hammerid": "", // hammerid of the entity
"event": "OnPressed", // Name of the output
"mode": 2, // Mode of the handler
// 0/1 = None
// 2 = Cooldown, 3 = MaxUses
// 2 = Cooldown, 3 = MaxUses
// 4 = MaxUsesWithCooldown, 5 = CooldownAfterUses
// 6 = CounterDown, 7 = CounterUp
"cooldown": 60, // Cooldown duration if mode = 2,4,5
Expand Down
2 changes: 1 addition & 1 deletion entwatch/template.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"triggers": [""], // Array of hammerids of any triggers that this item is associated with
"handlers": [
{
"type": "button", // "button" or "game_ui"
"type": "button", // "button", "game_ui", or "counter"
"hammerid": "", // hammerid of the entity
"event": "OnPressed", // Name of the output
"mode": 2, // Mode of the handler
Expand Down
12 changes: 9 additions & 3 deletions entwatch/ze_8bit.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,17 @@
"type": "button",
"hammerid": "5039",
"event": "OnPressed",
"mode": 2,
"cooldown": 60,
"mode": 1,
"cooldown": 0,
"maxuses": 0,
"message": true,
"ui": true
},
{
"type": "counter",
"hammerid": "5037",
"mode": 6,
"ui": true
}
]
},
Expand Down Expand Up @@ -146,4 +152,4 @@
}
]
}
]
]
2 changes: 1 addition & 1 deletion entwatch/ze_arcana_heart.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -171,4 +171,4 @@
}
]
}
]
]
2 changes: 1 addition & 1 deletion entwatch/ze_azathoth_p.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
}
]
}
]
]
18 changes: 14 additions & 4 deletions entwatch/ze_backrooms_deathbed_v1.jsonc
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
// Flashlight cooldown/charge is based on a counter
// Waiting on mode 6/7 implementation before updating cfg
[
{
"name": "Tactical Flashlight 1",
Expand All @@ -19,6 +17,12 @@
"maxuses": 0,
"message": true,
"ui": true
},
{
"type": "counter",
"hammerid": "5693",
"mode": 6,
"ui": true
}
]
},
Expand All @@ -33,14 +37,20 @@
"handlers": [
{
"type": "button",
"hammerid": "5723",
"hammerid": "5714",
"event": "OnPressed",
"mode": 1,
"cooldown": 0,
"maxuses": 0,
"message": true,
"ui": true
},
{
"type": "counter",
"hammerid": "5693",
"mode": 6,
"ui": true
}
]
}
]
]
44 changes: 34 additions & 10 deletions entwatch/ze_bathroom.jsonc
Original file line number Diff line number Diff line change
@@ -1,20 +1,44 @@
[
{
"name": "Sponge Builder",
"shortname": "Sponge",
"hammerid": "1589",
"message": true,
"ui": true,
"shortname": "Sponge",
"hammerid": "1589",
"message": true,
"ui": true,
"transfer": true,
"color": "yellow"
"color": "yellow",
"handlers": [
{
"type": "button",
"hammerid": "1590",
"event": "OnPressed",
"mode": 2,
"cooldown": 52,
"maxuses": 0,
"message": true,
"ui": true
}
]
},
{
"name": "Mouse Trap",
"shortname": "Trap",
"hammerid": "1793",
"message": true,
"ui": true,
"shortname": "Trap",
"hammerid": "1793",
"message": true,
"ui": true,
"transfer": true,
"color": "orange"
"color": "orange",
"handlers": [
{
"type": "button",
"hammerid": "1794",
"event": "OnPressed",
"mode": 2,
"cooldown": 42,
"maxuses": 0,
"message": true,
"ui": true
}
]
}
]
2 changes: 1 addition & 1 deletion entwatch/ze_biohazard2_rpd_004_p.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
}
]
}
]
]
8 changes: 7 additions & 1 deletion entwatch/ze_biohazard_manor_004_p.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,13 @@
"maxuses": 0,
"message": true,
"ui": true
},
{
"type": "counter",
"hammerid": "983",
"mode": 6,
"ui": true
}
]
}
]
]
Loading

0 comments on commit 61fc29d

Please sign in to comment.