items: Add a couple parts to the default inventory.
This commit is contained in:
parent
d443deebb1
commit
7b6773099b
@ -30,6 +30,7 @@
|
||||
-record(psu_trap_item, {max_quantity}).
|
||||
|
||||
-record(psu_consumable_item_variables, {quantity}).
|
||||
-record(psu_parts_item_variables, {}).
|
||||
-record(psu_special_item_variables, {}).
|
||||
-record(psu_striking_weapon_item_variables, {is_active=0, slot=0, current_pp, max_pp, element, pa=#psu_pa{type=0, level=0}}).
|
||||
-record(psu_trap_item_variables, {quantity}).
|
||||
|
@ -85,6 +85,8 @@ event({char_select_enter, Slot, _BackToPreviousField}, State=#state{gid=GID}) ->
|
||||
{16#0c020900, #psu_trap_item_variables{quantity=10}},
|
||||
{16#0c020a00, #psu_trap_item_variables{quantity=10}},
|
||||
{16#0c020b00, #psu_trap_item_variables{quantity=10}},
|
||||
{16#0a060c00, #psu_parts_item_variables{}},
|
||||
{16#0a060d00, #psu_parts_item_variables{}},
|
||||
{16#01010900, #psu_striking_weapon_item_variables{current_pp=99, max_pp=100, element=#psu_element{type=1, percent=50}}},
|
||||
{16#01010a00, #psu_striking_weapon_item_variables{current_pp=99, max_pp=100, element=#psu_element{type=2, percent=50}}},
|
||||
{16#01010b00, #psu_striking_weapon_item_variables{current_pp=99, max_pp=100, element=#psu_element{type=3, percent=50}}}]},
|
||||
|
@ -412,6 +412,12 @@ build_0a0a_item_variables([{ItemID, #psu_consumable_item_variables{quantity=Quan
|
||||
RarityInt = Rarity - 1,
|
||||
Bin = << 0:32, ItemIndex:32/little, ItemID:32, Quantity:32/little, MaxQuantity:32/little, 0:24, RarityInt:8, Action:8, 0:88 >>,
|
||||
build_0a0a_item_variables(Tail, [Bin|Acc]);
|
||||
build_0a0a_item_variables([{ItemID, #psu_parts_item_variables{}}|Tail], Acc) ->
|
||||
#psu_item{rarity=Rarity} = proplists:get_value(ItemID, ?ITEMS),
|
||||
ItemIndex = 0,
|
||||
RarityInt = Rarity - 1,
|
||||
Bin = << 0:32, ItemIndex:32/little, ItemID:32, 0:88, RarityInt:8, 0:96 >>,
|
||||
build_0a0a_item_variables(Tail, [Bin|Acc]);
|
||||
%% @todo Handle rank, rarity and hands properly.
|
||||
build_0a0a_item_variables([{ItemID, Variables}|Tail], Acc) when element(1, Variables) =:= psu_striking_weapon_item_variables ->
|
||||
#psu_striking_weapon_item_variables{is_active=IsActive, slot=Slot, current_pp=CurrentPP, max_pp=MaxPP,
|
||||
|
Loading…
Reference in New Issue
Block a user