請問有修改研究室研究金錢的嗎?
請問有修改研究室研究金錢的嗎?可以改成研究20萬的,有嗎?
老是破產的人很缺錢,醫院價值上不去 你可以修改治疗费用 治療費比較高就算是10%有些也都不付錢阿:@:@:@ // Token: 0x06001670 RID: 5744 RVA: 0x00089D88 File Offset: 0x00087F88
public int GetTreatmentCharge(IllnessDefinition illness, RoomDefinition roomDefinition, ResearchManager researchManager)
{
int treatmentBaseCharge = this.GetTreatmentBaseCharge(illness, roomDefinition, researchManager);
return treatmentBaseCharge + this._priceModifiers.Percent(illness, treatmentBaseCharge) * 2;
}
// Token: 0x06001671 RID: 5745 RVA: 0x0001154E File Offset: 0x0000F74E
private int GetTreatmentBaseCharge(IllnessDefinition illness, RoomDefinition roomDefinition, ResearchManager researchManager)
{
return illness.GetTreatmentCostForRoom(roomDefinition, researchManager, this) * 2;
}
这个是两倍费用 本帖最后由 yoddo 于 2023-12-2 16:21 编辑
TH20.RewardMoney 类里
public void Apply(Objective objective, Level level)
{
level.FinanceManager.OnMoneyAwarded.InvokeSafe(this._amount*要增加金钱的倍数);
}
//这个是加钱的动作
public string Description(Objective objective)
{
return StringUtils.FormatCurrency(this._amount*要增加金钱的倍数, false, true);
}
// 这个是说明里看到加钱的金额
页:
[1]