-
-
Notifications
You must be signed in to change notification settings - Fork 553
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
Sledgehammer Bonus Damage #4284
base: master
Are you sure you want to change the base?
Changes from 27 commits
800d1b3
53a9aa5
68f8874
cd4c878
3e5b6dc
12c0280
2bc6035
edb920d
7253543
2cb1e5b
4b2c5b2
4070291
2d9450e
9640991
e12dc32
742616c
1a4e781
2fa561c
8aafe90
42151ae
f05fd5e
960628e
ea001ad
21630a4
9e35dd8
ac437ff
b82b9d9
621ee92
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -155,6 +155,8 @@ | |||||
dam = 20 | ||||||
else if(I.tool_behaviour == TOOL_MINING) | ||||||
dam *= (4/3) | ||||||
else if (I.tool_behaviour == TOOL_SLEDGEHAMMER) | ||||||
dam = 100 | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. and again you need to do it as a multiplier. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. How would you do it as a multiplier? The author of destructible walls suggested I do it this way. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I wanted it to specifically be 100 so it could also destroy mineral rock walls since I don't know how to make it both do extra damage to walls and also be a mining tool at the same time There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It doesnt really need to 1 shot mineral rock walls. its not a dedicated pickaxe. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The original concept that Apogee and us agreed on was a joint breaching-mining tool for marauders. In fact, it is currently mapped into fullmerged NGR and Hardliner ships as a mining tool. |
||||||
else | ||||||
switch(I.damtype) | ||||||
if(BRUTE) | ||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Make sure if its a girder it does a check for TOOL_SLEDGEHAMMER