Gunner Weapons (FU) - GReinoso96/XXModding GitHub Wiki

struct WeaponDataGun_MHFU {
	int16 model;
	byte rarity;
	byte unk1;
	int32 price;
	int16 damage;
	byte defense;
	byte recoil;
	byte slots;
	byte affinity;
	int16 sortOrder;
	byte ammoConfig; //Charge Attack
	byte elementType; //Bows
	byte elementDamage; //Bows
	byte reload;
	byte unk2[4];
	byte ammoUsable1;
	byte ammoUsable2;
	byte ammoUsable3;
	byte ammoUsable4;
}
  • Model: Weapon Model.
  • Rarity: Weapon rarity, 00 = Rare-1.
  • Unk1: Unknown.
  • Price: Double what the smithy says when crafting.
  • Damage: Damage, value in-game is multiplied by 1.2.
  • Defense: Defense boost from the weapon.
  • Recoil: Recoil (Bowgun), check table below, amount of Charged Shot tiers (Bow).
  • Slots: Number of slots.
  • Affinity: Affinity.
  • Sort Order: Lower numbers come first when auto-sorting.
  • Ammo Config: Changes number of shots for each ammo (Bowgun) and type of charged shot (Bow).
  • Element Type: Elemental damage type, Bow only.
  • Element Damage: Actual elemental damage, value in-game is multiplied by 10, Bow only.
  • Reload: Reload speed, check table below, Bowgun only.
  • Unk2: Unknown
  • Ammo Usable: Bowgun and Bow ammo availability, check tables below, Bows only use the first.

Bowgun Stats

Value Recoil Speed
00 Strongest Very Slow
01 Strong Slow
02 Moderate Normal
03 Light Fast
04 Weak Very Fast
05 Very Weak Super Fast
06 Weakest Fastest

Coatings

Note: All Bit listings are right-to-left(i.e. to enable Power, Para, C:Range and Paint: Hex 6A/Binary 01101010)

Bit Coating
1 -
2 https://github.com/YukiHaze/XXModding/blob/master/Coating-Power.png Power
3 https://github.com/YukiHaze/XXModding/blob/master/Coating-Poison.png Poison
4 https://github.com/YukiHaze/XXModding/blob/master/Coating-Paralysis.png Paralysis
5 https://github.com/YukiHaze/XXModding/blob/master/Coating-Sleep.png Sleep
6 [https://github.com/YukiHaze/XXModding/blob/master/Coating-Close Range.png](https://github.com/YukiHaze/XXModding/blob/master/Coating-Close Range.png) Close Range
7 https://github.com/YukiHaze/XXModding/blob/master/Coating-Paint.png Paint
8 -

Bowgun Ammo

Note: All Bit listings are right-to-left(i.e. to enable Normal S 3 and Pellet S 1&2: Hex C4/Binary 11000100)

Byte 1

Bit Ammo
1 https://github.com/YukiHaze/XXModding/blob/master/Ammo-Normal.png Normal S Lv1
2 https://github.com/YukiHaze/XXModding/blob/master/Ammo-Normal.png Normal S Lv2
3 https://github.com/YukiHaze/XXModding/blob/master/Ammo-Normal.png Normal S Lv3
4 https://github.com/YukiHaze/XXModding/blob/master/Ammo-Pierce.png Pierce S Lv1
5 https://github.com/YukiHaze/XXModding/blob/master/Ammo-Pierce.png Pierce S Lv2
6 https://github.com/YukiHaze/XXModding/blob/master/Ammo-Pierce.png Pierce S Lv3
7 https://github.com/YukiHaze/XXModding/blob/master/Ammo-Pellet.png Pellet S Lv1
8 https://github.com/YukiHaze/XXModding/blob/master/Ammo-Pellet.png Pellet S Lv2

Byte 2

Bit Ammo
1 https://github.com/YukiHaze/XXModding/blob/master/Ammo-Pellet.png Pellet S Lv3
2 https://github.com/YukiHaze/XXModding/blob/master/Ammo-Crag.png Crag S Lv1
3 https://github.com/YukiHaze/XXModding/blob/master/Ammo-Crag.png Crag S Lv2
4 https://github.com/YukiHaze/XXModding/blob/master/Ammo-Crag.png Crag S Lv3
5 https://github.com/YukiHaze/XXModding/blob/master/Ammo-Clust.png Clust S Lv1
6 https://github.com/YukiHaze/XXModding/blob/master/Ammo-Clust.png Clust S Lv2
7 https://github.com/YukiHaze/XXModding/blob/master/Ammo-Clust.png Clust S Lv3
8 https://github.com/YukiHaze/XXModding/blob/master/Ammo-Fire.png Flame S

Byte 3

Bit Ammo
1 https://github.com/YukiHaze/XXModding/blob/master/Ammo-Water.png Water S
2 https://github.com/YukiHaze/XXModding/blob/master/Ammo-Thunder.png Thunder S
3 https://github.com/YukiHaze/XXModding/blob/master/Ammo-Ice.png Freeze S
4 https://github.com/YukiHaze/XXModding/blob/master/Ammo-Dragon.png Dragon S
5 https://github.com/YukiHaze/XXModding/blob/master/Ammo-Recovery.png Recovery S Lv1
6 https://github.com/YukiHaze/XXModding/blob/master/Ammo-Recovery.png Recovery S Lv2
7 https://github.com/YukiHaze/XXModding/blob/master/Ammo-Poison.png Poison S Lv1
8 https://github.com/YukiHaze/XXModding/blob/master/Ammo-Poison.png Poison S Lv2

Byte 3

Bit Ammo
1 https://github.com/YukiHaze/XXModding/blob/master/Ammo-Paralysis.png Para S Lv1
2 https://github.com/YukiHaze/XXModding/blob/master/Ammo-Paralysis.png Para S Lv2
3 https://github.com/YukiHaze/XXModding/blob/master/Ammo-Sleep.png Sleep S Lv1
4 https://github.com/YukiHaze/XXModding/blob/master/Ammo-Sleep.png Sleep S Lv2
5 https://github.com/YukiHaze/XXModding/blob/master/Ammo-Tranq.png Tranq S
6 https://github.com/YukiHaze/XXModding/blob/master/Ammo-Paint.png Paint S
7 https://github.com/YukiHaze/XXModding/blob/master/Ammo-Demon.png Demon S
8 https://github.com/YukiHaze/XXModding/blob/master/Ammo-Armor.png Armor S