1
0
forked from s425077/PotatoPlan
JoelForkTest/Game1/Sources/Crops/Crops.cs

64 lines
989 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
class Crops
{
2020-05-03 13:05:05 +02:00
public int x;
public int y;
public int Status;
2020-05-03 13:05:05 +02:00
private int cropType;
private int Timer;
private Random r;
2020-05-03 13:05:05 +02:00
public void updateCrop()
{
if (Status != 0)
{
Timer--;
}
}
public int getCropTimer()
{
return Timer;
}
2020-05-03 13:05:05 +02:00
public int getCostOnMovement()
{
2020-05-03 13:05:05 +02:00
if (Status == 1)
{
return 1;
}
else if (Status == 2)
{
2020-05-03 22:28:52 +02:00
return 5;
2020-05-03 13:05:05 +02:00
}
else if (Status == 3)
{
2020-05-03 22:28:52 +02:00
return 20;
2020-05-03 13:05:05 +02:00
}
else
{
2020-05-03 22:28:52 +02:00
return 30;
2020-05-03 13:05:05 +02:00
}
}
2020-05-03 13:05:05 +02:00
public void setPosition(int newx, int newy)
{
x = newx;
y = newy;
}
2020-05-03 13:05:05 +02:00
public void setCropType(int Type)
{
}
}