|
@@ -26,7 +26,7 @@ namespace GFGGame
|
|
|
{
|
|
|
get
|
|
|
{
|
|
|
- return GameGlobal.myNumericComponent.GetAsInt(NumericType.Gold);
|
|
|
+ return ItemDataManager.GetItemNum(ConstItemID.GOLD); //GameGlobal.myNumericComponent.GetAsInt(NumericType.Gold);
|
|
|
}
|
|
|
}
|
|
|
private static int _exp = 0;
|
|
@@ -50,7 +50,7 @@ namespace GFGGame
|
|
|
{
|
|
|
get
|
|
|
{
|
|
|
- return GameGlobal.myNumericComponent.GetAsInt(NumericType.DiamondP);
|
|
|
+ return ItemDataManager.GetItemNum(ConstItemID.DIAMOND_PURPLE); // GameGlobal.myNumericComponent.GetAsInt(NumericType.DiamondP);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -58,7 +58,7 @@ namespace GFGGame
|
|
|
{
|
|
|
get
|
|
|
{
|
|
|
- return GameGlobal.myNumericComponent.GetAsInt(NumericType.DiamondR);
|
|
|
+ return ItemDataManager.GetItemNum(ConstItemID.DIAMOND_RED); //GameGlobal.myNumericComponent.GetAsInt(NumericType.DiamondR);
|
|
|
}
|
|
|
}
|
|
|
public static int Liveness
|