Skip to content

Commit 20f0e9c

Browse files
committed
chungus
1 parent f5aa6fd commit 20f0e9c

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

src/overblocks/content/OBBlocks.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ public static void load(){
195195
outputItem = new ItemStack(OBItems.diseaseVector, 1);
196196

197197
size = 2;
198-
craftTime = 80f;
198+
craftTime = 40f;
199199

200200
consumePower(0.3f);
201201
consumeItems(with(OBItems.diseaseFragments, 5, Items.sporePod, 2));

src/overblocks/content/OBUnitTypes.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,12 @@
1414

1515
import static ent.anno.Annotations.EntityDef;
1616

17+
@SuppressWarnings("unused")
1718
public class OBUnitTypes{
1819
//vanilla entities units
1920

20-
//dodger unit
21-
public static @EntityDef({Unitc.class, Mechc.class, Dodgec.class}) UnitType relayer;
21+
//relayer tree
22+
public static @EntityDef({Unitc.class, Mechc.class, Dodgec.class}) UnitType relayer, announcer, agent, spy, undercover;
2223

2324
//mr. boomerang unit?
2425

@@ -29,7 +30,7 @@ public class OBUnitTypes{
2930
public static void load(){
3031

3132
relayer = new OBUnitType("relayer", DodgeMechUnit.class){{
32-
dodge = 0.75f;
33+
dodge = 0.5f;
3334
speed = 0.5f;
3435
hitSize = 8f;
3536
health = 100;

src/overblocks/entities/DodgeComp.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ abstract class DodgeComp implements Shieldc{
1717
@Import static float hitDuration;
1818
@Import UnitType type;
1919

20-
float damageDodge(float amount){
20+
public float damageDodge(float amount){
2121
return type instanceof OBUnitType ob && Mathf.chance(ob.dodge) ? 0 : amount;
2222
}
2323

0 commit comments

Comments
 (0)