Files
Jailbreak/lang/Jailbreak.English/Rebel/JihadC4Notifications.cs
2024-07-11 19:48:57 -07:00

23 lines
716 B
C#

using CounterStrikeSharp.API.Modules.Utils;
using Jailbreak.Formatting.Base;
using Jailbreak.Formatting.Logistics;
using Jailbreak.Formatting.Views;
namespace Jailbreak.English.Rebel;
public class JihadC4Notifications : IJihadC4Notifications,
ILanguage<Formatting.Languages.English> {
public IView JihadC4Pickup
=> new SimpleView {
RebelNotifications.PREFIX, "You picked up a Jihad C4!"
};
public IView JihadC4Received
=> new SimpleView { RebelNotifications.PREFIX, "You received a Jihad C4!" };
public IView JihadC4Usage1
=> new SimpleView {
RebelNotifications.PREFIX,
$"To detonate it, hold it out and press {ChatColors.Yellow + "E" + ChatColors.Default}."
};
}