internal static void ShowPerkHelp(AbstractSoldierPerk perk)
    {
        if (perk == null)
        {
            return;
        }

        TooltipToDisplay = $"<color=green>{perk.Name()}</color>: {perk.Description()}";
    }
Exemplo n.º 2
0
 internal void AddAugmentToInventory(AbstractSoldierPerk abstractSoldierPerk)
 {
     throw new NotImplementedException();
 }
 internal static void ShowAugmentationHelp(AbstractSoldierPerk augmentation)
 {
     TooltipToDisplay = augmentation.Name() + ": " + augmentation.Description();
 }
 public RandomAugmentationMissionReward()
 {
     randomizedAugmentation = PerkAndAugmentationRegistrar.GetRandomAugmentation(Rarity.ANY);
 }