mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-10 06:05:54 +00:00
Boss teleporter
This commit is contained in:
parent
d5eda3c7b4
commit
a1e87af061
10 changed files with 178 additions and 13 deletions
|
|
@ -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; } = [];
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue