blob: 7b80e880347f268c5e5fbf0a5f385299e7bd0a6f (
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
26
27
28
29
30
|
/*
* SPDX-FileCopyrightText: 2024 Linnea Gräf <nea@nea.moe>
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
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
}
}
|