2018-12-30 18:00:05 +08:00
|
|
|
using StardewValley;
|
2018-09-19 13:35:36 +08:00
|
|
|
|
|
|
|
namespace Omegasis.HappyBirthday
|
|
|
|
{
|
2018-12-30 18:00:05 +08:00
|
|
|
// TODO: Make all the events
|
|
|
|
// Resources:https://stardewvalleywiki.com/Modding:Event_data
|
2018-09-19 13:35:36 +08:00
|
|
|
public class BirthdayEvents
|
|
|
|
{
|
|
|
|
public Event communityCenterJunimoEvent;
|
|
|
|
public Event marriedNoKidsEvent;
|
|
|
|
public Event surpriseBirthdayPartyEvent;
|
|
|
|
public Event marriedWithOneKidEvent;
|
|
|
|
public Event marriedWithTwoKidsEvent;
|
|
|
|
|
|
|
|
public BirthdayEvents()
|
|
|
|
{
|
2018-12-30 18:00:05 +08:00
|
|
|
this.initializeEvents();
|
2018-09-19 13:35:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public void initializeEvents()
|
|
|
|
{
|
|
|
|
Event e = new Event("", -1, Game1.player);
|
|
|
|
Game1.player.currentLocation.currentEvent = new Event();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|