Boss teleporter

This commit is contained in:
Marco 2025-04-29 18:14:09 +02:00
commit a1e87af061
10 changed files with 178 additions and 13 deletions

View file

@ -1,6 +1,7 @@
using System.Collections.Generic;
using System.Linq;
using Cirno.Scripts.Activables;
using Cirno.Scripts.Actors;
using Cirno.Scripts.Resources.Loot;
using Cirno.Scripts.Resources.Roguelite;
using Cirno.Scripts.Utils;
@ -31,6 +32,8 @@ public partial class RogueliteMapTheme : Resource
[Export] public PackedScene ShroudPrefab { get; set; }
[Export] public LootItem PointItemResource { get; set; }
[Export] public PackedScene TeleporterPrefab { get; set; }
[ExportGroup("Chances")]
[Export] public double ChestChance { get; set; }
@ -53,4 +56,7 @@ public partial class RogueliteMapTheme : Resource
return ChestLootQueue;
}
public List<TeleporterMarker> TeleportersList { get; set; } = [];
}