地图新增NPC和子区域属性

This commit is contained in:
milimoe 2025-06-29 18:04:38 +08:00
parent 236c12a5f4
commit 425b46ac02
Signed by: milimoe
GPG Key ID: 9554D37E4B8991D0

View File

@ -16,6 +16,8 @@ namespace Milimoe.FunGame.Core.Entity
public int Temperature { get; set; } = 15; public int Temperature { get; set; } = 15;
public Dictionary<string, int> Weathers { get; } = []; public Dictionary<string, int> Weathers { get; } = [];
public RarityType Difficulty { get; set; } = RarityType.OneStar; public RarityType Difficulty { get; set; } = RarityType.OneStar;
public List<string> NPCs { get; set; } = [];
public List<string> Areas { get; set; } = [];
public bool ChangeWeather(string weather) public bool ChangeWeather(string weather)
{ {