コード例 #1
0
    internal static void ShowPerkHelp(AbstractSoldierPerk perk)
    {
        if (perk == null)
        {
            return;
        }

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