items: Add a couple parts to the default inventory.

This commit is contained in:
Loïc Hoguin 2010-09-28 18:10:31 +02:00
parent d443deebb1
commit 7b6773099b
3 changed files with 9 additions and 0 deletions

View File

@ -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}).

View File

@ -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}}}]},

View File

@ -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,