Files
GrepoSimu/src/main/java/com/bernard/greposimu/engine/game/Effects.java
T

27 lines
471 B
Java
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package com.bernard.greposimu.engine.game;
public class Effects {
/*
* PC boost per level
*/
public static final double olympicSensesGrepolympiaSummerBoost(int level) {
return 0.1*level;
}
/*
* Defense boost per level
*/
public static final double olympicTorchGrepolympiaSummerBoost(int level) {
return 0.05*level;
}
/*
* Defense boost per level
*/
public static final double soteriasShrineBoost(int level) {
return 0.007*level;
}
}