Fame (modding)
< Modding
Modding/FameCode locations (what's this?):
• Cosmoteer.Modes.Career.Missions.Rewards.FameReward
There's FameReward
in the source code, which inherits from Reward
.
Creating a FameReward
goes through a spawner with these parameters :
Name | Type | Required? | Buffable? | Default value | Description |
---|---|---|---|---|---|
Fame | Range<int> | - | How much fame the reward gives, with respect to MaxFame. | ||
MaxFame | Range<int> | - | (Range<int>) int.MaxValue | How high the reward can push the actual fame.
If not specified, maxes out at 2147483647. | |
FamePerLowTier | Dictionary<int, Range<int>>? | - | - | ||
FamePerHighTier | Dictionary<int, Range<int>>? | - | - | ||
FamePerTierMultiplier | Range<float> | - | (Range<float>) 1f | ||
MaxFamePerLowTier | Dictionary<int, Range<int>>? | - | - | ||
MaxFamePerHighTier | Dictionary<int, Range<int>>? | - | - | ||
RoundToMultiple | int | - | 1 |
Notes
- Nothing yet