public static void init(GarlicCrop plant, bool full) { plant.PickGraphic = (0xC69); plant.FullGraphic = (0xC6F); plant.LastPick = DateTime.UtcNow; plant.regrowTimer = new CropTimer(plant); if (full) { plant.Yield = plant.Capacity; ((Item)plant).ItemID = plant.FullGraphic; } else { plant.Yield = 0; ((Item)plant).ItemID = plant.PickGraphic; plant.regrowTimer.Start(); } }
public CropTimer(GarlicCrop plant) : base(TimeSpan.FromSeconds(600), TimeSpan.FromSeconds(15)) { Priority = TimerPriority.OneSecond; i_plant = plant; }
public CropTimer(GarlicCrop plant) : base(TimeSpan.FromMinutes(45), TimeSpan.FromMinutes(30)) { Priority = TimerPriority.OneSecond; i_plant = plant; }