* Start implementing item pricing. * Flesh out prices a bit, add the appraisal tool. * Add prices to more things. * YARRRRRRR * gives pirates an appraisal tool in their pocket. * Makes the various traitor objectives valuable. Also nerfs the price of a living person, so it's easier to bargain for them. * Address reviews. * Address reviews.
11 lines
242 B
C#
11 lines
242 B
C#
namespace Content.Server.Cargo.Components;
|
|
|
|
/// <summary>
|
|
/// This is used for the price gun, which calculates the price of any object it appraises.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed class PriceGunComponent : Component
|
|
{
|
|
|
|
}
|