Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added improvised bandaging bubble #3

Merged
merged 1 commit into from
Apr 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ This add-on makes many of the items in Hideous Destructor float in front of play
- Updated to target latest HD main
- Added support for WIMP
- Added CVar to allow bubbled weapons to appear to the user
- Added sprite for improvised bandaging.

## Credits

- Backpack Rotations: KDiZD team (artist JoeyTD?)
- Improvised bandaging bubble sprite originally made by Bloodyacid, edited to resemble a gauze roll by Underqualified Gunman .
12 changes: 12 additions & 0 deletions TEXTURES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
// Texture definitions generated by SLADE3
// on Fri Apr 19 06:00:31 2024

Sprite "BANDA0", 16, 14
{
XScale 1.500
YScale 1.500
Offset 8, 14
Patch "BANDA0", 0, 0
}

// End of texture definitions
1 change: 1 addition & 0 deletions ZSCRIPT.zsc
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ version "4.11"
#include "zscript/josh771/bubblers/items/BubbleHealingPotion.zsc"
#include "zscript/josh771/bubblers/items/BubbleInjector.zsc"
#include "zscript/josh771/bubblers/items/BubbleMedikitter.zsc"
#include "zscript/josh771/bubblers/items/Bubbleimprovbandage.zsc"
#include "zscript/josh771/bubblers/items/BubblePocketRadio.zsc"
#include "zscript/josh771/bubblers/items/BubbleUasConsumable.zsc"
#include "zscript/josh771/bubblers/items/BubbleUasTraumaKit.zsc"
Expand Down
Binary file added sprites/BANDA0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 15 additions & 0 deletions zscript/josh771/bubblers/items/Bubbleimprovbandage.zsc
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
class Bubble_HDbandages : Bubble_Weapon
{
default
{
Bubble_Weapon.weaponClass "SelfBandage";
Bubble_Weapon.copyScale "SelfBandage";
}

states
{
Spawn:
BAND A 1;
wait;
}
}