items: Add the description and send it to the client when requested.

This commit is contained in:
Loïc Hoguin 2010-09-04 16:33:40 +02:00
parent 62e0b662b9
commit 7b79545c95
2 changed files with 110 additions and 37 deletions

View File

@ -17,7 +17,7 @@
%% You should have received a copy of the GNU Affero General Public License
%% along with EGS. If not, see <http://www.gnu.org/licenses/>.
-record(psu_item, {name, rarity, buy_price, sell_price, data}).
-record(psu_item, {name, description, rarity, buy_price, sell_price, data}).
-record(psu_consumable_item, {max_quantity, pt_diff, status_effect, target, use_condition, item_effect}).
-record(psu_trap_item, {max_quantity}).
@ -32,48 +32,76 @@
%% 0xB0: revive! percent pt_diff
%% 0xD0: auto-revive! percent pt_diff
{16#03010000, #psu_item{name="Monomate", rarity=1, buy_price=50, sell_price=5, data=#psu_consumable_item{
{16#03010000, #psu_item{name="Monomate",
description="HP recovery item.\nRestores a small amount of HP for the one who uses it.",
rarity=1, buy_price=50, sell_price=5, data=#psu_consumable_item{
max_quantity=20, pt_diff=+100, status_effect=0, target=0, use_condition=0, item_effect=16#20
}}},
{16#03010100, #psu_item{name="Dimate", rarity=2, buy_price=150, sell_price=15, data=#psu_consumable_item{
{16#03010100, #psu_item{name="Dimate",
description="HP recovery item.\nRestores a large amount of HP for the one who uses it.",
rarity=2, buy_price=150, sell_price=15, data=#psu_consumable_item{
max_quantity=15, pt_diff=+1000, status_effect=0, target=0, use_condition=0, item_effect=16#20
}}},
{16#03010200, #psu_item{name="Trimate", rarity=3, buy_price=500, sell_price=50, data=#psu_consumable_item{
{16#03010200, #psu_item{name="Trimate",
description="HP recovery item.\nCompletely restores HP for the one who uses it.",
rarity=3, buy_price=500, sell_price=50, data=#psu_consumable_item{
max_quantity=10, pt_diff=+100, status_effect=0, target=0, use_condition=0, item_effect=16#30
}}},
{16#03010300, #psu_item{name="Star Atomizer", rarity=6, buy_price=1500, sell_price=150, data=#psu_consumable_item{
{16#03010300, #psu_item{name="Star Atomizer",
description="HP recovery item.\nRestores all HP for the one who uses it, and nearby allies.",
rarity=6, buy_price=1500, sell_price=150, data=#psu_consumable_item{
max_quantity=5, pt_diff=+100, status_effect=0, target=1, use_condition=0, item_effect=16#30
}}},
%% @todo Missing 03010400.
{16#03010500, #psu_item{name="Antimate", rarity=1, buy_price=100, sell_price=10, data=#psu_consumable_item{
{16#03010500, #psu_item{name="Antimate",
description="Cures all status abnormalities for the one who uses it.",
rarity=1, buy_price=100, sell_price=10, data=#psu_consumable_item{
max_quantity=10, pt_diff=0, status_effect=0, target=0, use_condition=0, item_effect=16#60
}}},
{16#03010600, #psu_item{name="Sol Atomizer", rarity=4, buy_price=300, sell_price=30, data=#psu_consumable_item{
{16#03010600, #psu_item{name="Sol Atomizer",
description="Cures all status abnormalities for the one who uses it, and nearby allies.",
rarity=4, buy_price=300, sell_price=30, data=#psu_consumable_item{
max_quantity=5, pt_diff=0, status_effect=0, target=1, use_condition=0, item_effect=16#60
}}},
{16#03010700, #psu_item{name="Moon Atomizer", rarity=5, buy_price=500, sell_price=50, data=#psu_consumable_item{
{16#03010700, #psu_item{name="Moon Atomizer",
description="Revives any incapacitated allies near the one who uses it.",
rarity=5, buy_price=500, sell_price=50, data=#psu_consumable_item{
max_quantity=5, pt_diff=+25, status_effect=0, target=1, use_condition=0, item_effect=16#B0
}}},
%% @todo Missing 03010800. Cosmo Atomizer?
{16#03010900, #psu_item{name="Scape Doll", rarity=8, buy_price=10000, sell_price=10, data=#psu_consumable_item{
{16#03010900, #psu_item{name="Scape Doll",
description="Automatically revives and cures the holder when incapacitated.",
rarity=8, buy_price=10000, sell_price=10, data=#psu_consumable_item{
max_quantity=1, pt_diff=+100, status_effect=0, target=0, use_condition=0, item_effect=16#D0
}}},
{16#03010a00, #psu_item{name="Agtaride", rarity=3, buy_price=150, sell_price=15, data=#psu_consumable_item{
{16#03010a00, #psu_item{name="Agtaride",
description="Status enhancement item.\nBoosts ATP (attack power) for the one who uses it.",
rarity=3, buy_price=150, sell_price=15, data=#psu_consumable_item{
max_quantity=10, pt_diff=0, status_effect=17, target=0, use_condition=0, item_effect=16#22
}}},
{16#03010b00, #psu_item{name="Defbaride", rarity=3, buy_price=150, sell_price=15, data=#psu_consumable_item{
{16#03010b00, #psu_item{name="Defbaride",
description="Status enhancement item.\nBoosts DFP (defense) for the one who uses it.",
rarity=3, buy_price=150, sell_price=15, data=#psu_consumable_item{
max_quantity=10, pt_diff=0, status_effect=19, target=0, use_condition=0, item_effect=16#22
}}},
{16#03010c00, #psu_item{name="Retaride", rarity=3, buy_price=150, sell_price=15, data=#psu_consumable_item{
{16#03010c00, #psu_item{name="Retaride",
description="Status enhancement item.\nBoosts TP (TECHNIC points) and MST for the one who uses it.",
rarity=3, buy_price=150, sell_price=15, data=#psu_consumable_item{
max_quantity=10, pt_diff=0, status_effect=21, target=0, use_condition=0, item_effect=16#22
}}},
{16#03010d00, #psu_item{name="Zodiaride", rarity=3, buy_price=150, sell_price=15, data=#psu_consumable_item{
{16#03010d00, #psu_item{name="Zodiaride",
description="Status enhancement item.\nBoosts ATA (accuracy) and EVP (evasion) for the one who uses it.",
rarity=3, buy_price=150, sell_price=15, data=#psu_consumable_item{
max_quantity=10, pt_diff=0, status_effect=23, target=0, use_condition=0, item_effect=16#22
}}},
{16#03010e00, #psu_item{name="Megistaride", rarity=4, buy_price=300, sell_price=30, data=#psu_consumable_item{
{16#03010e00, #psu_item{name="Megistaride",
description="Status enhancement item.\nBoosts all abilities for the one who uses it.",
rarity=4, buy_price=300, sell_price=30, data=#psu_consumable_item{
max_quantity=10, pt_diff=0, status_effect=26, target=0, use_condition=0, item_effect=16#22
}}},
{16#03020000, #psu_item{name="Photon Charge", rarity=3, buy_price=500, sell_price=50, data=#psu_consumable_item{
{16#03020000, #psu_item{name="Photon Charge",
description="PP recovery item.\nRestores PP for the selected weapon.",
rarity=3, buy_price=500, sell_price=50, data=#psu_consumable_item{
max_quantity=10, pt_diff=+100, status_effect=0, target=4, use_condition=4, item_effect=16#30
}}},
%% @todo Missing 03020100. Cosmo Charge?
@ -81,29 +109,71 @@
%% Traps.
%% @todo Handle type/race/gender restrictions.
{16#0c010000, #psu_item{name="Damage Trap", rarity=1, buy_price=50, sell_price=5, data=#psu_trap_item{max_quantity=10}}},
{16#0c010100, #psu_item{name="Burn Trap", rarity=1, buy_price=50, sell_price=5, data=#psu_trap_item{max_quantity=10}}},
{16#0c010200, #psu_item{name="Freeze Trap", rarity=1, buy_price=50, sell_price=5, data=#psu_trap_item{max_quantity=10}}},
{16#0c010300, #psu_item{name="Poison Trap", rarity=1, buy_price=50, sell_price=5, data=#psu_trap_item{max_quantity=10}}},
{16#0c010400, #psu_item{name="Confusion Trap", rarity=1, buy_price=50, sell_price=5, data=#psu_trap_item{max_quantity=10}}},
{16#0c010500, #psu_item{name="Sleep Trap", rarity=1, buy_price=50, sell_price=5, data=#psu_trap_item{max_quantity=10}}},
{16#0c010600, #psu_item{name="Virus Trap", rarity=1, buy_price=50, sell_price=5, data=#psu_trap_item{max_quantity=10}}},
{16#0c010700, #psu_item{name="Shock Trap", rarity=1, buy_price=50, sell_price=5, data=#psu_trap_item{max_quantity=10}}},
{16#0c010800, #psu_item{name="Silence Trap", rarity=1, buy_price=50, sell_price=5, data=#psu_trap_item{max_quantity=10}}},
{16#0c010000, #psu_item{name="Damage Trap",
description="Automatically explodes a few seconds after being set. Multiple traps can be set at once.",
rarity=1, buy_price=50, sell_price=5, data=#psu_trap_item{max_quantity=10}}},
{16#0c010100, #psu_item{name="Burn Trap",
description="Automatically explodes a few seconds after being set. Adds burn effects.",
rarity=1, buy_price=50, sell_price=5, data=#psu_trap_item{max_quantity=10}}},
{16#0c010200, #psu_item{name="Freeze Trap",
description="Automatically explodes a few seconds after being set. Adds freezing effects.",
rarity=1, buy_price=50, sell_price=5, data=#psu_trap_item{max_quantity=10}}},
{16#0c010300, #psu_item{name="Poison Trap",
description="Automatically explodes a few seconds after being set. Adds poison effects.",
rarity=1, buy_price=50, sell_price=5, data=#psu_trap_item{max_quantity=10}}},
{16#0c010400, #psu_item{name="Confusion Trap",
description="Automatically explodes a few seconds after being set. Adds confusion effects.",
rarity=1, buy_price=50, sell_price=5, data=#psu_trap_item{max_quantity=10}}},
{16#0c010500, #psu_item{name="Sleep Trap",
description="Automatically explodes a few seconds after being set. Adds sleep effects.",
rarity=1, buy_price=50, sell_price=5, data=#psu_trap_item{max_quantity=10}}},
{16#0c010600, #psu_item{name="Virus Trap",
description="Automatically explodes a few seconds after being set. Adds virus effects.",
rarity=1, buy_price=50, sell_price=5, data=#psu_trap_item{max_quantity=10}}},
{16#0c010700, #psu_item{name="Shock Trap",
description="Automatically explodes a few seconds after being set. Adds shock effects.",
rarity=1, buy_price=50, sell_price=5, data=#psu_trap_item{max_quantity=10}}},
{16#0c010800, #psu_item{name="Silence Trap",
description="Automatically explodes a few seconds after being set. Adds silence effects.",
rarity=1, buy_price=50, sell_price=5, data=#psu_trap_item{max_quantity=10}}},
{16#0c020000, #psu_item{name="Damage Trap G", rarity=4, buy_price=350, sell_price=35, data=#psu_trap_item{max_quantity=10}}},
{16#0c020100, #psu_item{name="Burn Trap G", rarity=4, buy_price=350, sell_price=35, data=#psu_trap_item{max_quantity=10}}},
{16#0c020200, #psu_item{name="Freeze Trap G", rarity=4, buy_price=350, sell_price=35, data=#psu_trap_item{max_quantity=10}}},
{16#0c020300, #psu_item{name="Poison Trap G", rarity=4, buy_price=350, sell_price=35, data=#psu_trap_item{max_quantity=10}}},
{16#0c020400, #psu_item{name="Confusion Trap G", rarity=4, buy_price=350, sell_price=35, data=#psu_trap_item{max_quantity=10}}},
{16#0c020500, #psu_item{name="Sleep Trap G", rarity=4, buy_price=350, sell_price=35, data=#psu_trap_item{max_quantity=10}}},
{16#0c020600, #psu_item{name="Virus Trap G", rarity=4, buy_price=350, sell_price=35, data=#psu_trap_item{max_quantity=10}}},
{16#0c020700, #psu_item{name="Shock Trap G", rarity=4, buy_price=350, sell_price=35, data=#psu_trap_item{max_quantity=10}}},
{16#0c020800, #psu_item{name="Silence Trap G", rarity=4, buy_price=350, sell_price=35, data=#psu_trap_item{max_quantity=10}}},
{16#0c020000, #psu_item{name="Damage Trap G",
description="A trap that can be set off at any time after it's set.",
rarity=4, buy_price=350, sell_price=35, data=#psu_trap_item{max_quantity=10}}},
{16#0c020100, #psu_item{name="Burn Trap G",
description="A trap that can be set off at any time after it's set. Adds burn effects.",
rarity=4, buy_price=350, sell_price=35, data=#psu_trap_item{max_quantity=10}}},
{16#0c020200, #psu_item{name="Freeze Trap G",
description="A trap that can be set off at any time after it's set. Adds freeze effects.",
rarity=4, buy_price=350, sell_price=35, data=#psu_trap_item{max_quantity=10}}},
{16#0c020300, #psu_item{name="Poison Trap G",
description="A trap that can be set off at any time after it's set. Adds poison effects.",
rarity=4, buy_price=350, sell_price=35, data=#psu_trap_item{max_quantity=10}}},
{16#0c020400, #psu_item{name="Confusion Trap G",
description="A trap that can be set off at any time after it's set. Adds confusion effects.",
rarity=4, buy_price=350, sell_price=35, data=#psu_trap_item{max_quantity=10}}},
{16#0c020500, #psu_item{name="Sleep Trap G",
description="A trap that can be set off at any time after it's set. Adds sleep effects.",
rarity=4, buy_price=350, sell_price=35, data=#psu_trap_item{max_quantity=10}}},
{16#0c020600, #psu_item{name="Virus Trap G",
description="A trap that can be set off at any time after it's set. Adds virus effects.",
rarity=4, buy_price=350, sell_price=35, data=#psu_trap_item{max_quantity=10}}},
{16#0c020700, #psu_item{name="Shock Trap G",
description="A trap that can be set off at any time after it's set. Adds shock effects.",
rarity=4, buy_price=350, sell_price=35, data=#psu_trap_item{max_quantity=10}}},
{16#0c020800, #psu_item{name="Silence Trap G",
description="A trap that can be set off at any time after it's set. Adds silence effects.",
rarity=4, buy_price=350, sell_price=35, data=#psu_trap_item{max_quantity=10}}},
{16#0c020900, #psu_item{name="Burn Trap EX", rarity=7, buy_price=650, sell_price=65, data=#psu_trap_item{max_quantity=10}}},
{16#0c020a00, #psu_item{name="Freeze Trap EX", rarity=7, buy_price=650, sell_price=65, data=#psu_trap_item{max_quantity=10}}},
{16#0c020b00, #psu_item{name="Stun Trap EX", rarity=7, buy_price=650, sell_price=65, data=#psu_trap_item{max_quantity=10}}}
{16#0c020900, #psu_item{name="Burn Trap EX",
description="A new trap model that activates for a set period of time. Adds burn effects.",
rarity=7, buy_price=650, sell_price=65, data=#psu_trap_item{max_quantity=10}}},
{16#0c020a00, #psu_item{name="Freeze Trap EX",
description="A new trap model that activates for a set period of time. Adds freezing effects.",
rarity=7, buy_price=650, sell_price=65, data=#psu_trap_item{max_quantity=10}}},
{16#0c020b00, #psu_item{name="Stun Trap EX",
description="A new trap model that activates for a set period of time. Adds stun effects.",
rarity=7, buy_price=650, sell_price=65, data=#psu_trap_item{max_quantity=10}}}
]).
%% Shops.

View File

@ -693,7 +693,10 @@ event({hits, Hits}) ->
%% @todo Send something other than just "dammy".
event({item_description_request, ItemID}) ->
send_0a11(ItemID, "dammy");
case proplists:get_value(ItemID, ?ITEMS) of
undefined -> send_0a11(ItemID, "Always bet on Dammy.");
#psu_item{description=Desc} -> send_0a11(ItemID, Desc)
end;
%% @todo A and B are unknown.
%% Melee uses a format similar to: AAAA--BBCCCC----DDDDDDDDEE----FF with