seriouslysean / monster-hunter-now-events

A tool that auto-generates calendar events for Monster Hunter Now by scraping web news articles, processing them with AI, and creating a convenient calendar subscription.
https://seriouslysean.github.io/monster-hunter-now-events/
MIT License
8 stars 9 forks source link

[Feature]: Handle event occurring multiple times in one day #54

Open seriouslysean opened 8 months ago

seriouslysean commented 8 months ago

Feature Description

I don't even know if this is possible, but consider an event that occurs on a day (like 11-05-2023), what if it happens twice in one day? Something like this:

{
    "summary": "Jyuratodus Weekend",
    "description": "Jyuratodus will appear more frequently in Swamp Habitats for all hunters HR11 and above. During the event, monsters in all Habitats will reappear in shorter intervals than usual. Jyuratodus will appear more frequently than usual for all hunters HR11 and above.",
    "dates": [
        {
            "start": "2023-11-03T12:00:00",
            "end": "2023-11-03T15:00:00",
            "allDay": false
        },
        {
            "start": "2023-11-03T17:00:00",
            "end": "2023-11-03T20:00:00",
            "allDay": false
        },
    ]
}

This isn't a real scenario, but maybe not out of the realm of possibility. This goes against how events are currently considered and may need to be dug in to a bit.