Skip to content

Commit

Permalink
feat: add hex daily standing and prime toggle key
Browse files Browse the repository at this point in the history
  • Loading branch information
SlayerOrnstein committed Jan 8, 2025
1 parent 7f35c6e commit 95f069c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
8 changes: 7 additions & 1 deletion src/LoadOutItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export default class LoadOutItem {
const [, nemesis] = weapon.ItemName.split('|');

/**
* Item lich name
* The name of the Lich, Sister, or Technocyte
* @type {String}
*/
this.nemesis = toTitleCase(nemesis);
Expand Down Expand Up @@ -124,6 +124,12 @@ export default class LoadOutItem {
*/
if (weapon.sigcol) this.sigilColor = colors.mapColors(weapon.sigcol.toString(16));

/**
* Whether prime details are enabled or not
* @type {boolean}
*/
this.enablePrime = weapon.ugly ?? false;

/**
* Attachment colors applied to item if they exist
* @type {module:"warframe-items".ColorMap | undefined}
Expand Down
1 change: 1 addition & 0 deletions src/Profile.js
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,7 @@ export default class Profile {
holdfasts: profile.DailyAffiliationZariman,
kahl: profile.DailyAffiliationKahl,
cavia: profile.DailyAffiliationCavia,
hex: profile.DailyAffiliationHex,
};

/**
Expand Down
2 changes: 1 addition & 1 deletion test/data/OrnsteinTheSlayer.json

Large diffs are not rendered by default.

0 comments on commit 95f069c

Please sign in to comment.