コード例 #1
0
ファイル: EntityWhale.java プロジェクト: xbrianlee/MarineMod
 public void onLivingUpdate() {
   super.onLivingUpdate();
   if (isInWater()) {
     // randomMotionSpeed = 2.0F;
   }
 }
コード例 #2
0
ファイル: EntityWhale.java プロジェクト: xbrianlee/MarineMod
 protected void applyEntityAttributes() {
   super.applyEntityAttributes();
   this.getEntityAttribute(SharedMonsterAttributes.maxHealth).setBaseValue(50.0D);
   this.getEntityAttribute(SharedMonsterAttributes.movementSpeed).setBaseValue(1.0D);
 }
コード例 #3
0
ファイル: EntityWhale.java プロジェクト: xbrianlee/MarineMod
 public void onUpdate() {
   super.onUpdate();
 }