Skip to content

Commit

Permalink
Merge branch 'dev' into events
Browse files Browse the repository at this point in the history
  • Loading branch information
louis1706 authored Dec 26, 2024
2 parents a401595 + e3c7be2 commit 24abcd7
Show file tree
Hide file tree
Showing 265 changed files with 8,084 additions and 3,589 deletions.
11 changes: 0 additions & 11 deletions .github/dependabot.yml

This file was deleted.

2 changes: 2 additions & 0 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ on:
push:
branches:
- dev
- scpsl14
pull_request:
branches:
- dev
- scpsl14
workflow_dispatch:

defaults:
Expand Down
19 changes: 14 additions & 5 deletions .github/workflows/pull_request_opened.yml
Original file line number Diff line number Diff line change
@@ -1,29 +1,38 @@
name: Labeler
name: Pull Request CI

on:
- pull_request_target
pull_request_target:
branches:
- '**'

defaults:
run:
working-directory: ./EXILED

jobs:
set-labels:
name: Set Labels
permissions:
contents: read
pull-requests: write
runs-on: ubuntu-latest
steps:
- name: Labeler
uses: actions/[email protected]
- uses: actions/[email protected]
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
configuration-path: .github/labeler.yml
sync-labels: true
assign-author:
name: Assign Author
runs-on: ubuntu-latest
permissions:
pull-requests: write

steps:
- uses: toshimaru/[email protected]
validate-pr-title:
name: Validate PR title
runs-on: ubuntu-latest
steps:
- uses: amannn/action-semantic-pull-request@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/push_nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ defaults:
working-directory: ./EXILED

env:
EXILED_REFERENCES_URL: https://ExMod-Team.github.io/SL-References/Master.zip
EXILED_REFERENCES_URL: https://ExMod-Team.github.io/SL-References/Dev.zip
EXILED_REFERENCES_PATH: ${{ github.workspace }}/EXILED/References

jobs:
Expand Down
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -373,4 +373,7 @@ NuGet.config
_site/

# JSON Schemas
JSON/
JSON/

# Mac DS_Store
.DS_Store
4 changes: 2 additions & 2 deletions EXILED/EXILED.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

<PropertyGroup Condition="$(BaseProperties) == '' OR $(BaseProperties) == 'true'">
<Authors>Exiled Official</Authors>
<Authors>ExMod Team</Authors>
</PropertyGroup>

<PropertyGroup Condition="$(BuildProperties) == '' OR $(BuildProperties) == 'true'">
Expand All @@ -15,7 +15,7 @@

<PropertyGroup>
<!-- This is the global version and is used for all projects that don't have a version -->
<Version Condition="$(Version) == ''">8.14.1</Version>
<Version Condition="$(Version) == ''">9.0.0</Version>
<!-- Enables public beta warning via the PUBLIC_BETA constant -->
<PublicBeta>false</PublicBeta>

Expand Down
5 changes: 5 additions & 0 deletions EXILED/Exiled.API/Enums/AdminToyType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,10 @@ public enum AdminToyType
/// ShootingTarget toy.
/// </summary>
ShootingTarget,

/// <summary>
/// Speaker toy.
/// </summary>
Speaker,
}
}
16 changes: 13 additions & 3 deletions EXILED/Exiled.API/Enums/CameraType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,6 @@ public enum CameraType
HczElevSysB,
HczHallway,
HczThreeWay,
HczServersBottom,
HczServersStairs,
HczServersTop,
HczTeslaGate,
HczTestroomBridge,
HczTestroomMain,
Expand Down Expand Up @@ -124,6 +121,19 @@ public enum CameraType
Hcz173ContChamber,
Hcz173Hallway,
HczCurve,
HczJunkMain,
HczJunkHallway,
HczCornerDeep,
HczDSS08,
HczMicroHIDStairs,
HczPipesHallway,
HczWarheadStarboardElevator,
HczMicroHIDMain,
HczWarheadTopElevators,
HczWarheadConnector,
HczWarheadPortElevator,
HczMicroHIDLab,
HczPipesMain,
#endregion
}
}
7 changes: 6 additions & 1 deletion EXILED/Exiled.API/Enums/DamageType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,11 @@ public enum DamageType
/// </summary>
SeveredHands,

/// <summary>
/// Damage caused by severed eyes.
/// </summary>
SeveredEyes,

/// <summary>
/// Damage caused by a custom source.
/// </summary>
Expand Down Expand Up @@ -250,4 +255,4 @@ public enum DamageType
/// </summary>
Marshmallow,
}
}
}
30 changes: 30 additions & 0 deletions EXILED/Exiled.API/Enums/DisruptorMode.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
// -----------------------------------------------------------------------
// <copyright file="DisruptorMode.cs" company="ExMod Team">
// Copyright (c) ExMod Team. All rights reserved.
// Licensed under the CC BY-SA 3.0 license.
// </copyright>
// -----------------------------------------------------------------------

namespace Exiled.API.Enums
{
/// <summary>
/// Represents disruptor's fire modes.
/// </summary>
public enum DisruptorMode
{
/// <summary>
/// Unknown mode.
/// </summary>
None,

/// <summary>
/// Single shot mode.
/// </summary>
Disintegrator,

/// <summary>
/// Triple shot mode.
/// </summary>
BurstFire,
}
}
39 changes: 24 additions & 15 deletions EXILED/Exiled.API/Enums/DoorType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@
namespace Exiled.API.Enums
{
using Exiled.API.Features.Doors;

using static Interactables.Interobjects.ElevatorManager;
using Interactables.Interobjects;

/// <summary>
/// Unique identifier for the different types of doors.
Expand Down Expand Up @@ -133,11 +132,6 @@ public enum DoorType
/// </summary>
EscapeSecondary,

/// <summary>
/// Represents the SERVERS_BOTTOM door.
/// </summary>
ServersBottom,

/// <summary>
/// Represents the GATE_A door.
/// </summary>
Expand All @@ -159,19 +153,24 @@ public enum DoorType
HeavyContainmentDoor,

/// <summary>
/// Represents the HID door.
/// Represents any heavy containment styled door.
/// </summary>
HeavyBulkDoor,

/// <summary>
/// Represents the HID_CHAMBER door.
/// </summary>
HID,
HIDChamber,

/// <summary>
/// Represents the HID_LEFT door.
/// Represents the HID_UPPER door.
/// </summary>
HIDLeft,
HIDUpper,

/// <summary>
/// Represents the HID_RIGHT door.
/// Represents the HID_LOWER door.
/// </summary>
HIDRight,
HIDLower,

/// <summary>
/// Represents the INTERCOM door.
Expand Down Expand Up @@ -231,7 +230,12 @@ public enum DoorType
/// <summary>
/// Represents the Gate in the Checkpoint between EZ and HCZ.
/// </summary>
CheckpointGate,
CheckpointGateA,

/// <summary>
/// Represents the Gate in the Checkpoint between EZ and HCZ.
/// </summary>
CheckpointGateB,

/// <summary>
/// Represents the Gate in the Checkpoint between EZ and HCZ.
Expand Down Expand Up @@ -269,7 +273,7 @@ public enum DoorType
ElevatorGateB,

/// <summary>
/// Represents the Elevator door for <see cref="ElevatorGroup.Nuke"/>.
/// Represents the Elevator door for <see cref="ElevatorGroup.Nuke01"/>.
/// </summary>
ElevatorNuke,

Expand Down Expand Up @@ -307,5 +311,10 @@ public enum DoorType
/// Represents the New Gate where Scp173 spawn in the <see cref="RoomType.Hcz049"/>.
/// </summary>
Scp173NewGate,

/// <summary>
/// Represents the ESCAPE_FINAL door.
/// </summary>
EscapeFinal,
}
}
22 changes: 21 additions & 1 deletion EXILED/Exiled.API/Enums/EffectType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public enum EffectType
/// <summary>
/// This EffectType do not exist it's only use when not found or error.
/// </summary>
None = -1, // TODO: remove = -1
None,

/// <summary>
/// The player isn't able to open their inventory or reload a weapon.
Expand Down Expand Up @@ -239,5 +239,25 @@ public enum EffectType
/// <see cref="CustomPlayerEffects.Slowness"/>.
/// </summary>
Slowness,

/// <summary>
/// <see cref="CustomPlayerEffects.Scp1344"/>.
/// </summary>
Scp1344,

/// <summary>
/// <see cref="CustomPlayerEffects.SeveredEyes"/>.
/// </summary>
SeveredEyes,

/// <summary>
/// <see cref="CustomPlayerEffects.PitDeath"/>.
/// </summary>
PitDeath,

/// <summary>
/// <see cref="CustomPlayerEffects.Blurred"/>.
/// </summary>
Blurred,
}
}
Loading

0 comments on commit 24abcd7

Please sign in to comment.