* fix predicting sharpening
* finish shadow step
* tweak ice dagger
* shadow grab test
* fireball spell
* ice shards spell
* battle royale crates
* loot tables
* remove expedition ship
* dev update
* br map update
* spells tweak
* tips update
* some fixes
* biome forest spawner
* give keys to orgs
* mobs and aura spawners
* expedition update: goal, new ship, new map
* fix doors layers
* add new map proto
* translate keys
* Update crates.yml
* Update PostMapInitTest.cs
* fix spawning on expedition ship
* Fuck you, Randy. Remove nails
* fix lock systems
* localize tips
* some tweaks
* update ship, remove shrooms.
* fixes
* Update StationSystem.cs
* Revert "Update StationSystem.cs"
This reverts commit f632241324.
* Update expedition_test.yml
16 lines
377 B
C#
16 lines
377 B
C#
namespace Content.Shared._CP14.MagicSpell.Events;
|
|
|
|
public interface ICP14DelayedMagicEffect // The speak n spell interface
|
|
{
|
|
/// <summary>
|
|
/// Localized string spoken by the caster when casting this spell.
|
|
/// </summary>
|
|
public float Delay { get; }
|
|
|
|
public bool BreakOnMove { get; }
|
|
|
|
public bool BreakOnDamage { get; }
|
|
|
|
public bool Hidden{ get; }
|
|
}
|