plugItemHash property

  1. @JsonKey(name: 'plugItemHash')
int? plugItemHash
getter/setter pair

Plugs are never instanced (except in infusion). So with the hash alone, we should be able to: 1) Infer whether the player actually needs to have the item, or if it's a reusable plug 2) Perform any operation needed to use the Plug, including removing the plug item and running reward sheets.

Implementation

@JsonKey(name:'plugItemHash')
int? plugItemHash;