Method-namings for Entity-classes (#356)

This commit is contained in:
Sebastian Knackstedt 2018-12-30 15:37:40 +01:00 committed by Shadowfacts
parent 4fd7fd553d
commit c17d6ea7cb
24 changed files with 71 additions and 2 deletions

View File

@ -97,6 +97,7 @@ CLASS agv net/minecraft/entity/Entity
METHOD a rayTrace (DFLcmb;)Lcma; METHOD a rayTrace (DFLcmb;)Lcma;
METHOD a setSize (FF)V METHOD a setSize (FF)V
ARG 1 width ARG 1 width
ARG 2 height
METHOD a damage (Lage;F)Z METHOD a damage (Lage;F)Z
ARG 1 source ARG 1 source
ARG 2 amount ARG 2 amount

View File

@ -109,6 +109,7 @@ CLASS ahe net/minecraft/entity/LivingEntity
METHOD co getPotionEffects ()Ljava/util/Collection; METHOD co getPotionEffects ()Ljava/util/Collection;
METHOD cq isUndead ()Z METHOD cq isUndead ()Z
METHOD cr getHealth ()F METHOD cr getHealth ()F
METHOD ct dropInventory ()V
METHOD cv getDeathSound ()Lxm; METHOD cv getDeathSound ()Lxm;
METHOD cy getDamageTracker ()Lagd; METHOD cy getDamageTracker ()Lagd;
METHOD d applyDamage (Lage;F)V METHOD d applyDamage (Lage;F)V

View File

@ -34,6 +34,7 @@ CLASS aol net/minecraft/entity/decoration/ArmorStandEntity
METHOD a shouldRenderAtDistance (D)Z METHOD a shouldRenderAtDistance (D)Z
METHOD a setSize (FF)V METHOD a setSize (FF)V
ARG 1 width ARG 1 width
ARG 2 height
METHOD a damage (Lage;F)Z METHOD a damage (Lage;F)Z
ARG 1 source ARG 1 source
ARG 2 amount ARG 2 amount

View File

@ -15,6 +15,7 @@ CLASS aqm net/minecraft/entity/mob/ZombieEntity
METHOD W_ update ()V METHOD W_ update ()V
METHOD a setSize (FF)V METHOD a setSize (FF)V
ARG 1 width ARG 1 width
ARG 2 height
METHOD a initEquipment (Lafn;)V METHOD a initEquipment (Lafn;)V
METHOD a damage (Lage;F)Z METHOD a damage (Lage;F)Z
ARG 1 source ARG 1 source

View File

@ -8,6 +8,7 @@ CLASS amz net/minecraft/entity/passive/AbstractDonkeyEntity
METHOD aL getMountedHeightOffset ()D METHOD aL getMountedHeightOffset ()D
METHOD b writeCustomDataToTag (Lhs;)V METHOD b writeCustomDataToTag (Lhs;)V
METHOD ca initAttributes ()V METHOD ca initAttributes ()V
METHOD ct dropInventory ()V
METHOD dA hasChest ()Z METHOD dA hasChest ()Z
METHOD dB getInventorySize ()I METHOD dB getInventorySize ()I
METHOD t setHasChest (Z)V METHOD t setHasChest (Z)V

View File

@ -1,5 +1,5 @@
CLASS ama net/minecraft/entity/passive/AnimalEntity CLASS ama net/minecraft/entity/passive/AnimalEntity
FIELD bD inLove I FIELD bD loveTicks I
FIELD bE lovingPlayer Ljava/util/UUID; FIELD bE lovingPlayer Ljava/util/UUID;
FIELD bG spawningGround Lbgs; FIELD bG spawningGround Lbgs;
METHOD <init> (Lagz;Lbbp;)V METHOD <init> (Lagz;Lbbp;)V
@ -8,6 +8,8 @@ CLASS ama net/minecraft/entity/passive/AnimalEntity
METHOD a damage (Lage;F)Z METHOD a damage (Lage;F)Z
ARG 1 source ARG 1 source
ARG 2 amount ARG 2 amount
METHOD a canBreedWith (Lama;)Z
ARG 1 other
METHOD a interactMob (Larb;Lafo;)Z METHOD a interactMob (Larb;Lafo;)Z
ARG 1 player ARG 1 player
METHOD a canSpawn (Lbbq;Lahh;)Z METHOD a canSpawn (Lbbq;Lahh;)Z
@ -16,5 +18,11 @@ CLASS ama net/minecraft/entity/passive/AnimalEntity
METHOD b writeCustomDataToTag (Lhs;)V METHOD b writeCustomDataToTag (Lhs;)V
METHOD c canImmediatelyDespawn (D)Z METHOD c canImmediatelyDespawn (D)Z
ARG 1 distanceSquared ARG 1 distanceSquared
METHOD d setLoveTicks (I)V
ARG 1 loveTicks
METHOD d getCurrentExperience (Larb;)I METHOD d getCurrentExperience (Larb;)I
METHOD dF getLovingPlayer ()Lus;
METHOD dG isInLove ()Z
METHOD dH resetLoveTicks ()V
METHOD f isBreedingItem (Lawo;)Z
METHOD k updateMovement ()V METHOD k updateMovement ()V

View File

@ -21,6 +21,8 @@ CLASS amb net/minecraft/entity/passive/CatEntity
METHOD I mobTick ()V METHOD I mobTick ()V
METHOD W_ update ()V METHOD W_ update ()V
METHOD a createChild (Lags;)Lags; METHOD a createChild (Lags;)Lags;
METHOD a canBreedWith (Lama;)Z
ARG 1 other
METHOD a interactMob (Larb;Lafo;)Z METHOD a interactMob (Larb;Lafo;)Z
ARG 1 player ARG 1 player
METHOD a setCollarColor (Lavl;)V METHOD a setCollarColor (Lavl;)V
@ -40,6 +42,7 @@ CLASS amb net/minecraft/entity/passive/CatEntity
METHOD dJ getOcelotType ()I METHOD dJ getOcelotType ()I
METHOD dM getCollarColor ()Lavl; METHOD dM getCollarColor ()Lavl;
METHOD e getHurtSound (Lage;)Lxm; METHOD e getHurtSound (Lage;)Lxm;
METHOD f isBreedingItem (Lawo;)Z
METHOD n prepareGoals ()V METHOD n prepareGoals ()V
METHOD q getOcelotType (I)V METHOD q getOcelotType (I)V
METHOD y_ initDataTracker ()V METHOD y_ initDataTracker ()V

View File

@ -1,6 +1,7 @@
CLASS amc net/minecraft/entity/passive/ChickenEntity CLASS amc net/minecraft/entity/passive/ChickenEntity
FIELD bJ eggLayTime I FIELD bJ eggLayTime I
FIELD bK isJockey Z FIELD bK jockey Z
FIELD bL BREEDING_INGREDIENT Layt;
METHOD D getAmbientSound ()Lxm; METHOD D getAmbientSound ()Lxm;
METHOD a createChild (Lags;)Lags; METHOD a createChild (Lags;)Lags;
METHOD a playStepSound (Let;Lbpm;)V METHOD a playStepSound (Let;Lbpm;)V
@ -16,6 +17,10 @@ CLASS amc net/minecraft/entity/passive/ChickenEntity
METHOD ca initAttributes ()V METHOD ca initAttributes ()V
METHOD cv getDeathSound ()Lxm; METHOD cv getDeathSound ()Lxm;
METHOD d getCurrentExperience (Larb;)I METHOD d getCurrentExperience (Larb;)I
METHOD dz hasJockey ()Z
METHOD e getHurtSound (Lage;)Lxm; METHOD e getHurtSound (Lage;)Lxm;
METHOD f isBreedingItem (Lawo;)Z
METHOD k updateMovement ()V METHOD k updateMovement ()V
METHOD n prepareGoals ()V METHOD n prepareGoals ()V
METHOD s setHasJockey (Z)V
ARG 1 hasJockey

View File

@ -1,5 +1,7 @@
CLASS anb net/minecraft/entity/passive/DonkeyEntity CLASS anb net/minecraft/entity/passive/DonkeyEntity
METHOD D getAmbientSound ()Lxm; METHOD D getAmbientSound ()Lxm;
METHOD a createChild (Lags;)Lags; METHOD a createChild (Lags;)Lags;
METHOD a canBreedWith (Lama;)Z
ARG 1 other
METHOD cv getDeathSound ()Lxm; METHOD cv getDeathSound ()Lxm;
METHOD e getHurtSound (Lage;)Lxm; METHOD e getHurtSound (Lage;)Lxm;

View File

@ -15,12 +15,16 @@ CLASS ana net/minecraft/entity/passive/HorseBaseEntity
ARG 1 source ARG 1 source
ARG 2 amount ARG 2 amount
METHOD a createChild (Lags;)Lags; METHOD a createChild (Lags;)Lags;
METHOD a canBreedWith (Lama;)Z
ARG 1 other
METHOD a canBeLeashedBy (Larb;)Z METHOD a canBeLeashedBy (Larb;)Z
METHOD a prepareEntityData (Lbbq;Lafn;Lahh;Lahp;Lhs;)Lahp; METHOD a prepareEntityData (Lbbq;Lafn;Lahh;Lahp;Lhs;)Lahp;
ARG 3 difficulty ARG 3 difficulty
METHOD a playStepSound (Let;Lbpm;)V METHOD a playStepSound (Let;Lbpm;)V
ARG 1 pos ARG 1 pos
METHOD a readCustomDataFromTag (Lhs;)V METHOD a readCustomDataFromTag (Lhs;)V
METHOD a setSize (Z)V
ARG 1 child
METHOD aE isPushable ()Z METHOD aE isPushable ()Z
METHOD a_ setJumpStrength (I)V METHOD a_ setJumpStrength (I)V
METHOD b startJumping (I)V METHOD b startJumping (I)V
@ -33,6 +37,7 @@ CLASS ana net/minecraft/entity/passive/HorseBaseEntity
ARG 1 fallDistance ARG 1 fallDistance
METHOD cH getSoundVolume ()F METHOD cH getSoundVolume ()F
METHOD ca initAttributes ()V METHOD ca initAttributes ()V
METHOD ct dropInventory ()V
METHOD cv getDeathSound ()Lxm; METHOD cv getDeathSound ()Lxm;
METHOD d setHorseFlag (IZ)V METHOD d setHorseFlag (IZ)V
ARG 1 index ARG 1 index
@ -44,6 +49,7 @@ CLASS ana net/minecraft/entity/passive/HorseBaseEntity
METHOD dR getTemper ()I METHOD dR getTemper ()I
METHOD dW isSaddled ()Z METHOD dW isSaddled ()Z
METHOD e getHurtSound (Lage;)Lxm; METHOD e getHurtSound (Lage;)Lxm;
METHOD f isBreedingItem (Lawo;)Z
METHOD k updateMovement ()V METHOD k updateMovement ()V
METHOD n prepareGoals ()V METHOD n prepareGoals ()V
METHOD q getHorseFlag (I)Z METHOD q getHorseFlag (I)Z

View File

@ -11,6 +11,8 @@ CLASS anc net/minecraft/entity/passive/HorseEntity
METHOD W_ update ()V METHOD W_ update ()V
METHOD a onInvChange (Lafi;)V METHOD a onInvChange (Lafi;)V
METHOD a createChild (Lags;)Lags; METHOD a createChild (Lags;)Lags;
METHOD a canBreedWith (Lama;)Z
ARG 1 other
METHOD a interactMob (Larb;Lafo;)Z METHOD a interactMob (Larb;Lafo;)Z
ARG 1 player ARG 1 player
METHOD a prepareEntityData (Lbbq;Lafn;Lahh;Lahp;Lhs;)Lahp; METHOD a prepareEntityData (Lbbq;Lafn;Lahh;Lahp;Lhs;)Lahp;

View File

@ -11,6 +11,8 @@ CLASS ane net/minecraft/entity/passive/LlamaEntity
METHOD a createChild (Lags;)Lags; METHOD a createChild (Lags;)Lags;
METHOD a attack (Lahe;F)V METHOD a attack (Lahe;F)V
ARG 1 target ARG 1 target
METHOD a canBreedWith (Lama;)Z
ARG 1 other
METHOD a prepareEntityData (Lbbq;Lafn;Lahh;Lahp;Lhs;)Lahp; METHOD a prepareEntityData (Lbbq;Lafn;Lahh;Lahp;Lhs;)Lahp;
ARG 3 difficulty ARG 3 difficulty
METHOD a playStepSound (Let;Lbpm;)V METHOD a playStepSound (Let;Lbpm;)V

View File

@ -2,6 +2,8 @@ CLASS amj net/minecraft/entity/passive/OcelotEntity
CLASS amj$a OcelotFleeGoal CLASS amj$a OcelotFleeGoal
METHOD a canStart ()Z METHOD a canStart ()Z
METHOD b shouldContinue ()Z METHOD b shouldContinue ()Z
CLASS amj$b
FIELD bD TAMING_INGREDIENT Layt;
METHOD D getAmbientSound ()Lxm; METHOD D getAmbientSound ()Lxm;
METHOD I mobTick ()V METHOD I mobTick ()V
METHOD a damage (Lage;F)Z METHOD a damage (Lage;F)Z
@ -22,5 +24,6 @@ CLASS amj net/minecraft/entity/passive/OcelotEntity
METHOD ca initAttributes ()V METHOD ca initAttributes ()V
METHOD cv getDeathSound ()Lxm; METHOD cv getDeathSound ()Lxm;
METHOD e getHurtSound (Lage;)Lxm; METHOD e getHurtSound (Lage;)Lxm;
METHOD f isBreedingItem (Lawo;)Z
METHOD n prepareGoals ()V METHOD n prepareGoals ()V
METHOD y_ initDataTracker ()V METHOD y_ initDataTracker ()V

View File

@ -51,5 +51,6 @@ CLASS amk net/minecraft/entity/passive/PandaEntity
METHOD ca initAttributes ()V METHOD ca initAttributes ()V
METHOD cv getDeathSound ()Lxm; METHOD cv getDeathSound ()Lxm;
METHOD e getHurtSound (Lage;)Lxm; METHOD e getHurtSound (Lage;)Lxm;
METHOD f isBreedingItem (Lawo;)Z
METHOD n prepareGoals ()V METHOD n prepareGoals ()V
METHOD y_ initDataTracker ()V METHOD y_ initDataTracker ()V

View File

@ -1,11 +1,14 @@
CLASS aml net/minecraft/entity/passive/ParrotEntity CLASS aml net/minecraft/entity/passive/ParrotEntity
FIELD bM ATTR_VARIANT Lpr; FIELD bM ATTR_VARIANT Lpr;
FIELD bP TAMING_INGREDIENTS Ljava/util/Set;
METHOD C pushAway (Lagv;)V METHOD C pushAway (Lagv;)V
METHOD D getAmbientSound ()Lxm; METHOD D getAmbientSound ()Lxm;
METHOD a damage (Lage;F)Z METHOD a damage (Lage;F)Z
ARG 1 source ARG 1 source
ARG 2 amount ARG 2 amount
METHOD a createChild (Lags;)Lags; METHOD a createChild (Lags;)Lags;
METHOD a canBreedWith (Lama;)Z
ARG 1 other
METHOD a interactMob (Larb;Lafo;)Z METHOD a interactMob (Larb;Lafo;)Z
ARG 1 player ARG 1 player
METHOD a prepareEntityData (Lbbq;Lafn;Lahh;Lahp;Lhs;)Lahp; METHOD a prepareEntityData (Lbbq;Lafn;Lahh;Lahp;Lhs;)Lahp;
@ -26,6 +29,7 @@ CLASS aml net/minecraft/entity/passive/ParrotEntity
METHOD cv getDeathSound ()Lxm; METHOD cv getDeathSound ()Lxm;
METHOD dJ getVariant ()I METHOD dJ getVariant ()I
METHOD e getHurtSound (Lage;)Lxm; METHOD e getHurtSound (Lage;)Lxm;
METHOD f isBreedingItem (Lawo;)Z
METHOD k updateMovement ()V METHOD k updateMovement ()V
METHOD n prepareGoals ()V METHOD n prepareGoals ()V
METHOD q setVariant (I)V METHOD q setVariant (I)V

View File

@ -1,15 +1,22 @@
CLASS ags net/minecraft/entity/passive/PassiveEntity CLASS ags net/minecraft/entity/passive/PassiveEntity
FIELD a breedingAge I FIELD a breedingAge I
FIELD bD CHILD Lpr; FIELD bD CHILD Lpr;
FIELD bE lastWidth F
FIELD bF lastHeight F
METHOD <init> (Lagz;Lbbp;)V METHOD <init> (Lagz;Lbbp;)V
ARG 1 type ARG 1 type
METHOD a setSize (F)V
ARG 1 multiplier
METHOD a setSize (FF)V METHOD a setSize (FF)V
ARG 1 width ARG 1 width
ARG 2 height
METHOD a createChild (Lags;)Lags; METHOD a createChild (Lags;)Lags;
METHOD a interactMob (Larb;Lafo;)Z METHOD a interactMob (Larb;Lafo;)Z
ARG 1 player ARG 1 player
METHOD a readCustomDataFromTag (Lhs;)V METHOD a readCustomDataFromTag (Lhs;)V
METHOD a onTrackedDataSet (Lpr;)V METHOD a onTrackedDataSet (Lpr;)V
METHOD a setSize (Z)V
ARG 1 child
METHOD b writeCustomDataToTag (Lhs;)V METHOD b writeCustomDataToTag (Lhs;)V
METHOD b_ setBreedingAge (I)V METHOD b_ setBreedingAge (I)V
METHOD i getBreedingAge ()I METHOD i getBreedingAge ()I

View File

@ -1,5 +1,6 @@
CLASS amm net/minecraft/entity/passive/PigEntity CLASS amm net/minecraft/entity/passive/PigEntity
FIELD bD SADDLED Lpr; FIELD bD SADDLED Lpr;
FIELD bF BREEDING_INGREDIENT Layt;
METHOD D getAmbientSound ()Lxm; METHOD D getAmbientSound ()Lxm;
METHOD a createChild (Lags;)Lags; METHOD a createChild (Lags;)Lags;
METHOD a onStruckByLightning (Laov;)V METHOD a onStruckByLightning (Laov;)V
@ -13,9 +14,11 @@ CLASS amm net/minecraft/entity/passive/PigEntity
METHOD b writeCustomDataToTag (Lhs;)V METHOD b writeCustomDataToTag (Lhs;)V
METHOD bP getPrimaryPassenger ()Lagv; METHOD bP getPrimaryPassenger ()Lagv;
METHOD ca initAttributes ()V METHOD ca initAttributes ()V
METHOD ct dropInventory ()V
METHOD cv getDeathSound ()Lxm; METHOD cv getDeathSound ()Lxm;
METHOD dz isSaddled ()Z METHOD dz isSaddled ()Z
METHOD e getHurtSound (Lage;)Lxm; METHOD e getHurtSound (Lage;)Lxm;
METHOD f isBreedingItem (Lawo;)Z
METHOD n prepareGoals ()V METHOD n prepareGoals ()V
METHOD s setSaddled (Z)V METHOD s setSaddled (Z)V
METHOD y_ initDataTracker ()V METHOD y_ initDataTracker ()V

View File

@ -19,5 +19,6 @@ CLASS amn net/minecraft/entity/passive/PolarBearEntity
METHOD ca initAttributes ()V METHOD ca initAttributes ()V
METHOD cv getDeathSound ()Lxm; METHOD cv getDeathSound ()Lxm;
METHOD e getHurtSound (Lage;)Lxm; METHOD e getHurtSound (Lage;)Lxm;
METHOD f isBreedingItem (Lawo;)Z
METHOD n prepareGoals ()V METHOD n prepareGoals ()V
METHOD y_ initDataTracker ()V METHOD y_ initDataTracker ()V

View File

@ -8,6 +8,7 @@ CLASS amo net/minecraft/entity/passive/PufferfishEntity
METHOD W_ update ()V METHOD W_ update ()V
METHOD a setSize (FF)V METHOD a setSize (FF)V
ARG 1 width ARG 1 width
ARG 2 height
METHOD a readCustomDataFromTag (Lhs;)V METHOD a readCustomDataFromTag (Lhs;)V
METHOD a onTrackedDataSet (Lpr;)V METHOD a onTrackedDataSet (Lpr;)V
METHOD b onPlayerCollision (Larb;)V METHOD b onPlayerCollision (Larb;)V

View File

@ -1,4 +1,5 @@
CLASS amp net/minecraft/entity/passive/RabbitEntity CLASS amp net/minecraft/entity/passive/RabbitEntity
CLASS amp$a
CLASS amp$b RabbitFleeGoal CLASS amp$b RabbitFleeGoal
METHOD a canStart ()Z METHOD a canStart ()Z
CLASS amp$d RabbitJumpControl CLASS amp$d RabbitJumpControl
@ -23,6 +24,7 @@ CLASS amp net/minecraft/entity/passive/RabbitEntity
ARG 1 source ARG 1 source
ARG 2 amount ARG 2 amount
METHOD a createChild (Lags;)Lags; METHOD a createChild (Lags;)Lags;
METHOD a isBreedingItem (Lawj;)Z
METHOD a prepareEntityData (Lbbq;Lafn;Lahh;Lahp;Lhs;)Lahp; METHOD a prepareEntityData (Lbbq;Lafn;Lahh;Lahp;Lhs;)Lahp;
ARG 3 difficulty ARG 3 difficulty
METHOD a canSpawn (Lbbq;Lahh;)Z METHOD a canSpawn (Lbbq;Lahh;)Z
@ -35,6 +37,7 @@ CLASS amp net/minecraft/entity/passive/RabbitEntity
METHOD cv getDeathSound ()Lxm; METHOD cv getDeathSound ()Lxm;
METHOD dB getRabbitType ()I METHOD dB getRabbitType ()I
METHOD e getHurtSound (Lage;)Lxm; METHOD e getHurtSound (Lage;)Lxm;
METHOD f isBreedingItem (Lawo;)Z
METHOD k updateMovement ()V METHOD k updateMovement ()V
METHOD n prepareGoals ()V METHOD n prepareGoals ()V
METHOD o doJump (Z)V METHOD o doJump (Z)V

View File

@ -2,10 +2,14 @@ CLASS amr net/minecraft/entity/passive/SheepEntity
CLASS amr$1 CLASS amr$1
METHOD a canUse (Larb;)Z METHOD a canUse (Larb;)Z
FIELD bD COLOR Lpr; FIELD bD COLOR Lpr;
FIELD bE dyeCraftingInventory Latg;
FIELD bF DROPS Ljava/util/Map;
FIELD bH COLORS Ljava/util/Map;
METHOD D getAmbientSound ()Lxm; METHOD D getAmbientSound ()Lxm;
METHOD F getLootTableId ()Lqc; METHOD F getLootTableId ()Lqc;
METHOD I mobTick ()V METHOD I mobTick ()V
METHOD a createChild (Lags;)Lags; METHOD a createChild (Lags;)Lags;
METHOD a getChildColor (Lama;Lama;)Lavl;
METHOD a interactMob (Larb;Lafo;)Z METHOD a interactMob (Larb;Lafo;)Z
ARG 1 player ARG 1 player
METHOD a getRgbColor (Lavl;)[F METHOD a getRgbColor (Lavl;)[F
@ -15,6 +19,7 @@ CLASS amr net/minecraft/entity/passive/SheepEntity
METHOD a playStepSound (Let;Lbpm;)V METHOD a playStepSound (Let;Lbpm;)V
ARG 1 pos ARG 1 pos
METHOD a readCustomDataFromTag (Lhs;)V METHOD a readCustomDataFromTag (Lhs;)V
METHOD a generateDefaultColor (Ljava/util/Random;)Lavl;
METHOD b createChild (Lags;)Lamr; METHOD b createChild (Lags;)Lamr;
METHOD b setColor (Lavl;)V METHOD b setColor (Lavl;)V
METHOD b writeCustomDataToTag (Lhs;)V METHOD b writeCustomDataToTag (Lhs;)V
@ -23,6 +28,7 @@ CLASS amr net/minecraft/entity/passive/SheepEntity
METHOD cv getDeathSound ()Lxm; METHOD cv getDeathSound ()Lxm;
METHOD dA getColor ()Lavl; METHOD dA getColor ()Lavl;
METHOD dB isSheared ()Z METHOD dB isSheared ()Z
METHOD dz dropItems ()V
METHOD e getHurtSound (Lage;)Lxm; METHOD e getHurtSound (Lage;)Lxm;
METHOD k updateMovement ()V METHOD k updateMovement ()V
METHOD n prepareGoals ()V METHOD n prepareGoals ()V

View File

@ -52,6 +52,8 @@ CLASS amw net/minecraft/entity/passive/TurtleEntity
METHOD a playStepSound (Let;Lbpm;)V METHOD a playStepSound (Let;Lbpm;)V
ARG 1 pos ARG 1 pos
METHOD a readCustomDataFromTag (Lhs;)V METHOD a readCustomDataFromTag (Lhs;)V
METHOD a setSize (Z)V
ARG 1 child
METHOD af getSoundSwim ()Lxm; METHOD af getSoundSwim ()Lxm;
METHOD b createNavigation (Lbbp;)Lalg; METHOD b createNavigation (Lbbp;)Lalg;
METHOD b writeCustomDataToTag (Lhs;)V METHOD b writeCustomDataToTag (Lhs;)V
@ -63,6 +65,7 @@ CLASS amw net/minecraft/entity/passive/TurtleEntity
METHOD dC getTravelPos ()Let; METHOD dC getTravelPos ()Let;
METHOD dz getHasEgg ()Z METHOD dz getHasEgg ()Z
METHOD e getHurtSound (Lage;)Lxm; METHOD e getHurtSound (Lage;)Lxm;
METHOD f isBreedingItem (Lawo;)Z
METHOD g setHomePos (Let;)V METHOD g setHomePos (Let;)V
METHOD h setTravelPos (Let;)V METHOD h setTravelPos (Let;)V
METHOD k updateMovement ()V METHOD k updateMovement ()V

View File

@ -13,6 +13,8 @@ CLASS amy net/minecraft/entity/passive/WolfEntity
ARG 1 source ARG 1 source
ARG 2 amount ARG 2 amount
METHOD a createChild (Lags;)Lags; METHOD a createChild (Lags;)Lags;
METHOD a canBreedWith (Lama;)Z
ARG 1 other
METHOD a canBeLeashedBy (Larb;)Z METHOD a canBeLeashedBy (Larb;)Z
METHOD a interactMob (Larb;Lafo;)Z METHOD a interactMob (Larb;Lafo;)Z
ARG 1 player ARG 1 player
@ -28,6 +30,7 @@ CLASS amy net/minecraft/entity/passive/WolfEntity
METHOD dK isAngry ()Z METHOD dK isAngry ()Z
METHOD e getHurtSound (Lage;)Lxm; METHOD e getHurtSound (Lage;)Lxm;
METHOD f setTarget (Lahe;)V METHOD f setTarget (Lahe;)V
METHOD f isBreedingItem (Lawo;)Z
METHOD k updateMovement ()V METHOD k updateMovement ()V
METHOD n prepareGoals ()V METHOD n prepareGoals ()V
METHOD t setTamed (Z)V METHOD t setTamed (Z)V

View File

@ -133,6 +133,7 @@ CLASS arb net/minecraft/entity/player/PlayerEntity
METHOD cU getAbsorptionAmount ()F METHOD cU getAbsorptionAmount ()F
METHOD cW getMainHand ()Lahd; METHOD cW getMainHand ()Lahd;
METHOD ca initAttributes ()V METHOD ca initAttributes ()V
METHOD ct dropInventory ()V
METHOD cv getDeathSound ()Lxm; METHOD cv getDeathSound ()Lxm;
METHOD d addExperience (I)V METHOD d addExperience (I)V
METHOD d applyDamage (Lage;F)V METHOD d applyDamage (Lage;F)V