Remove internal phase comments and format code

Strip all Phase references, TODO/FUTURE roadmap notes, and internal
planning comments from the codebase. Run Prettier for consistent
formatting across all Java files.
This commit is contained in:
NotEvil
2026-04-12 01:24:49 +02:00
parent 73d70e212d
commit a71093ba9c
482 changed files with 8500 additions and 5155 deletions

View File

@@ -16,7 +16,6 @@ import net.minecraft.world.level.Level;
/**
* Elite Kidnapper - Rare, faster, more dangerous kidnapper variant.
*
* Phase 14.3.6: Elite Kidnappers
*
* Differences from regular EntityKidnapper:
* - Faster movement speed (0.35 vs 0.27)
@@ -31,9 +30,7 @@ import net.minecraft.world.level.Level;
*/
public class EntityKidnapperElite extends EntityKidnapper {
// ========================================
// CONSTANTS
// ========================================
public static final double ELITE_MAX_HEALTH = 40.0D;
public static final double ELITE_MOVEMENT_SPEED = 0.35D;
@@ -43,9 +40,7 @@ public class EntityKidnapperElite extends EntityKidnapper {
public static final int ELITE_CAPTURE_TIME_TICKS = 10;
public static final int ELITE_NAME_COLOR = 0xAA0000;
// ========================================
// CONSTRUCTOR
// ========================================
public EntityKidnapperElite(
EntityType<? extends EntityKidnapperElite> type,
@@ -54,9 +49,7 @@ public class EntityKidnapperElite extends EntityKidnapper {
super(type, level);
}
// ========================================
// ATTRIBUTES
// ========================================
/**
* Create elite kidnapper attributes.
@@ -71,9 +64,7 @@ public class EntityKidnapperElite extends EntityKidnapper {
.add(Attributes.ATTACK_DAMAGE, ELITE_ATTACK_DAMAGE);
}
// ========================================
// VARIANT SYSTEM - Override virtual methods
// ========================================
@Override
public KidnapperVariant lookupVariantById(String variantId) {
@@ -83,7 +74,8 @@ public class EntityKidnapperElite extends EntityKidnapper {
@Override
public KidnapperVariant computeVariantForEntity(UUID entityUUID) {
Gender preferredGender = SettingsAccessor.getPreferredSpawnGender(
this.level() != null ? this.level().getGameRules() : null);
this.level() != null ? this.level().getGameRules() : null
);
return EliteKidnapperSkinManager.CORE.getVariantForEntity(
entityUUID,
preferredGender
@@ -112,9 +104,7 @@ public class EntityKidnapperElite extends EntityKidnapper {
return "EliteVariantName";
}
// ========================================
// CAPTURE TIMING (Faster for Elite)
// ========================================
/**
* Elite kidnappers tie up targets in half the time.
@@ -132,9 +122,7 @@ public class EntityKidnapperElite extends EntityKidnapper {
return ELITE_CAPTURE_TIME_TICKS;
}
// ========================================
// DISPLAY
// ========================================
@Override
public Component getDisplayName() {
@@ -143,9 +131,7 @@ public class EntityKidnapperElite extends EntityKidnapper {
);
}
// ========================================
// OVERRIDES
// ========================================
/**
* Elite kidnappers use higher item probabilities.
@@ -160,9 +146,7 @@ public class EntityKidnapperElite extends EntityKidnapper {
return KidnapperItemSelector.selectForEliteKidnapper();
}
// ========================================
// DIALOGUE SPEAKER (Elite-specific)
// ========================================
@Override
public SpeakerType getSpeakerType() {