Skip to content

Commit 312e7b0

Browse files
authored
Merge branch 'dev' into lucina-adjustments
2 parents be048f9 + 39c6e60 commit 312e7b0

File tree

147 files changed

+6703
-4600
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

147 files changed

+6703
-4600
lines changed

dynamic/src/consts.rs

+32-25
Original file line numberDiff line numberDiff line change
@@ -300,14 +300,11 @@ pub mod vars {
300300

301301
// ints
302302
pub const NUM_RECOVERY_RESOURCE_USED: i32 = 0x0100;
303-
pub const NUM_CANCEL_THIS_AIRTIME: i32 = 0x0101;
303+
pub const FAIR_STATE: i32 = 0x0101;
304304
}
305305
pub mod status {
306-
// flags
307-
pub const IS_ACTIVATE: i32 = 0x1100;
308-
pub const DIRECT_HIT: i32 = 0x1101;
309306
// floats
310-
pub const ABK_ANGLE: i32 = 0x1102;
307+
pub const ABK_ANGLE: i32 = 0x1100;
311308
}
312309
}
313310

@@ -411,6 +408,7 @@ pub mod vars {
411408
pub mod diddy {
412409
pub mod instance {
413410
pub const DISABLE_SPECIAL_S: i32 = 0x0100;
411+
pub const NO_CAP: i32 = 0x0101;
414412
}
415413
pub mod status {
416414
// ints
@@ -627,6 +625,13 @@ pub mod vars {
627625
}
628626
}
629627

628+
pub mod jack {
629+
pub mod instance {
630+
// flags
631+
pub const GROUNDED_DOYLE_DASH: i32 = 0x0100;
632+
}
633+
}
634+
630635
pub mod kamui {
631636
pub mod status {
632637
// floats
@@ -649,7 +654,8 @@ pub mod vars {
649654
pub mod status {
650655
// copy ability
651656
// flags
652-
pub use super::super::mario::status::IS_SPECIAL_N_FIREBRAND;
657+
pub use super::super::mario::status::FIREBRAND;
658+
pub use super::super::luigi::status::THUNDERHAND;
653659
pub use super::super::mariod::status::CHILL_PILL;
654660
pub const MINING_TIMER: i32 = 0x11F4;
655661
}
@@ -675,6 +681,8 @@ pub mod vars {
675681
pub mod instance {
676682
// flags
677683
pub const DISABLE_SPECIAL_S: i32 = 0x0100;
684+
pub const DISABLE_MECHAKOOPA: i32 = 0x0101;
685+
pub const MECHAKOOPA_IS_COOLDOWN: i32 = 0x0102;
678686
}
679687
}
680688

@@ -725,6 +733,7 @@ pub mod vars {
725733
pub const SPECIAL_HI_ATTACK_IS_LEAVE_WALL: i32 = 0x1101;
726734
pub const SPECIAL_HI_ATTACK_IS_FLIPPED_MOMENTUM_AFTER_WALLTOUCH: i32 = 0x1102;
727735
pub const SPECIAL_HI_ATTACK_IS_SET_WALL_LEAVE_MOMENTUM: i32 = 0x1103;
736+
pub const THUNDER_LOOSE: i32 = 0x1104;
728737

729738
// float
730739
/// Holds the initial y velocity you have during up b to compare once you've touched a wall to reflect your speed the other direction if it changes
@@ -741,7 +750,10 @@ pub mod vars {
741750

742751
pub mod lucina {
743752
pub mod instance {
744-
//int
753+
// flag
754+
pub const EQUIP_MASK: i32 = 0x0100;
755+
756+
// int
745757
/// This int stores damage received from an attack during quick riposte
746758
pub const CURRENT_DAMAGE: i32 = 0x0100;
747759
}
@@ -776,19 +788,16 @@ pub mod vars {
776788
}
777789
pub mod status {
778790
// flag
779-
pub use super::super::mario::status::IS_SPECIAL_N_DOUBLE_FIREBALL;
780-
pub use super::super::mario::status::IS_SPECIAL_N_FIREBRAND;
791+
pub const THUNDERHAND: i32 = 0x1100;
781792
}
782793
}
783794

784795
pub mod mario {
785796
pub mod instance {
786797
// flags
787798
pub const NOKNOK_SHELL: i32 = 0x0100;
788-
pub const CAN_INPUT_SPECIAL_N_DOUBLE_FIREBALL: i32 = 0x0101;
789-
pub const SPECIAL_N_DOUBLE_FIREBALL_NOTIFY_FLAG: i32 = 0x0102;
790-
pub const DISABLE_DSPECIAL_STALL: i32 = 0x0103;
791-
pub const SPECIAL_S_DISABLE_STALL: i32 = 0x0104;
799+
pub const DISABLE_DSPECIAL_STALL: i32 = 0x0101;
800+
pub const SPECIAL_S_DISABLE_STALL: i32 = 0x0102;
792801
}
793802

794803
pub mod status {
@@ -797,8 +806,7 @@ pub mod vars {
797806
pub const AERIAL_COMMAND_RISING: i32 = 0x1101;
798807
pub const AERIAL_COMMAND_RISEN: i32 = 0x1102;
799808

800-
pub const IS_SPECIAL_N_FIREBRAND: i32 = 0x1100;
801-
pub const IS_SPECIAL_N_DOUBLE_FIREBALL: i32 = 0x1101;
809+
pub const FIREBRAND: i32 = 0x1100;
802810
}
803811
}
804812

@@ -998,8 +1006,12 @@ pub mod vars {
9981006

9991007
pub mod sonic {
10001008
pub mod instance {
1009+
// flags
10011010
pub const USED_AIR_ACTION: i32 = 0x0100;
10021011
pub const UP_SPECIAL_FREEFALL: i32 = 0x0101;
1012+
1013+
// ints
1014+
pub const SPECIAL_N_POSE: i32 = 0x0100;
10031015
}
10041016
pub mod status {
10051017
// flags
@@ -1099,6 +1111,9 @@ pub mod vars {
10991111
// flags
11001112
pub const AIRTIME_BAIR: i32 = 0x0100;
11011113
pub const AIRTIME_SIDEB: i32 = 0x0101;
1114+
pub const IS_INIT_METER: i32 = 0x0102;
1115+
pub const GROUNDED_UPB: i32 = 0x0103;
1116+
pub const UPB_CANCEL: i32 = 0x0104;
11021117
// ints
11031118
pub const PASSIVE_FUEL_INDICATOR_EFFECT_HANDLE: i32 = 0x0100;
11041119
pub const PREV_FUEL_THRESHOLD: i32 = 0x0101;
@@ -1318,10 +1333,10 @@ pub mod vars {
13181333
pub const STANCE_REVERSE: i32 = 0x0103;
13191334

13201335
// floats
1321-
pub const PTOOIE_SCALE: i32 = 0x0100;
1336+
pub const PTOOIE_SCALE: i32 = 0x01BF;
13221337

13231338
// ints
1324-
pub const CURRENT_STANCE: i32 = 0x0100; // 0 = Normal, 1 = Putrid, 2 = Prickly
1339+
pub const CURRENT_STANCE: i32 = 0x01BE; // 0 = Normal, 1 = Putrid, 2 = Prickly
13251340
pub const STANCE_STATUS: i32 = 0x0101;
13261341
}
13271342
pub mod status {
@@ -1395,14 +1410,6 @@ pub mod vars {
13951410
pub const RING_SECOND_COLOR: i32 = 0x108;
13961411
}
13971412
}
1398-
1399-
pub mod jack {
1400-
pub mod instance {
1401-
// flags
1402-
pub const GROUNDED_DOYLE_DASH: i32 = 0x0100;
1403-
}
1404-
}
1405-
14061413
}
14071414

14081415
pub mod statuses {

0 commit comments

Comments
 (0)