mirror of
https://github.com/edgegamers/Jailbreak.git
synced 2025-12-05 20:40:29 -08:00
23 lines
716 B
C#
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}."
|
|
};
|
|
} |