Example #1
0
 public Dictionary <OrbType, double> GetTotalCurrencyCount()
 {
     return(CurrencyHandler.GetTotalCurrencyCount(Get <Currency>()));
 }
Example #2
0
 public double GetTotal(OrbType target)
 {
     return(CurrencyHandler.GetTotal(target, Get <Currency>()));
 }
Example #3
0
 public Dictionary <OrbType, double> GetTotalCurrencyDistribution(OrbType target)
 {
     return(CurrencyHandler.GetTotalCurrencyDistribution(target, Get <Currency>()));
 }
Example #4
0
 public Currency(JSONProxy.Item item) : base(item)
 {
     ItemType   = ItemType.Currency;
     Type       = ProxyMapper.GetOrbType(item);
     ChaosValue = CurrencyHandler.GetChaosValue(Type);
 }