items: Add a few clothes to the default inventory.

This commit is contained in:
Loïc Hoguin 2010-09-29 03:08:02 +02:00
parent fe24d743fb
commit de646c2df8
3 changed files with 21 additions and 0 deletions

View File

@ -29,6 +29,7 @@
attack_sound, hitbox_a, hitbox_b, hitbox_c, hitbox_d, nb_targets, effect, model}).
-record(psu_trap_item, {max_quantity, effect, type}).
-record(psu_clothing_item_variables, {color}).
-record(psu_consumable_item_variables, {quantity}).
-record(psu_parts_item_variables, {}).
-record(psu_special_item_variables, {}).

View File

@ -85,6 +85,16 @@ 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#09061000, #psu_clothing_item_variables{color=0}},
{16#09061000, #psu_clothing_item_variables{color=1}},
{16#09061000, #psu_clothing_item_variables{color=2}},
{16#09061000, #psu_clothing_item_variables{color=3}},
{16#09061000, #psu_clothing_item_variables{color=4}},
{16#09061000, #psu_clothing_item_variables{color=5}},
{16#09061000, #psu_clothing_item_variables{color=6}},
{16#09061000, #psu_clothing_item_variables{color=7}},
{16#09061000, #psu_clothing_item_variables{color=8}},
{16#09061000, #psu_clothing_item_variables{color=9}},
{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}}},

View File

@ -406,6 +406,16 @@ build_0a0a_item_variables([], Acc) ->
Bin = iolist_to_binary(lists:reverse(Acc)),
Padding = 17280 - 8 * byte_size(Bin),
<< Bin/binary, 0:Padding >>;
build_0a0a_item_variables([{ItemID, #psu_clothing_item_variables{color=ColorNb}}|Tail], Acc) ->
#psu_item{rarity=Rarity, data=#psu_clothing_item{colors=ColorsBin}} = proplists:get_value(ItemID, ?ITEMS),
ItemIndex = 0,
RarityInt = Rarity - 1,
ColorInt = if ColorNb < 5 -> ColorNb; true -> 16#10 + ColorNb - 5 end,
Bits = ColorNb * 8,
<< _Before:Bits, ColorA:4, ColorB:4, _After/bits >> = ColorsBin,
Bin = << 0:32, ItemIndex:32/little, ItemID:32, 0:88, RarityInt:8, ColorA:8, ColorB:8, ColorInt:8, 0:72 >>,
build_0a0a_item_variables(Tail, [Bin|Acc]);
build_0a0a_item_variables([{ItemID, #psu_consumable_item_variables{quantity=Quantity}}|Tail], Acc) ->
#psu_item{rarity=Rarity, data=#psu_consumable_item{max_quantity=MaxQuantity, action=Action}} = proplists:get_value(ItemID, ?ITEMS),
ItemIndex = 0,