mirror of
https://gitlab.bixilon.de/bixilon/minosoft.git
synced 2025-09-14 09:56:37 -04:00
effects: darkness, hero_of_the_village
This commit is contained in:
parent
e193199d74
commit
1b262a317e
@ -36,12 +36,14 @@ object IntegratedStatusEffects : IntegratedRegistry<StatusEffectType>(
|
||||
MiningEffect.MiningFatigue,
|
||||
|
||||
VisionEffect.Blindness,
|
||||
VisionEffect.Darkness,
|
||||
VisionEffect.Nausea,
|
||||
VisionEffect.NightVision,
|
||||
|
||||
OtherEffects.BadOmen,
|
||||
OtherEffects.ConduitPower,
|
||||
OtherEffects.Glowing,
|
||||
OtherEffects.HeroOfTheVillage,
|
||||
OtherEffects.Hunger,
|
||||
OtherEffects.Invisibility,
|
||||
OtherEffects.Luck,
|
||||
|
@ -69,4 +69,9 @@ interface OtherEffects {
|
||||
override val RESOURCE_LOCATION = minecraft("bad_omen")
|
||||
override val color = 0x0B6138.asRGBColor()
|
||||
}
|
||||
|
||||
object HeroOfTheVillage : StatusEffectType(), OtherEffects, CompanionResourceLocation, Colored, BeneficalEffect {
|
||||
override val RESOURCE_LOCATION = minecraft("hero_of_the_village")
|
||||
override val color = 0x44FF44.asRGBColor()
|
||||
}
|
||||
}
|
||||
|
@ -38,4 +38,9 @@ interface VisionEffect {
|
||||
override val RESOURCE_LOCATION = minecraft("night_vision")
|
||||
override val color = 0x1F1FA1.asRGBColor()
|
||||
}
|
||||
|
||||
object Darkness : StatusEffectType(), VisionEffect, CompanionResourceLocation, Colored, HarmfulEffect {
|
||||
override val RESOURCE_LOCATION = minecraft("darkness")
|
||||
override val color = 0x292721.asRGBColor()
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user