aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/gui/entity/ModifyAge.kt
blob: a65c368ddbd002bd9fc1757e7236d609b68ece6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package moe.nea.firmament.gui.entity

import com.google.gson.JsonObject
import net.minecraft.entity.LivingEntity
import net.minecraft.entity.decoration.ArmorStandEntity
import net.minecraft.entity.mob.ZombieEntity
import net.minecraft.entity.passive.PassiveEntity

object ModifyAge : EntityModifier {
    override fun apply(entity: LivingEntity, info: JsonObject): LivingEntity {
        val isBaby = info["baby"]?.asBoolean ?: false
        if (entity is PassiveEntity) {
            entity.breedingAge = if (isBaby) -1 else 1
        } else if (entity is ZombieEntity) {
            entity.isBaby = isBaby
        } else if (entity is ArmorStandEntity) {
            entity.isSmall = isBaby
        } else {
            error("Cannot set age for $entity")
        }
        return entity
    }

}