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