mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
Format fixes.
This commit is contained in:
parent
80ccda6583
commit
56b17e7141
@ -1,9 +1,9 @@
|
||||
EntityConfig (
|
||||
name: Name("Pirate"),
|
||||
body: Exact(Humanoid(Body(
|
||||
species: Human,
|
||||
body_type: Female,
|
||||
hair_style: 2,
|
||||
species: Human,
|
||||
body_type: Female,
|
||||
hair_style: 2,
|
||||
beard: 0,
|
||||
eyes: 0,
|
||||
accessory: 0,
|
||||
|
@ -3,7 +3,7 @@ EntityConfig (
|
||||
body: Exact(Object(TrainingDummy)),
|
||||
alignment: Alignment(Passive),
|
||||
|
||||
loot: None,
|
||||
loot: Nothing,
|
||||
|
||||
hands: Uninit,
|
||||
|
||||
|
@ -3,7 +3,7 @@ EntityConfig (
|
||||
body: RandomWith("goat"),
|
||||
alignment: Alignment(Wild),
|
||||
|
||||
loot: LootTable("common.loot_tables.creature.quad_small.wool")
|
||||
loot: LootTable("common.loot_tables.creature.quad_small.wool"),
|
||||
|
||||
hands: Uninit,
|
||||
|
||||
|
@ -3,7 +3,7 @@ EntityConfig (
|
||||
body: RandomWith("holladon"),
|
||||
alignment: Alignment(Wild),
|
||||
|
||||
loot: LootTable("common.loot_tables.creature.quad_small.generic")
|
||||
loot: LootTable("common.loot_tables.creature.quad_small.generic"),
|
||||
|
||||
hands: Uninit,
|
||||
|
||||
|
@ -3,7 +3,7 @@ EntityConfig (
|
||||
body: RandomWith("llama"),
|
||||
alignment: Alignment(Wild),
|
||||
|
||||
loot: LootTable("common.loot_tables.creature.quad_medium.wool")
|
||||
loot: LootTable("common.loot_tables.creature.quad_medium.wool"),
|
||||
|
||||
hands: Uninit,
|
||||
|
||||
|
@ -3,7 +3,7 @@ EntityConfig (
|
||||
body: RandomWith("mouflon"),
|
||||
alignment: Alignment(Wild),
|
||||
|
||||
loot: LootTable("common.loot_tables.creature.quad_medium.wool")
|
||||
loot: LootTable("common.loot_tables.creature.quad_medium.wool"),
|
||||
|
||||
hands: Uninit,
|
||||
|
||||
|
@ -3,7 +3,7 @@ EntityConfig (
|
||||
body: RandomWith("pig"),
|
||||
alignment: Alignment(Wild),
|
||||
|
||||
loot: LootTable("common.loot_tables.creature.quad_small.generic")
|
||||
loot: LootTable("common.loot_tables.creature.quad_small.generic"),
|
||||
|
||||
hands: Uninit,
|
||||
|
||||
|
@ -3,7 +3,7 @@ EntityConfig (
|
||||
body: Exact(QuadrupedSmall(Body(species: Hare, body_type: Male))),
|
||||
alignment: Alignment(Wild),
|
||||
|
||||
loot: LootTable("common.loot_tables.creature.quad_small.fur")
|
||||
loot: LootTable("common.loot_tables.creature.quad_small.fur"),
|
||||
|
||||
hands: Uninit,
|
||||
|
||||
|
@ -3,7 +3,7 @@ EntityConfig (
|
||||
body: RandomWith("sheep"),
|
||||
alignment: Alignment(Wild),
|
||||
|
||||
loot: LootTable("common.loot_tables.creature.quad_small.wool")
|
||||
loot: LootTable("common.loot_tables.creature.quad_small.wool"),
|
||||
|
||||
hands: Uninit,
|
||||
|
||||
|
@ -2,16 +2,14 @@ use crate::{
|
||||
client::Client,
|
||||
comp::{
|
||||
agent::{Agent, AgentEvent, Sound, SoundKind},
|
||||
biped_large, bird_large, quadruped_low, quadruped_medium, quadruped_small,
|
||||
skills::SkillGroupKind,
|
||||
theropod, BuffKind, BuffSource, PhysicsState,
|
||||
BuffKind, BuffSource, PhysicsState,
|
||||
},
|
||||
rtsim::RtSim,
|
||||
sys::terrain::SAFE_ZONE_RADIUS,
|
||||
Server, SpawnPoint, StateExt,
|
||||
};
|
||||
use common::{
|
||||
assets::AssetExt,
|
||||
combat,
|
||||
comp::{
|
||||
self, aura, buff,
|
||||
@ -21,7 +19,7 @@ use common::{
|
||||
Inventory, Player, Poise, Pos, SkillSet, Stats,
|
||||
},
|
||||
event::{EventBus, ServerEvent},
|
||||
lottery::{LootSpec, Lottery},
|
||||
lottery::LootSpec,
|
||||
outcome::Outcome,
|
||||
resources::Time,
|
||||
rtsim::RtSimEntity,
|
||||
|
Loading…
Reference in New Issue
Block a user