add areaname
This commit is contained in:
@@ -3,18 +3,20 @@ using System.Collections.Generic;
|
||||
|
||||
public class PlayerStats
|
||||
{
|
||||
public static Dictionary<StatsId, Stat> CreateInitialStats()
|
||||
public static Dictionary<StatsId, object> CreateInitialStats()
|
||||
{
|
||||
return new Dictionary<StatsId, Stat>()
|
||||
return new Dictionary<StatsId, object>()
|
||||
{
|
||||
{StatsId.Money, new Stat("Money", 100.0f,10000000f)},
|
||||
{StatsId.RentAccount, new Stat("Rent Account", 0,10f)},
|
||||
{StatsId.Food, new Stat("Food Energy", 50f,100f) },
|
||||
{StatsId.Energy,new Stat("Energy", 50f,100f) },
|
||||
{StatsId.Money, new NumericStat("Money", 100.0f,10000000f)},
|
||||
{StatsId.RentAccount, new NumericStat("Rent Account", 0,10f)},
|
||||
{StatsId.Food, new NumericStat("Food Energy", 50f,100f) },
|
||||
{StatsId.Energy,new NumericStat("Energy", 50f,100f) },
|
||||
{StatsId.LocationName,new StringStat("Location","Nowhere") },
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
//// Knowledge for University Jobs
|
||||
//public Stat literatureKnowledge = new Stat("LiteratureKnowledge", 0);
|
||||
//public Stat mathematicsKnowledge = new Stat("MathematicsKnowledge", 0);
|
||||
|
||||
Reference in New Issue
Block a user