-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added support for GeforceNow (Desktop client)
Updated game data to 1.8.2
- Loading branch information
1 parent
df8e325
commit 3bcb03e
Showing
24 changed files
with
589,207 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Text.Json.Serialization; | ||
using System.Threading.Tasks; | ||
|
||
namespace NewWorldCompanion.Entities | ||
{ | ||
public class NamedItem : ItemDefinition | ||
{ | ||
/// <value>Item category. Used to categorise, filter, and sort items.</value> | ||
public string ItemClass { get; set; } = string.Empty; | ||
/// <value>Unique identifier for items. Nwdb uses this to identify items</value> | ||
public string ItemID { get; set; } = string.Empty; | ||
public string Localisation { get; set; } = string.Empty; | ||
public string Storage { get; set; } = string.Empty; | ||
public int Tier { get; set; } = 0; | ||
|
||
public string Url | ||
{ | ||
get | ||
{ | ||
return $"https://nwdb.info/db/item/{ItemID}"; | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.