diff --git a/src/main/java/com/atsuishio/superbwarfare/ModUtils.java b/src/main/java/com/atsuishio/superbwarfare/ModUtils.java index b276450a0..bb5dab100 100644 --- a/src/main/java/com/atsuishio/superbwarfare/ModUtils.java +++ b/src/main/java/com/atsuishio/superbwarfare/ModUtils.java @@ -1,8 +1,7 @@ package com.atsuishio.superbwarfare; import com.atsuishio.superbwarfare.component.ModDataComponents; -import com.atsuishio.superbwarfare.init.ModItems; -import com.atsuishio.superbwarfare.init.ModTabs; +import com.atsuishio.superbwarfare.init.*; import net.minecraft.resources.ResourceLocation; import net.neoforged.bus.api.IEventBus; import net.neoforged.bus.api.SubscribeEvent; @@ -33,18 +32,17 @@ public class ModUtils { // container.registerConfig(ModConfig.Type.COMMON, CommonConfig.init()); // container.registerConfig(ModConfig.Type.SERVER, ServerConfig.init()); -// ModPerks.register(bus); + ModPerks.register(bus); // ModSerializers.REGISTRY.register(bus); -// ModSounds.REGISTRY.register(bus); + ModSounds.REGISTRY.register(bus); // ModBlocks.REGISTRY.register(bus); // ModBlockEntities.REGISTRY.register(bus); ModItems.register(bus); ModDataComponents.register(bus); ModTabs.TABS.register(bus); // ModEntities.REGISTRY.register(bus); -// ModTabs.TABS.register(bus); // ModMobEffects.REGISTRY.register(bus); -// ModParticleTypes.REGISTRY.register(bus); + ModParticleTypes.REGISTRY.register(bus); // ModPotion.POTIONS.register(bus); // ModMenuTypes.REGISTRY.register(bus); // ModVillagers.register(bus); @@ -74,18 +72,15 @@ public class ModUtils { @SubscribeEvent public void tick(ServerTickEvent.Post event) { - List> actions = new ArrayList<>(); - workQueue.forEach(work -> { - work.setValue(work.getValue() - 1); - if (work.getValue() == 0) - actions.add(work); - }); - actions.forEach(e -> e.getKey().run()); - workQueue.removeAll(actions); + executeWork(workQueue); } @SubscribeEvent public void tick(ClientTickEvent.Post event) { + executeWork(workQueueC); + } + + private void executeWork(Collection> workQueueC) { List> actions = new ArrayList<>(); workQueueC.forEach(work -> { work.setValue(work.getValue() - 1); diff --git a/src/main/java/com/atsuishio/superbwarfare/client/particle/BulletHoleParticle.java b/src/main/java/com/atsuishio/superbwarfare/client/particle/BulletHoleParticle.java new file mode 100644 index 000000000..d537b761b --- /dev/null +++ b/src/main/java/com/atsuishio/superbwarfare/client/particle/BulletHoleParticle.java @@ -0,0 +1,49 @@ +package com.atsuishio.superbwarfare.client.particle; + +import net.minecraft.client.multiplayer.ClientLevel; +import net.minecraft.client.particle.*; +import net.minecraft.core.particles.SimpleParticleType; +import net.neoforged.api.distmarker.Dist; +import net.neoforged.api.distmarker.OnlyIn; +import org.jetbrains.annotations.NotNull; + +@OnlyIn(Dist.CLIENT) +public class BulletHoleParticle extends TextureSheetParticle { + public static BulletholeParticleProvider provider(SpriteSet spriteSet) { + return new BulletholeParticleProvider(spriteSet); + } + + public static class BulletholeParticleProvider implements ParticleProvider { + private final SpriteSet spriteSet; + + public BulletholeParticleProvider(SpriteSet spriteSet) { + this.spriteSet = spriteSet; + } + + public Particle createParticle(@NotNull SimpleParticleType typeIn, @NotNull ClientLevel worldIn, double x, double y, double z, double xSpeed, double ySpeed, double zSpeed) { + return new BulletHoleParticle(worldIn, x, y, z, xSpeed, ySpeed, zSpeed, this.spriteSet); + } + } + + protected BulletHoleParticle(ClientLevel world, double x, double y, double z, double vx, double vy, double vz, SpriteSet spriteSet) { + super(world, x, y, z); + this.setSize(0f, 0f); + this.lifetime = 100; + this.gravity = 0f; + this.hasPhysics = false; + this.xd = vx * 0; + this.yd = vy * 0; + this.zd = vz * 0; + this.pickSprite(spriteSet); + } + + @Override + public @NotNull ParticleRenderType getRenderType() { + return ParticleRenderType.PARTICLE_SHEET_TRANSLUCENT; + } + + @Override + public void tick() { + super.tick(); + } +} \ No newline at end of file diff --git a/src/main/java/com/atsuishio/superbwarfare/client/particle/CustomCloudParticle.java b/src/main/java/com/atsuishio/superbwarfare/client/particle/CustomCloudParticle.java new file mode 100644 index 000000000..79830dc87 --- /dev/null +++ b/src/main/java/com/atsuishio/superbwarfare/client/particle/CustomCloudParticle.java @@ -0,0 +1,61 @@ +package com.atsuishio.superbwarfare.client.particle; + +import net.minecraft.client.multiplayer.ClientLevel; +import net.minecraft.client.particle.*; +import net.minecraft.core.particles.SimpleParticleType; +import net.neoforged.api.distmarker.Dist; +import net.neoforged.api.distmarker.OnlyIn; +import org.jetbrains.annotations.NotNull; + +@OnlyIn(Dist.CLIENT) +public class CustomCloudParticle extends TextureSheetParticle { + public static FireStarParticleProvider provider(SpriteSet spriteSet) { + return new FireStarParticleProvider(spriteSet); + } + + public static class FireStarParticleProvider implements ParticleProvider { + private final SpriteSet spriteSet; + + public FireStarParticleProvider(SpriteSet spriteSet) { + this.spriteSet = spriteSet; + } + + public Particle createParticle(@NotNull SimpleParticleType typeIn, @NotNull ClientLevel worldIn, double x, double y, double z, double xSpeed, double ySpeed, double zSpeed) { + return new CustomCloudParticle(worldIn, x, y, z, xSpeed, ySpeed, zSpeed, this.spriteSet); + } + } + + private final SpriteSet spriteSet; + + protected CustomCloudParticle(ClientLevel world, double x, double y, double z, double vx, double vy, double vz, SpriteSet spriteSet) { + super(world, x, y, z); + this.spriteSet = spriteSet; + this.setSize(0.2f, 0.2f); + this.quadSize *= 0.5f; + this.lifetime = Math.max(1, 40 + (this.random.nextInt(40) - 20)); + this.gravity = -0.1f; + this.hasPhysics = false; + this.xd = vx * 1; + this.yd = vy * 1; + this.zd = vz * 1; + this.setSpriteFromAge(spriteSet); + } + + @Override + public int getLightColor(float partialTick) { + return 15728880; + } + + @Override + public @NotNull ParticleRenderType getRenderType() { + return ParticleRenderType.PARTICLE_SHEET_TRANSLUCENT; + } + + @Override + public void tick() { + super.tick(); + if (!this.removed) { + this.setSprite(this.spriteSet.get((this.age / 2) % 4 + 1, 4)); + } + } +} diff --git a/src/main/java/com/atsuishio/superbwarfare/client/particle/FireStarParticle.java b/src/main/java/com/atsuishio/superbwarfare/client/particle/FireStarParticle.java new file mode 100644 index 000000000..a9f566c82 --- /dev/null +++ b/src/main/java/com/atsuishio/superbwarfare/client/particle/FireStarParticle.java @@ -0,0 +1,61 @@ +package com.atsuishio.superbwarfare.client.particle; + +import net.minecraft.client.multiplayer.ClientLevel; +import net.minecraft.client.particle.*; +import net.minecraft.core.particles.SimpleParticleType; +import net.neoforged.api.distmarker.Dist; +import net.neoforged.api.distmarker.OnlyIn; +import org.jetbrains.annotations.NotNull; + +@OnlyIn(Dist.CLIENT) +public class FireStarParticle extends TextureSheetParticle { + public static FireStarParticleProvider provider(SpriteSet spriteSet) { + return new FireStarParticleProvider(spriteSet); + } + + public static class FireStarParticleProvider implements ParticleProvider { + private final SpriteSet spriteSet; + + public FireStarParticleProvider(SpriteSet spriteSet) { + this.spriteSet = spriteSet; + } + + public Particle createParticle(@NotNull SimpleParticleType typeIn, @NotNull ClientLevel worldIn, double x, double y, double z, double xSpeed, double ySpeed, double zSpeed) { + return new FireStarParticle(worldIn, x, y, z, xSpeed, ySpeed, zSpeed, this.spriteSet); + } + } + + private final SpriteSet spriteSet; + + protected FireStarParticle(ClientLevel world, double x, double y, double z, double vx, double vy, double vz, SpriteSet spriteSet) { + super(world, x, y, z); + this.spriteSet = spriteSet; + this.setSize(0.2f, 0.2f); + this.quadSize *= 0.5f; + this.lifetime = Math.max(1, 40 + (this.random.nextInt(40) - 20)); + this.gravity = 1f; + this.hasPhysics = true; + this.xd = vx * 1; + this.yd = vy * 1; + this.zd = vz * 1; + this.setSpriteFromAge(spriteSet); + } + + @Override + public int getLightColor(float partialTick) { + return 15728880; + } + + @Override + public @NotNull ParticleRenderType getRenderType() { + return ParticleRenderType.PARTICLE_SHEET_LIT; + } + + @Override + public void tick() { + super.tick(); + if (!this.removed) { + this.setSprite(this.spriteSet.get((this.age / 2) % 8 + 1, 8)); + } + } +} diff --git a/src/main/java/com/atsuishio/superbwarfare/init/ModDamageTypes.java b/src/main/java/com/atsuishio/superbwarfare/init/ModDamageTypes.java new file mode 100644 index 000000000..0299b2fed --- /dev/null +++ b/src/main/java/com/atsuishio/superbwarfare/init/ModDamageTypes.java @@ -0,0 +1,137 @@ +package com.atsuishio.superbwarfare.init; + +import com.atsuishio.superbwarfare.ModUtils; +import net.minecraft.core.Holder; +import net.minecraft.core.RegistryAccess; +import net.minecraft.core.registries.Registries; +import net.minecraft.network.chat.Component; +import net.minecraft.resources.ResourceKey; +import net.minecraft.world.damagesource.DamageSource; +import net.minecraft.world.damagesource.DamageType; +import net.minecraft.world.entity.Entity; +import net.minecraft.world.entity.LivingEntity; +import org.jetbrains.annotations.NotNull; + +import javax.annotation.Nullable; + +@SuppressWarnings({"OptionalGetWithoutIsPresent", "unused"}) +public class ModDamageTypes { + + public static final ResourceKey GUN_FIRE = ResourceKey.create(Registries.DAMAGE_TYPE, ModUtils.loc("gunfire")); + public static final ResourceKey GUN_FIRE_ABSOLUTE = ResourceKey.create(Registries.DAMAGE_TYPE, ModUtils.loc("gunfire_absolute")); + public static final ResourceKey GUN_FIRE_HEADSHOT = ResourceKey.create(Registries.DAMAGE_TYPE, ModUtils.loc("gunfire_headshot")); + public static final ResourceKey GUN_FIRE_HEADSHOT_ABSOLUTE = ResourceKey.create(Registries.DAMAGE_TYPE, ModUtils.loc("gunfire_headshot_absolute")); + public static final ResourceKey BURN = ResourceKey.create(Registries.DAMAGE_TYPE, ModUtils.loc("burn")); + public static final ResourceKey MINE = ResourceKey.create(Registries.DAMAGE_TYPE, ModUtils.loc("mine")); + public static final ResourceKey BEAST = ResourceKey.create(Registries.DAMAGE_TYPE, ModUtils.loc("beast")); + public static final ResourceKey SHOCK = ResourceKey.create(Registries.DAMAGE_TYPE, ModUtils.loc("shock")); + public static final ResourceKey PROJECTILE_BOOM = ResourceKey.create(Registries.DAMAGE_TYPE, ModUtils.loc("projectile_boom")); + public static final ResourceKey CANNON_FIRE = ResourceKey.create(Registries.DAMAGE_TYPE, ModUtils.loc("cannon_fire")); + public static final ResourceKey CUSTOM_EXPLOSION = ResourceKey.create(Registries.DAMAGE_TYPE, ModUtils.loc("custom_explosion")); + public static final ResourceKey DRONE_HIT = ResourceKey.create(Registries.DAMAGE_TYPE, ModUtils.loc("drone_hit")); + public static final ResourceKey LASER = ResourceKey.create(Registries.DAMAGE_TYPE, ModUtils.loc("laser")); + public static final ResourceKey LASER_HEADSHOT = ResourceKey.create(Registries.DAMAGE_TYPE, ModUtils.loc("laser_headshot")); + public static final ResourceKey LASER_STATIC = ResourceKey.create(Registries.DAMAGE_TYPE, ModUtils.loc("laser_static")); + public static final ResourceKey VEHICLE_STRIKE = ResourceKey.create(Registries.DAMAGE_TYPE, ModUtils.loc("vehicle_strike")); + public static final ResourceKey AIR_CRASH = ResourceKey.create(Registries.DAMAGE_TYPE, ModUtils.loc("air_crash")); + public static final ResourceKey LUNGE_MINE = ResourceKey.create(Registries.DAMAGE_TYPE, ModUtils.loc("lunge_mine")); + public static final ResourceKey VEHICLE_EXPLOSION = ResourceKey.create(Registries.DAMAGE_TYPE, ModUtils.loc("vehicle_explosion")); + + public static DamageSource causeGunFireDamage(RegistryAccess registryAccess, @Nullable Entity directEntity, @Nullable Entity attacker) { + return new DamageMessages(registryAccess.registry(Registries.DAMAGE_TYPE).get().getHolderOrThrow(GUN_FIRE), directEntity, attacker); + } + + public static DamageSource causeGunFireHeadshotDamage(RegistryAccess registryAccess, @Nullable Entity directEntity, @Nullable Entity attacker) { + return new DamageMessages(registryAccess.registry(Registries.DAMAGE_TYPE).get().getHolderOrThrow(GUN_FIRE_HEADSHOT), directEntity, attacker); + } + + public static DamageSource causeMineDamage(RegistryAccess registryAccess, @Nullable Entity entity) { + return new DamageMessages(registryAccess.registry(Registries.DAMAGE_TYPE).get().getHolderOrThrow(MINE), entity); + } + + public static DamageSource causeShockDamage(RegistryAccess registryAccess, @Nullable Entity attacker) { + return new DamageMessages(registryAccess.registry(Registries.DAMAGE_TYPE).get().getHolderOrThrow(SHOCK), attacker); + } + + public static DamageSource causeBurnDamage(RegistryAccess registryAccess, @Nullable Entity attacker) { + return new DamageMessages(registryAccess.registry(Registries.DAMAGE_TYPE).get().getHolderOrThrow(BURN), attacker); + } + + public static DamageSource causeProjectileBoomDamage(RegistryAccess registryAccess, @Nullable Entity directEntity, @Nullable Entity attacker) { + return new DamageMessages(registryAccess.registry(Registries.DAMAGE_TYPE).get().getHolderOrThrow(PROJECTILE_BOOM), directEntity, attacker); + } + + public static DamageSource causeCannonFireDamage(RegistryAccess registryAccess, @Nullable Entity directEntity, @Nullable Entity attacker) { + return new DamageMessages(registryAccess.registry(Registries.DAMAGE_TYPE).get().getHolderOrThrow(CANNON_FIRE), directEntity, attacker); + } + + public static DamageSource causeGunFireAbsoluteDamage(RegistryAccess registryAccess, @Nullable Entity directEntity, @Nullable Entity attacker) { + return new DamageMessages(registryAccess.registry(Registries.DAMAGE_TYPE).get().getHolderOrThrow(GUN_FIRE_ABSOLUTE), directEntity, attacker); + } + + public static DamageSource causeGunFireHeadshotAbsoluteDamage(RegistryAccess registryAccess, @Nullable Entity directEntity, @Nullable Entity attacker) { + return new DamageMessages(registryAccess.registry(Registries.DAMAGE_TYPE).get().getHolderOrThrow(GUN_FIRE_HEADSHOT_ABSOLUTE), directEntity, attacker); + } + + public static DamageSource causeCustomExplosionDamage(RegistryAccess registryAccess, @Nullable Entity directEntity, @Nullable Entity attacker) { + return new DamageMessages(registryAccess.registry(Registries.DAMAGE_TYPE).get().getHolderOrThrow(CUSTOM_EXPLOSION), directEntity, attacker); + } + + public static DamageSource causeDroneHitDamage(RegistryAccess registryAccess, @Nullable Entity directEntity, @Nullable Entity attacker) { + return new DamageMessages(registryAccess.registry(Registries.DAMAGE_TYPE).get().getHolderOrThrow(DRONE_HIT), directEntity, attacker); + } + + public static DamageSource causeLaserDamage(RegistryAccess registryAccess, @Nullable Entity directEntity, @Nullable Entity attacker) { + return new DamageMessages(registryAccess.registry(Registries.DAMAGE_TYPE).get().getHolderOrThrow(LASER), directEntity, attacker); + } + + public static DamageSource causeLaserStaticDamage(RegistryAccess registryAccess, @Nullable Entity directEntity, @Nullable Entity attacker) { + return new DamageMessages(registryAccess.registry(Registries.DAMAGE_TYPE).get().getHolderOrThrow(LASER_STATIC), directEntity, attacker); + } + + public static DamageSource causeLaserHeadshotDamage(RegistryAccess registryAccess, @Nullable Entity directEntity, @Nullable Entity attacker) { + return new DamageMessages(registryAccess.registry(Registries.DAMAGE_TYPE).get().getHolderOrThrow(LASER_HEADSHOT), directEntity, attacker); + } + + public static DamageSource causeVehicleStrikeDamage(RegistryAccess registryAccess, @Nullable Entity directEntity, @Nullable Entity attacker) { + return new DamageMessages(registryAccess.registry(Registries.DAMAGE_TYPE).get().getHolderOrThrow(VEHICLE_STRIKE), directEntity, attacker); + } + + public static DamageSource causeAirCrashDamage(RegistryAccess registryAccess, @Nullable Entity directEntity, @Nullable Entity attacker) { + return new DamageMessages(registryAccess.registry(Registries.DAMAGE_TYPE).get().getHolderOrThrow(AIR_CRASH), directEntity, attacker); + } + + public static DamageSource causeLungeMineDamage(RegistryAccess registryAccess, @Nullable Entity directEntity, @Nullable Entity attacker) { + return new DamageMessages(registryAccess.registry(Registries.DAMAGE_TYPE).get().getHolderOrThrow(LUNGE_MINE), directEntity, attacker); + } + + public static DamageSource causeVehicleExplosionDamage(RegistryAccess registryAccess, @Nullable Entity directEntity, @Nullable Entity attacker) { + return new DamageMessages(registryAccess.registry(Registries.DAMAGE_TYPE).get().getHolderOrThrow(VEHICLE_EXPLOSION), directEntity, attacker); + } + + private static class DamageMessages extends DamageSource { + + public DamageMessages(Holder.Reference typeReference) { + super(typeReference); + } + + public DamageMessages(Holder.Reference typeReference, Entity entity) { + super(typeReference, entity); + } + + public DamageMessages(Holder.Reference typeReference, Entity directEntity, Entity attacker) { + super(typeReference, directEntity, attacker); + } + + @Override + public @NotNull Component getLocalizedDeathMessage(@NotNull LivingEntity pLivingEntity) { + Entity entity = this.getEntity() == null ? this.getDirectEntity() : this.getEntity(); + if (entity == null) { + return Component.translatable("death.attack." + this.getMsgId(), pLivingEntity.getDisplayName()); + } else if (entity instanceof LivingEntity living) { + return Component.translatable("death.attack." + this.getMsgId() + ".item", pLivingEntity.getDisplayName(), entity.getDisplayName(), living.getMainHandItem().getHoverName()); + } + return Component.translatable("death.attack." + this.getMsgId() + ".entity", pLivingEntity.getDisplayName(), entity.getDisplayName()); + } + } +} diff --git a/src/main/java/com/atsuishio/superbwarfare/init/ModItems.java b/src/main/java/com/atsuishio/superbwarfare/init/ModItems.java index 2f5042359..07f2f132d 100644 --- a/src/main/java/com/atsuishio/superbwarfare/init/ModItems.java +++ b/src/main/java/com/atsuishio/superbwarfare/init/ModItems.java @@ -2,21 +2,286 @@ package com.atsuishio.superbwarfare.init; import com.atsuishio.superbwarfare.ModUtils; import com.atsuishio.superbwarfare.item.FiringParameters; +import com.atsuishio.superbwarfare.item.PerkItem; +import com.atsuishio.superbwarfare.item.ShortcutPack; +import com.atsuishio.superbwarfare.item.common.BlueprintItem; +import com.atsuishio.superbwarfare.item.common.MaterialPack; +import net.minecraft.core.registries.BuiltInRegistries; import net.minecraft.core.registries.Registries; +import net.minecraft.world.item.BlockItem; import net.minecraft.world.item.Item; +import net.minecraft.world.item.Rarity; +import net.minecraft.world.level.block.Block; import net.neoforged.bus.api.IEventBus; import net.neoforged.neoforge.registries.DeferredHolder; import net.neoforged.neoforge.registries.DeferredRegister; +@SuppressWarnings("unused") public class ModItems { public static final DeferredRegister REGISTRY = DeferredRegister.create(Registries.ITEM, ModUtils.MODID); + /** + * guns + */ + public static final DeferredRegister GUNS = DeferredRegister.create(BuiltInRegistries.ITEM, ModUtils.MODID); + +// public static final DeferredHolder TASER = GUNS.register("taser", TaserItem::new); +// public static final DeferredHolder GLOCK_17 = GUNS.register("glock_17", Glock17Item::new); +// public static final DeferredHolder GLOCK_18 = GUNS.register("glock_18", Glock18Item::new); +// public static final DeferredHolder MP_443 = GUNS.register("mp_443", Mp443Item::new); +// public static final DeferredHolder M_1911 = GUNS.register("m_1911", M1911Item::new); +// public static final DeferredHolder HOMEMADE_SHOTGUN = GUNS.register("homemade_shotgun", HomemadeShotgunItem::new); +// public static final DeferredHolder TRACHELIUM = GUNS.register("trachelium", Trachelium::new); +// public static final DeferredHolder VECTOR = GUNS.register("vector", VectorItem::new); +// public static final DeferredHolder AK_47 = GUNS.register("ak_47", AK47Item::new); +// public static final DeferredHolder AK_12 = GUNS.register("ak_12", AK12Item::new); +// public static final DeferredHolder SKS = GUNS.register("sks", SksItem::new); +// public static final DeferredHolder M_4 = GUNS.register("m_4", M4Item::new); +// public static final DeferredHolder HK_416 = GUNS.register("hk_416", Hk416Item::new); +// public static final DeferredHolder QBZ_95 = GUNS.register("qbz_95", Qbz95Item::new); +// public static final DeferredHolder MK_14 = GUNS.register("mk_14", Mk14Item::new); +// public static final DeferredHolder MARLIN = GUNS.register("marlin", MarlinItem::new); +// public static final DeferredHolder K_98 = GUNS.register("k_98", K98Item::new); +// public static final DeferredHolder MOSIN_NAGANT = GUNS.register("mosin_nagant", MosinNagantItem::new); +// public static final DeferredHolder SVD = GUNS.register("svd", SvdItem::new); +// public static final DeferredHolder M_98B = GUNS.register("m_98b", M98bItem::new); +// public static final DeferredHolder SENTINEL = GUNS.register("sentinel", SentinelItem::new); +// public static final DeferredHolder HUNTING_RIFLE = GUNS.register("hunting_rifle", HuntingRifleItem::new); +// public static final DeferredHolder NTW_20 = GUNS.register("ntw_20", Ntw20Item::new); +// public static final DeferredHolder M_870 = GUNS.register("m_870", M870Item::new); +// public static final DeferredHolder AA_12 = GUNS.register("aa_12", Aa12Item::new); +// public static final DeferredHolder DEVOTION = GUNS.register("devotion", DevotionItem::new); +// public static final DeferredHolder RPK = GUNS.register("rpk", RpkItem::new); +// public static final DeferredHolder M_60 = GUNS.register("m_60", M60Item::new); +// public static final DeferredHolder MINIGUN = GUNS.register("minigun", MinigunItem::new); +// public static final DeferredHolder M_79 = GUNS.register("m_79", M79Item::new); +// public static final DeferredHolder SECONDARY_CATACLYSM = GUNS.register("secondary_cataclysm", SecondaryCataclysm::new); +// public static final DeferredHolder RPG = GUNS.register("rpg", RpgItem::new); +// public static final DeferredHolder JAVELIN = GUNS.register("javelin", JavelinItem::new); +// public static final DeferredHolder BOCEK = GUNS.register("bocek", BocekItem::new); + + /** + * Ammo + */ + public static final DeferredRegister AMMO = DeferredRegister.create(BuiltInRegistries.ITEM, ModUtils.MODID); + + // public static final DeferredHolder HANDGUN_AMMO = AMMO.register("handgun_ammo", () -> new AmmoSupplierItem(AmmoType.HANDGUN, 1, new Item.Properties())); +// public static final DeferredHolder RIFLE_AMMO = AMMO.register("rifle_ammo", () -> new AmmoSupplierItem(AmmoType.RIFLE, 1, new Item.Properties())); +// public static final DeferredHolder SNIPER_AMMO = AMMO.register("sniper_ammo", () -> new AmmoSupplierItem(AmmoType.SNIPER, 1, new Item.Properties())); +// public static final DeferredHolder SHOTGUN_AMMO = AMMO.register("shotgun_ammo", () -> new AmmoSupplierItem(AmmoType.SHOTGUN, 1, new Item.Properties())); +// public static final DeferredHolder HEAVY_AMMO = AMMO.register("heavy_ammo", () -> new AmmoSupplierItem(AmmoType.HEAVY, 1, new Item.Properties())); +// public static final DeferredHolder HANDGUN_AMMO_BOX = AMMO.register("handgun_ammo_box", HandgunAmmoBox::new); +// public static final DeferredHolder RIFLE_AMMO_BOX = AMMO.register("rifle_ammo_box", RifleAmmoBox::new); +// public static final DeferredHolder SNIPER_AMMO_BOX = AMMO.register("sniper_ammo_box", SniperAmmoBox::new); +// public static final DeferredHolder SHOTGUN_AMMO_BOX = AMMO.register("shotgun_ammo_box", ShotgunAmmoBox::new); +// public static final DeferredHolder CREATIVE_AMMO_BOX = AMMO.register("creative_ammo_box", CreativeAmmoBox::new); +// public static final DeferredHolder AMMO_BOX = AMMO.register("ammo_box", AmmoBox::new); + public static final DeferredHolder TASER_ELECTRODE = AMMO.register("taser_electrode", () -> new Item(new Item.Properties())); + public static final DeferredHolder GRENADE_40MM = AMMO.register("grenade_40mm", () -> new Item(new Item.Properties())); + public static final DeferredHolder JAVELIN_MISSILE = AMMO.register("javelin_missile", () -> new Item(new Item.Properties())); + // public static final DeferredHolder MORTAR_SHELL = AMMO.register("mortar_shell", MortarShell::new); +// public static final DeferredHolder POTION_MORTAR_SHELL = AMMO.register("potion_mortar_shell", PotionMortarShell::new); +// public static final DeferredHolder ROCKET = AMMO.register("rocket", Rocket::new); +// public static final DeferredHolder LUNGE_MINE = AMMO.register("lunge_mine", LungeMine::new); +// public static final DeferredHolder HE_5_INCHES = AMMO.register("he_5_inches", () -> new CannonShellItem(new Item.Properties().rarity(Rarity.RARE))); +// public static final DeferredHolder AP_5_INCHES = AMMO.register("ap_5_inches", () -> new CannonShellItem(new Item.Properties().rarity(Rarity.RARE))); +// public static final DeferredHolder HAND_GRENADE = AMMO.register("hand_grenade", HandGrenade::new); +// public static final DeferredHolder RGO_GRENADE = AMMO.register("rgo_grenade", RgoGrenade::new); +// public static final DeferredHolder CLAYMORE_MINE = AMMO.register("claymore_mine", ClaymoreMine::new); +// public static final DeferredHolder C4_BOMB = AMMO.register("c4_bomb", C4Bomb::new); + public static final DeferredHolder SMALL_SHELL = AMMO.register("small_shell", () -> new Item(new Item.Properties())); + public static final DeferredHolder ROCKET_70 = AMMO.register("rocket_70", () -> new Item(new Item.Properties())); + public static final DeferredHolder WIRE_GUIDE_MISSILE = AMMO.register("wire_guide_missile", () -> new Item(new Item.Properties())); +// public static final DeferredHolder BEAM_TEST = AMMO.register("beam_test", BeamTest::new); + + /** + * items + */ public static final DeferredRegister ITEMS = DeferredRegister.create(Registries.ITEM, ModUtils.MODID); + // public static final DeferredHolder CONTAINER = ITEMS.register("container", ContainerBlockItem::new); +// public static final DeferredHolder SENPAI_SPAWN_EGG = ITEMS.register("senpai_spawn_egg", () -> new ForgeSpawnEggItem(ModEntities.SENPAI, -11584987, -14014413, new Item.Properties())); + public static final DeferredHolder ANCIENT_CPU = ITEMS.register("ancient_cpu", () -> new Item(new Item.Properties().rarity(Rarity.RARE))); + public static final DeferredHolder PROPELLER = ITEMS.register("propeller", () -> new Item(new Item.Properties())); + public static final DeferredHolder LARGE_PROPELLER = ITEMS.register("large_propeller", () -> new Item(new Item.Properties())); + public static final DeferredHolder MOTOR = ITEMS.register("motor", () -> new Item(new Item.Properties())); + public static final DeferredHolder LARGE_MOTOR = ITEMS.register("large_motor", () -> new Item(new Item.Properties())); + public static final DeferredHolder WHEEL = ITEMS.register("wheel", () -> new Item(new Item.Properties())); + public static final DeferredHolder TRACK = ITEMS.register("track", () -> new Item(new Item.Properties())); + // public static final DeferredHolder DRONE = ITEMS.register("drone", Drone::new); +// +// public static final DeferredHolder MONITOR = ITEMS.register("monitor", Monitor::new); +// +// public static final DeferredHolder DETONATOR = ITEMS.register("detonator", Detonator::new); +// public static final DeferredHolder TARGET_DEPLOYER = ITEMS.register("target_deployer", TargetDeployer::new); +// public static final DeferredHolder KNIFE = ITEMS.register("knife", Knife::new); +// public static final DeferredHolder HAMMER = ITEMS.register("hammer", Hammer::new); +// public static final DeferredHolder CROWBAR = ITEMS.register("crowbar", Crowbar::new); +// public static final DeferredHolder DEFUSER = ITEMS.register("defuser", Defuser::new); +// public static final DeferredHolder ARMOR_PLATE = ITEMS.register("armor_plate", ArmorPlate::new); +// +// public static final DeferredHolder RU_HELMET_6B47 = ITEMS.register("ru_helmet_6b47", RuHelmet6b47::new); +// public static final DeferredHolder RU_CHEST_6B43 = ITEMS.register("ru_chest_6b43", RuChest6b43::new); +// public static final DeferredHolder US_HELMET_PASTG = ITEMS.register("us_helmet_pastg", UsHelmetPastg::new); +// public static final DeferredHolder US_CHEST_IOTV = ITEMS.register("us_chest_iotv", UsChestIotv::new); +// public static final DeferredHolder GE_HELMET_M_35 = ITEMS.register("ge_helmet_m_35", GeHelmetM35::new); +// public static final DeferredHolder MORTAR_DEPLOYER = ITEMS.register("mortar_deployer", MortarDeployer::new); + public static final DeferredHolder MORTAR_BARREL = ITEMS.register("mortar_barrel", () -> new Item(new Item.Properties())); + public static final DeferredHolder MORTAR_BASE_PLATE = ITEMS.register("mortar_base_plate", () -> new Item(new Item.Properties())); + public static final DeferredHolder MORTAR_BIPOD = ITEMS.register("mortar_bipod", () -> new Item(new Item.Properties())); + public static final DeferredHolder SEEKER = ITEMS.register("seeker", () -> new Item(new Item.Properties())); + public static final DeferredHolder MISSILE_ENGINE = ITEMS.register("missile_engine", () -> new Item(new Item.Properties())); + public static final DeferredHolder FUSEE = ITEMS.register("fusee", () -> new Item(new Item.Properties())); + public static final DeferredHolder PRIMER = ITEMS.register("primer", () -> new Item(new Item.Properties())); + public static final DeferredHolder AP_HEAD = ITEMS.register("ap_head", () -> new Item(new Item.Properties())); + public static final DeferredHolder HE_HEAD = ITEMS.register("he_head", () -> new Item(new Item.Properties())); + public static final DeferredHolder CANNON_CORE = ITEMS.register("cannon_core", () -> new Item(new Item.Properties())); + public static final DeferredHolder COPPER_PLATE = ITEMS.register("copper_plate", () -> new Item(new Item.Properties())); + public static final DeferredHolder STEEL_INGOT = ITEMS.register("steel_ingot", () -> new Item(new Item.Properties())); + public static final DeferredHolder LEAD_INGOT = ITEMS.register("lead_ingot", () -> new Item(new Item.Properties())); + public static final DeferredHolder SILVER_INGOT = ITEMS.register("silver_ingot", () -> new Item(new Item.Properties())); + public static final DeferredHolder TUNGSTEN_INGOT = ITEMS.register("tungsten_ingot", () -> new Item(new Item.Properties())); + public static final DeferredHolder CEMENTED_CARBIDE_INGOT = ITEMS.register("cemented_carbide_ingot", () -> new Item(new Item.Properties())); + public static final DeferredHolder HIGH_ENERGY_EXPLOSIVES = ITEMS.register("high_energy_explosives", () -> new Item(new Item.Properties())); + public static final DeferredHolder GRAIN = ITEMS.register("grain", () -> new Item(new Item.Properties())); + public static final DeferredHolder IRON_POWDER = ITEMS.register("iron_powder", () -> new Item(new Item.Properties())); + public static final DeferredHolder TUNGSTEN_POWDER = ITEMS.register("tungsten_powder", () -> new Item(new Item.Properties())); + public static final DeferredHolder COAL_POWDER = ITEMS.register("coal_powder", () -> new Item(new Item.Properties())); + public static final DeferredHolder COAL_IRON_POWDER = ITEMS.register("coal_iron_powder", () -> new Item(new Item.Properties())); + public static final DeferredHolder RAW_CEMENTED_CARBIDE_POWDER = ITEMS.register("raw_cemented_carbide_powder", () -> new Item(new Item.Properties())); + public static final DeferredHolder GALENA = ITEMS.register("galena", () -> new Item(new Item.Properties())); + public static final DeferredHolder SCHEELITE = ITEMS.register("scheelite", () -> new Item(new Item.Properties())); + public static final DeferredHolder RAW_SILVER = ITEMS.register("raw_silver", () -> new Item(new Item.Properties())); + // public static final DeferredHolder DOG_TAG = ITEMS.register("dog_tag", DogTag::new); +// public static final DeferredHolder CELL = ITEMS.register("cell", () -> new BatteryItem(24000, new Item.Properties())); +// public static final DeferredHolder BATTERY = ITEMS.register("battery", () -> new BatteryItem(100000, new Item.Properties())); +// public static final DeferredHolder SMALL_BATTERY_PACK = ITEMS.register("small_battery_pack", () -> new BatteryItem(500000, new Item.Properties())); +// public static final DeferredHolder MEDIUM_BATTERY_PACK = ITEMS.register("medium_battery_pack", () -> new BatteryItem(5000000, new Item.Properties())); +// public static final DeferredHolder LARGE_BATTERY_PACK = ITEMS.register("large_battery_pack", () -> new BatteryItem(20000000, new Item.Properties())); +// public static final DeferredHolder TRANSCRIPT = ITEMS.register("transcript", Transcript::new); public static final DeferredHolder FIRING_PARAMETERS = ITEMS.register("firing_parameters", FiringParameters::new); + public static final DeferredHolder TUNGSTEN_ROD = ITEMS.register("tungsten_rod", () -> new Item(new Item.Properties())); + public static final DeferredHolder IRON_BARREL = ITEMS.register("iron_barrel", () -> new Item(new Item.Properties())); + public static final DeferredHolder IRON_ACTION = ITEMS.register("iron_action", () -> new Item(new Item.Properties())); + public static final DeferredHolder IRON_TRIGGER = ITEMS.register("iron_trigger", () -> new Item(new Item.Properties())); + public static final DeferredHolder IRON_SPRING = ITEMS.register("iron_spring", () -> new Item(new Item.Properties())); + public static final DeferredHolder STEEL_BARREL = ITEMS.register("steel_barrel", () -> new Item(new Item.Properties().rarity(Rarity.RARE))); + public static final DeferredHolder STEEL_ACTION = ITEMS.register("steel_action", () -> new Item(new Item.Properties().rarity(Rarity.RARE))); + public static final DeferredHolder STEEL_TRIGGER = ITEMS.register("steel_trigger", () -> new Item(new Item.Properties().rarity(Rarity.RARE))); + public static final DeferredHolder STEEL_SPRING = ITEMS.register("steel_spring", () -> new Item(new Item.Properties().rarity(Rarity.RARE))); + public static final DeferredHolder CEMENTED_CARBIDE_BARREL = ITEMS.register("cemented_carbide_barrel", () -> new Item(new Item.Properties().rarity(Rarity.EPIC))); + public static final DeferredHolder CEMENTED_CARBIDE_ACTION = ITEMS.register("cemented_carbide_action", () -> new Item(new Item.Properties().rarity(Rarity.EPIC))); + public static final DeferredHolder CEMENTED_CARBIDE_TRIGGER = ITEMS.register("cemented_carbide_trigger", () -> new Item(new Item.Properties().rarity(Rarity.EPIC))); + public static final DeferredHolder CEMENTED_CARBIDE_SPRING = ITEMS.register("cemented_carbide_spring", () -> new Item(new Item.Properties().rarity(Rarity.EPIC))); +// public static final DeferredHolder NETHERITE_BARREL = ITEMS.register("netherite_barrel", () -> new Item(new Item.Properties().rarity(RarityTool.LEGENDARY))); +// public static final DeferredHolder NETHERITE_ACTION = ITEMS.register("netherite_action", () -> new Item(new Item.Properties().rarity(RarityTool.LEGENDARY))); +// public static final DeferredHolder NETHERITE_TRIGGER = ITEMS.register("netherite_trigger", () -> new Item(new Item.Properties().rarity(RarityTool.LEGENDARY))); +// public static final DeferredHolder NETHERITE_SPRING = ITEMS.register("netherite_spring", () -> new Item(new Item.Properties().rarity(RarityTool.LEGENDARY))); + + public static final DeferredHolder COMMON_MATERIAL_PACK = ITEMS.register("common_material_pack", () -> new MaterialPack(Rarity.COMMON)); + public static final DeferredHolder RARE_MATERIAL_PACK = ITEMS.register("rare_material_pack", () -> new MaterialPack(Rarity.RARE)); + public static final DeferredHolder EPIC_MATERIAL_PACK = ITEMS.register("epic_material_pack", () -> new MaterialPack(Rarity.EPIC)); +// public static final DeferredHolder LEGENDARY_MATERIAL_PACK = ITEMS.register("legendary_material_pack", () -> new MaterialPack(RarityTool.LEGENDARY)); + + public static final DeferredHolder TRACHELIUM_BLUEPRINT = ITEMS.register("trachelium_blueprint", () -> new BlueprintItem(Rarity.EPIC)); + public static final DeferredHolder GLOCK_17_BLUEPRINT = ITEMS.register("glock_17_blueprint", () -> new BlueprintItem(Rarity.COMMON)); + public static final DeferredHolder MP_443_BLUEPRINT = ITEMS.register("mp_443_blueprint", () -> new BlueprintItem(Rarity.COMMON)); + public static final DeferredHolder GLOCK_18_BLUEPRINT = ITEMS.register("glock_18_blueprint", () -> new BlueprintItem(Rarity.RARE)); + public static final DeferredHolder HUNTING_RIFLE_BLUEPRINT = ITEMS.register("hunting_rifle_blueprint", () -> new BlueprintItem(Rarity.EPIC)); + public static final DeferredHolder M_79_BLUEPRINT = ITEMS.register("m_79_blueprint", () -> new BlueprintItem(Rarity.RARE)); + public static final DeferredHolder RPG_BLUEPRINT = ITEMS.register("rpg_blueprint", () -> new BlueprintItem(Rarity.EPIC)); + public static final DeferredHolder BOCEK_BLUEPRINT = ITEMS.register("bocek_blueprint", () -> new BlueprintItem(Rarity.EPIC)); + public static final DeferredHolder M_4_BLUEPRINT = ITEMS.register("m_4_blueprint", () -> new BlueprintItem(Rarity.RARE)); + // public static final DeferredHolder AA_12_BLUEPRINT = ITEMS.register("aa_12_blueprint", () -> new BlueprintItem(RarityTool.LEGENDARY)); + public static final DeferredHolder HK_416_BLUEPRINT = ITEMS.register("hk_416_blueprint", () -> new BlueprintItem(Rarity.EPIC)); + public static final DeferredHolder RPK_BLUEPRINT = ITEMS.register("rpk_blueprint", () -> new BlueprintItem(Rarity.EPIC)); + public static final DeferredHolder SKS_BLUEPRINT = ITEMS.register("sks_blueprint", () -> new BlueprintItem(Rarity.RARE)); + // public static final DeferredHolder NTW_20_BLUEPRINT = ITEMS.register("ntw_20_blueprint", () -> new BlueprintItem(RarityTool.LEGENDARY)); + public static final DeferredHolder VECTOR_BLUEPRINT = ITEMS.register("vector_blueprint", () -> new BlueprintItem(Rarity.EPIC)); + // public static final DeferredHolder MINIGUN_BLUEPRINT = ITEMS.register("minigun_blueprint", () -> new BlueprintItem(RarityTool.LEGENDARY)); + public static final DeferredHolder MK_14_BLUEPRINT = ITEMS.register("mk_14_blueprint", () -> new BlueprintItem(Rarity.EPIC)); + // public static final DeferredHolder SENTINEL_BLUEPRINT = ITEMS.register("sentinel_blueprint", () -> new BlueprintItem(RarityTool.LEGENDARY)); + public static final DeferredHolder M_60_BLUEPRINT = ITEMS.register("m_60_blueprint", () -> new BlueprintItem(Rarity.EPIC)); + public static final DeferredHolder SVD_BLUEPRINT = ITEMS.register("svd_blueprint", () -> new BlueprintItem(Rarity.EPIC)); + public static final DeferredHolder MARLIN_BLUEPRINT = ITEMS.register("marlin_blueprint", () -> new BlueprintItem(Rarity.COMMON)); + public static final DeferredHolder M_870_BLUEPRINT = ITEMS.register("m_870_blueprint", () -> new BlueprintItem(Rarity.RARE)); + public static final DeferredHolder M_98B_BLUEPRINT = ITEMS.register("m_98b_blueprint", () -> new BlueprintItem(Rarity.EPIC)); + public static final DeferredHolder AK_47_BLUEPRINT = ITEMS.register("ak_47_blueprint", () -> new BlueprintItem(Rarity.RARE)); + public static final DeferredHolder AK_12_BLUEPRINT = ITEMS.register("ak_12_blueprint", () -> new BlueprintItem(Rarity.EPIC)); + public static final DeferredHolder DEVOTION_BLUEPRINT = ITEMS.register("devotion_blueprint", () -> new BlueprintItem(Rarity.EPIC)); + public static final DeferredHolder TASER_BLUEPRINT = ITEMS.register("taser_blueprint", () -> new BlueprintItem(Rarity.COMMON)); + public static final DeferredHolder M_1911_BLUEPRINT = ITEMS.register("m_1911_blueprint", () -> new BlueprintItem(Rarity.COMMON)); + public static final DeferredHolder QBZ_95_BLUEPRINT = ITEMS.register("qbz_95_blueprint", () -> new BlueprintItem(Rarity.EPIC)); + public static final DeferredHolder K_98_BLUEPRINT = ITEMS.register("k_98_blueprint", () -> new BlueprintItem(Rarity.RARE)); + public static final DeferredHolder MOSIN_NAGANT_BLUEPRINT = ITEMS.register("mosin_nagant_blueprint", () -> new BlueprintItem(Rarity.RARE)); + // public static final DeferredHolder JAVELIN_BLUEPRINT = ITEMS.register("javelin_blueprint", () -> new BlueprintItem(RarityTool.LEGENDARY)); + public static final DeferredHolder M_2_HB_BLUEPRINT = ITEMS.register("m2hb_blueprint", () -> new BlueprintItem(Rarity.RARE)); +// public static final DeferredHolder SECONDARY_CATACLYSM_BLUEPRINT = ITEMS.register("secondary_cataclysm_blueprint", () -> new BlueprintItem(RarityTool.LEGENDARY)); +// public static final DeferredHolder MK_42_BLUEPRINT = ITEMS.register("mk_42_blueprint", () -> new BlueprintItem(RarityTool.LEGENDARY)); +// public static final DeferredHolder MLE_1934_BLUEPRINT = ITEMS.register("mle_1934_blueprint", () -> new BlueprintItem(RarityTool.LEGENDARY)); +// public static final DeferredHolder ANNIHILATOR_BLUEPRINT = ITEMS.register("annihilator_blueprint", () -> new BlueprintItem(RarityTool.LEGENDARY)); + + public static final DeferredHolder LIGHT_ARMAMENT_MODULE = ITEMS.register("light_armament_module", () -> new Item(new Item.Properties().rarity(Rarity.RARE))); + public static final DeferredHolder MEDIUM_ARMAMENT_MODULE = ITEMS.register("medium_armament_module", () -> new Item(new Item.Properties().rarity(Rarity.EPIC))); +// public static final DeferredHolder HEAVY_ARMAMENT_MODULE = ITEMS.register("heavy_armament_module", () -> new Item(new Item.Properties().rarity(RarityTool.LEGENDARY))); + + /** + * Block + */ + public static final DeferredRegister BLOCKS = DeferredRegister.create(BuiltInRegistries.ITEM, ModUtils.MODID); + +// public static final DeferredHolder GALENA_ORE = block(ModBlocks.GALENA_ORE); +// public static final DeferredHolder DEEPSLATE_GALENA_ORE = block(ModBlocks.DEEPSLATE_GALENA_ORE); +// public static final DeferredHolder SCHEELITE_ORE = block(ModBlocks.SCHEELITE_ORE); +// public static final DeferredHolder DEEPSLATE_SCHEELITE_ORE = block(ModBlocks.DEEPSLATE_SCHEELITE_ORE); +// public static final DeferredHolder SILVER_ORE = block(ModBlocks.SILVER_ORE); +// public static final DeferredHolder DEEPSLATE_SILVER_ORE = block(ModBlocks.DEEPSLATE_SILVER_ORE); +// public static final DeferredHolder JUMP_PAD = block(ModBlocks.JUMP_PAD); +// public static final DeferredHolder SANDBAG = block(ModBlocks.SANDBAG); +// public static final DeferredHolder BARBED_WIRE = block(ModBlocks.BARBED_WIRE); +// public static final DeferredHolder DRAGON_TEETH = block(ModBlocks.DRAGON_TEETH); +// public static final DeferredHolder REFORGING_TABLE = block(ModBlocks.REFORGING_TABLE); +// public static final DeferredHolder CHARGING_STATION = block(ModBlocks.CHARGING_STATION); +// public static final DeferredHolder CREATIVE_CHARGING_STATION = BLOCKS.register("creative_charging_station", +// () -> new CreativeChargingStationBlockItem(ModBlocks.CREATIVE_CHARGING_STATION.get(), new Item.Properties().rarity(Rarity.EPIC))); +// public static final DeferredHolder LEAD_BLOCK = block(ModBlocks.LEAD_BLOCK); +// public static final DeferredHolder STEEL_BLOCK = block(ModBlocks.STEEL_BLOCK); +// public static final DeferredHolder TUNGSTEN_BLOCK = block(ModBlocks.TUNGSTEN_BLOCK); +// public static final DeferredHolder SILVER_BLOCK = block(ModBlocks.SILVER_BLOCK); +// public static final DeferredHolder CEMENTED_CARBIDE_BLOCK = block(ModBlocks.CEMENTED_CARBIDE_BLOCK); +// public static final DeferredHolder FUMO_25 = block(ModBlocks.FUMO_25); + + /** + * Perk Items + */ + public static final DeferredRegister PERKS = DeferredRegister.create(BuiltInRegistries.ITEM, ModUtils.MODID); + + public static void registerPerkItems() { + ModPerks.AMMO_PERKS.getEntries().stream().filter(p -> p != ModPerks.AP_BULLET) + .forEach(registryObject -> PERKS.register(registryObject.getId().getPath(), () -> new PerkItem<>(registryObject))); + ModPerks.FUNC_PERKS.getEntries().forEach(registryObject -> PERKS.register(registryObject.getId().getPath(), () -> new PerkItem<>(registryObject))); + ModPerks.DAMAGE_PERKS.getEntries().forEach(registryObject -> PERKS.register(registryObject.getId().getPath(), () -> new PerkItem<>(registryObject))); + } + + public static final DeferredHolder SHORTCUT_PACK = PERKS.register("shortcut_pack", ShortcutPack::new); + public static final DeferredHolder EMPTY_PERK = PERKS.register("empty_perk", () -> new Item(new Item.Properties())); + /** + * 单独注册,用于Tab图标,不要删 + */ + public static final DeferredHolder AP_BULLET = PERKS.register("ap_bullet", () -> new PerkItem<>(ModPerks.AP_BULLET)); + + private static DeferredHolder block(DeferredHolder block) { + return BLOCKS.register(block.getId().getPath(), () -> new BlockItem(block.get(), new Item.Properties())); + } + public static void register(IEventBus bus) { ITEMS.register(bus); + GUNS.register(bus); + AMMO.register(bus); + BLOCKS.register(bus); + registerPerkItems(); + PERKS.register(bus); REGISTRY.register(bus); } diff --git a/src/main/java/com/atsuishio/superbwarfare/init/ModParticleTypes.java b/src/main/java/com/atsuishio/superbwarfare/init/ModParticleTypes.java new file mode 100644 index 000000000..17f501aa8 --- /dev/null +++ b/src/main/java/com/atsuishio/superbwarfare/init/ModParticleTypes.java @@ -0,0 +1,17 @@ +package com.atsuishio.superbwarfare.init; + +import com.atsuishio.superbwarfare.ModUtils; +import net.minecraft.core.particles.ParticleType; +import net.minecraft.core.particles.SimpleParticleType; +import net.minecraft.core.registries.BuiltInRegistries; +import net.neoforged.neoforge.registries.DeferredHolder; +import net.neoforged.neoforge.registries.DeferredRegister; + +public class ModParticleTypes { + public static final DeferredRegister> REGISTRY = DeferredRegister.create(BuiltInRegistries.PARTICLE_TYPE, ModUtils.MODID); + + public static final DeferredHolder, SimpleParticleType> FIRE_STAR = REGISTRY.register("fire_star", () -> new SimpleParticleType(false)); + public static final DeferredHolder, SimpleParticleType> BULLET_HOLE = REGISTRY.register("bullet_hole", () -> new SimpleParticleType(false)); + public static final DeferredHolder, SimpleParticleType> CUSTOM_CLOUD = REGISTRY.register("custom_cloud", () -> new SimpleParticleType(false)); +} + diff --git a/src/main/java/com/atsuishio/superbwarfare/init/ModParticles.java b/src/main/java/com/atsuishio/superbwarfare/init/ModParticles.java new file mode 100644 index 000000000..07f0d53ac --- /dev/null +++ b/src/main/java/com/atsuishio/superbwarfare/init/ModParticles.java @@ -0,0 +1,20 @@ +package com.atsuishio.superbwarfare.init; + +import com.atsuishio.superbwarfare.client.particle.BulletHoleParticle; +import com.atsuishio.superbwarfare.client.particle.CustomCloudParticle; +import com.atsuishio.superbwarfare.client.particle.FireStarParticle; +import net.neoforged.api.distmarker.Dist; +import net.neoforged.bus.api.SubscribeEvent; +import net.neoforged.fml.common.EventBusSubscriber; +import net.neoforged.neoforge.client.event.RegisterParticleProvidersEvent; + +@EventBusSubscriber(bus = EventBusSubscriber.Bus.MOD, value = Dist.CLIENT) +public class ModParticles { + @SubscribeEvent + public static void registerParticles(RegisterParticleProvidersEvent event) { + event.registerSpriteSet(ModParticleTypes.FIRE_STAR.get(), FireStarParticle::provider); + event.registerSpriteSet(ModParticleTypes.BULLET_HOLE.get(), BulletHoleParticle::provider); + event.registerSpriteSet(ModParticleTypes.CUSTOM_CLOUD.get(), CustomCloudParticle::provider); + } +} + diff --git a/src/main/java/com/atsuishio/superbwarfare/init/ModPerks.java b/src/main/java/com/atsuishio/superbwarfare/init/ModPerks.java new file mode 100644 index 000000000..bac526f0f --- /dev/null +++ b/src/main/java/com/atsuishio/superbwarfare/init/ModPerks.java @@ -0,0 +1,99 @@ +package com.atsuishio.superbwarfare.init; + +import com.atsuishio.superbwarfare.ModUtils; +import com.atsuishio.superbwarfare.perk.AmmoPerk; +import com.atsuishio.superbwarfare.perk.Perk; +import net.minecraft.resources.ResourceKey; +import net.minecraft.world.effect.MobEffects; +import net.neoforged.bus.api.IEventBus; +import net.neoforged.bus.api.SubscribeEvent; +import net.neoforged.fml.common.EventBusSubscriber; +import net.neoforged.neoforge.registries.DeferredHolder; +import net.neoforged.neoforge.registries.DeferredRegister; +import net.neoforged.neoforge.registries.NewRegistryEvent; +import net.neoforged.neoforge.registries.RegistryBuilder; + +@EventBusSubscriber(bus = EventBusSubscriber.Bus.MOD) +@SuppressWarnings("unused") +public class ModPerks { + + @SubscribeEvent + public static void registry(NewRegistryEvent event) { + event.create(new RegistryBuilder(ResourceKey.createRegistryKey(ModUtils.loc("perk")))); + } + + /** + * Ammo Perks + */ + public static final DeferredRegister AMMO_PERKS = DeferredRegister.create(ModUtils.loc("perk"), ModUtils.MODID); + + public static final DeferredHolder AP_BULLET = AMMO_PERKS.register("ap_bullet", + () -> new AmmoPerk(new AmmoPerk.Builder("ap_bullet", Perk.Type.AMMO).bypassArmorRate(0.4f).damageRate(0.9f).speedRate(1.2f).slug(true).rgb(230, 70, 35))); + public static final DeferredHolder JHP_BULLET = AMMO_PERKS.register("jhp_bullet", + () -> new AmmoPerk(new AmmoPerk.Builder("jhp_bullet", Perk.Type.AMMO).bypassArmorRate(-0.2f).damageRate(1.1f).speedRate(0.95f).slug(true).rgb(230, 131, 65))); + public static final DeferredHolder HE_BULLET = AMMO_PERKS.register("he_bullet", + () -> new AmmoPerk(new AmmoPerk.Builder("he_bullet", Perk.Type.AMMO).bypassArmorRate(-0.3f).damageRate(0.5f).speedRate(0.85f).slug(true).rgb(240, 20, 10))); + public static final DeferredHolder SILVER_BULLET = AMMO_PERKS.register("silver_bullet", + () -> new AmmoPerk(new AmmoPerk.Builder("silver_bullet", Perk.Type.AMMO).bypassArmorRate(0.05f).damageRate(0.8f).speedRate(1.1f).rgb(87, 166, 219))); + public static final DeferredHolder POISONOUS_BULLET = AMMO_PERKS.register("poisonous_bullet", + () -> new AmmoPerk(new AmmoPerk.Builder("poisonous_bullet", Perk.Type.AMMO).bypassArmorRate(0.0f).damageRate(1.0f).speedRate(1.0f).rgb(48, 131, 6) + .mobEffect(MobEffects.POISON::value))); + public static final DeferredHolder BEAST_BULLET = AMMO_PERKS.register("beast_bullet", + () -> new AmmoPerk(new AmmoPerk.Builder("beast_bullet", Perk.Type.AMMO).bypassArmorRate(0.0f).rgb(134, 65, 14))); + public static final DeferredHolder LONGER_WIRE = AMMO_PERKS.register("longer_wire", () -> new Perk("longer_wire", Perk.Type.AMMO)); + public static final DeferredHolder INCENDIARY_BULLET = AMMO_PERKS.register("incendiary_bullet", + () -> new AmmoPerk(new AmmoPerk.Builder("incendiary_bullet", Perk.Type.AMMO).bypassArmorRate(-0.4f).damageRate(0.7f).speedRate(0.75f).slug(false).rgb(230, 131, 65))); + public static final DeferredHolder MICRO_MISSILE = AMMO_PERKS.register("micro_missile", + () -> new AmmoPerk(new AmmoPerk.Builder("micro_missile", Perk.Type.AMMO).speedRate(1.2f))); + + + /** + * Functional Perks + */ + public static final DeferredRegister FUNC_PERKS = DeferredRegister.create(ModUtils.loc("perk"), ModUtils.MODID); + + public static final DeferredHolder HEAL_CLIP = FUNC_PERKS.register("heal_clip", () -> new Perk("heal_clip", Perk.Type.FUNCTIONAL)); + public static final DeferredHolder FOURTH_TIMES_CHARM = FUNC_PERKS.register("fourth_times_charm", () -> new Perk("fourth_times_charm", Perk.Type.FUNCTIONAL)); + public static final DeferredHolder SUBSISTENCE = FUNC_PERKS.register("subsistence", () -> new Perk("subsistence", Perk.Type.FUNCTIONAL)); + public static final DeferredHolder FIELD_DOCTOR = FUNC_PERKS.register("field_doctor", () -> new Perk("field_doctor", Perk.Type.FUNCTIONAL)); + public static final DeferredHolder REGENERATION = FUNC_PERKS.register("regeneration", () -> new Perk("regeneration", Perk.Type.FUNCTIONAL)); + public static final DeferredHolder TURBO_CHARGER = FUNC_PERKS.register("turbo_charger", () -> new Perk("turbo_charger", Perk.Type.FUNCTIONAL)); + public static final DeferredHolder POWERFUL_ATTRACTION = FUNC_PERKS.register("powerful_attraction", () -> new Perk("powerful_attraction", Perk.Type.FUNCTIONAL)); + public static final DeferredHolder INTELLIGENT_CHIP = FUNC_PERKS.register("intelligent_chip", () -> new Perk("intelligent_chip", Perk.Type.FUNCTIONAL)); + + /** + * Damage Perks + */ + public static final DeferredRegister DAMAGE_PERKS = DeferredRegister.create(ModUtils.loc("perk"), ModUtils.MODID); + + public static final DeferredHolder KILL_CLIP = DAMAGE_PERKS.register("kill_clip", () -> new Perk("kill_clip", Perk.Type.DAMAGE)); + public static final DeferredHolder GUTSHOT_STRAIGHT = DAMAGE_PERKS.register("gutshot_straight", () -> new Perk("gutshot_straight", Perk.Type.DAMAGE)); + public static final DeferredHolder KILLING_TALLY = DAMAGE_PERKS.register("killing_tally", () -> new Perk("killing_tally", Perk.Type.DAMAGE)); + public static final DeferredHolder HEAD_SEEKER = DAMAGE_PERKS.register("head_seeker", () -> new Perk("head_seeker", Perk.Type.DAMAGE)); + public static final DeferredHolder MONSTER_HUNTER = DAMAGE_PERKS.register("monster_hunter", () -> new Perk("monster_hunter", Perk.Type.DAMAGE)); + public static final DeferredHolder VOLT_OVERLOAD = DAMAGE_PERKS.register("volt_overload", () -> new Perk("volt_overload", Perk.Type.DAMAGE)); + public static final DeferredHolder DESPERADO = DAMAGE_PERKS.register("desperado", () -> new Perk("desperado", Perk.Type.DAMAGE)); + public static final DeferredHolder VORPAL_WEAPON = DAMAGE_PERKS.register("vorpal_weapon", () -> new Perk("vorpal_weapon", Perk.Type.DAMAGE)); + + public static void registerCompatPerks() { +// if (ModList.get().isLoaded(CompatHolder.DMV)) { +// AMMO_PERKS.register("blade_bullet", () -> new AmmoPerk(new AmmoPerk.Builder("blade_bullet", Perk.Type.AMMO) +// .bypassArmorRate(-0.2f).damageRate(0.7f).speedRate(0.8f).rgb(0xB4, 0x4B, 0x88).mobEffect(() -> CompatHolder.DMV_BLEEDING))); +// AMMO_PERKS.register("bread_bullet", () -> new AmmoPerk(new AmmoPerk.Builder("bread_bullet", Perk.Type.AMMO) +// .bypassArmorRate(1.0f).damageRate(0.5f).speedRate(0.6f).rgb(0xde, 0xab, 0x82).mobEffect(() -> MobEffects.MOVEMENT_SLOWDOWN))); +// } +// if (ModList.get().isLoaded(CompatHolder.VRC)) { +// AMMO_PERKS.register("curse_flame_bullet", () -> new AmmoPerk(new AmmoPerk.Builder("curse_flame_bullet", Perk.Type.AMMO) +// .bypassArmorRate(0.0f).damageRate(1.2f).speedRate(0.9f).rgb(0xB1, 0xC1, 0xF2).mobEffect(() -> CompatHolder.VRC_CURSE_FLAME))); +// AMMO_PERKS.register("butterfly_bullet", () -> new AmmoPerk(new AmmoPerk.Builder("butterfly_bullet", Perk.Type.AMMO) +// .bypassArmorRate(0.0f))); +// } + } + + public static void register(IEventBus bus) { + registerCompatPerks(); + AMMO_PERKS.register(bus); + FUNC_PERKS.register(bus); + DAMAGE_PERKS.register(bus); + } +} diff --git a/src/main/java/com/atsuishio/superbwarfare/init/ModProperties.java b/src/main/java/com/atsuishio/superbwarfare/init/ModProperties.java new file mode 100644 index 000000000..5fb02cb9c --- /dev/null +++ b/src/main/java/com/atsuishio/superbwarfare/init/ModProperties.java @@ -0,0 +1,19 @@ +package com.atsuishio.superbwarfare.init; + +import com.atsuishio.superbwarfare.ModUtils; +import net.minecraft.client.renderer.item.ItemProperties; +import net.neoforged.api.distmarker.Dist; +import net.neoforged.bus.api.SubscribeEvent; +import net.neoforged.fml.common.EventBusSubscriber; +import net.neoforged.fml.event.lifecycle.FMLClientSetupEvent; + +@EventBusSubscriber(bus = EventBusSubscriber.Bus.MOD, value = Dist.CLIENT) +public class ModProperties { + @SubscribeEvent + public static void propertyOverrideRegistry(FMLClientSetupEvent event) { +// event.enqueueWork(() -> ItemProperties.register(ModItems.MONITOR.get(), ModUtils.loc("monitor_linked"), +// (itemStack, clientWorld, livingEntity, seed) -> ItemNBTTool.getBoolean(itemStack, "Linked", false) ? 1.0F : 0.0F)); +// event.enqueueWork(() -> ItemProperties.register(ModItems.ARMOR_PLATE.get(), ModUtils.loc("armor_plate_infinite"), +// (itemStack, clientWorld, livingEntity, seed) -> ItemNBTTool.getBoolean(itemStack, "Infinite", false) ? 1.0F : 0.0F)); + } +} \ No newline at end of file diff --git a/src/main/java/com/atsuishio/superbwarfare/init/ModSounds.java b/src/main/java/com/atsuishio/superbwarfare/init/ModSounds.java new file mode 100644 index 000000000..73c012b57 --- /dev/null +++ b/src/main/java/com/atsuishio/superbwarfare/init/ModSounds.java @@ -0,0 +1,431 @@ +package com.atsuishio.superbwarfare.init; + +import com.atsuishio.superbwarfare.ModUtils; +import net.minecraft.core.registries.BuiltInRegistries; +import net.minecraft.sounds.SoundEvent; +import net.neoforged.neoforge.registries.DeferredHolder; +import net.neoforged.neoforge.registries.DeferredRegister; + +@SuppressWarnings("unused") +public class ModSounds { + + public static final DeferredRegister REGISTRY = DeferredRegister.create(BuiltInRegistries.SOUND_EVENT, ModUtils.MODID); + + public static final DeferredHolder TASER_FIRE_1P = REGISTRY.register("taser_fire_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("taser_fire_1p"))); + public static final DeferredHolder TASER_FIRE_3P = REGISTRY.register("taser_fire_3p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("taser_fire_3p"))); + public static final DeferredHolder TASER_RELOAD_EMPTY = REGISTRY.register("taser_reload_empty", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("taser_reload_empty"))); + + public static final DeferredHolder SHOCK = REGISTRY.register("shock", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("shock"))); + public static final DeferredHolder ELECTRIC = REGISTRY.register("electric", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("electric"))); + + public static final DeferredHolder TRACHELIUM_FIRE_1P = REGISTRY.register("trachelium_fire_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("trachelium_fire_1p"))); + public static final DeferredHolder TRACHELIUM_FIRE_3P = REGISTRY.register("trachelium_fire_3p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("trachelium_fire_3p"))); + public static final DeferredHolder TRACHELIUM_FAR = REGISTRY.register("trachelium_far", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("trachelium_far"))); + public static final DeferredHolder TRACHELIUM_VERYFAR = REGISTRY.register("trachelium_veryfar", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("trachelium_veryfar"))); + + public static final DeferredHolder TRACHELIUM_FIRE_1P_S = REGISTRY.register("trachelium_fire_1p_s", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("trachelium_fire_1p_s"))); + public static final DeferredHolder TRACHELIUM_FIRE_3P_S = REGISTRY.register("trachelium_fire_3p_s", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("trachelium_fire_3p_s"))); + public static final DeferredHolder TRACHELIUM_FAR_S = REGISTRY.register("trachelium_far_s", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("trachelium_far_s"))); + public static final DeferredHolder TRACHELIUM_RELOAD_EMPTY = REGISTRY.register("trachelium_reload_empty", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("trachelium_reload_empty"))); + public static final DeferredHolder TRACHELIUM_BOLT = REGISTRY.register("trachelium_bolt", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("trachelium_bolt"))); + + public static final DeferredHolder TRIGGER_CLICK = REGISTRY.register("triggerclick", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("triggerclick"))); + public static final DeferredHolder HIT = REGISTRY.register("hit", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("hit"))); + public static final DeferredHolder TARGET_DOWN = REGISTRY.register("targetdown", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("targetdown"))); + public static final DeferredHolder INDICATION = REGISTRY.register("indication", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("indication"))); + public static final DeferredHolder INDICATION_VEHICLE = REGISTRY.register("indication_vehicle", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("indication_vehicle"))); + public static final DeferredHolder JUMP = REGISTRY.register("jump", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("jump"))); + public static final DeferredHolder DOUBLE_JUMP = REGISTRY.register("doublejump", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("doublejump"))); + + public static final DeferredHolder EXPLOSION_CLOSE = REGISTRY.register("explosion_close", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("explosion_close"))); + public static final DeferredHolder EXPLOSION_FAR = REGISTRY.register("explosion_far", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("explosion_far"))); + public static final DeferredHolder EXPLOSION_VERY_FAR = REGISTRY.register("explosion_very_far", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("explosion_very_far"))); + public static final DeferredHolder HUGE_EXPLOSION_CLOSE = REGISTRY.register("huge_explosion_close", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("huge_explosion_close"))); + public static final DeferredHolder HUGE_EXPLOSION_FAR = REGISTRY.register("huge_explosion_far", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("huge_explosion_far"))); + public static final DeferredHolder HUGE_EXPLOSION_VERY_FAR = REGISTRY.register("huge_explosion_very_far", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("huge_explosion_very_far"))); + public static final DeferredHolder EXPLOSION_WATER = REGISTRY.register("explosion_water", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("explosion_water"))); + + public static final DeferredHolder HUNTING_RIFLE_FIRE_1P = REGISTRY.register("hunting_rifle_fire_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("hunting_rifle_fire_1p"))); + public static final DeferredHolder HUNTING_RIFLE_FIRE_3P = REGISTRY.register("hunting_rifle_fire_3p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("hunting_rifle_fire_3p"))); + public static final DeferredHolder HUNTING_RIFLE_FAR = REGISTRY.register("hunting_rifle_far", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("hunting_rifle_far"))); + public static final DeferredHolder HUNTING_RIFLE_VERYFAR = REGISTRY.register("hunting_rifle_veryfar", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("hunting_rifle_veryfar"))); + public static final DeferredHolder HUNTING_RIFLE_RELOAD_EMPTY = REGISTRY.register("hunting_rifle_reload_empty", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("hunting_rifle_reload_empty"))); + + public static final DeferredHolder OUCH = REGISTRY.register("ouch", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("ouch"))); + public static final DeferredHolder STEP = REGISTRY.register("step", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("step"))); + public static final DeferredHolder GROWL = REGISTRY.register("growl", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("growl"))); + public static final DeferredHolder IDLE = REGISTRY.register("idle", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("idle"))); + public static final DeferredHolder HENG = REGISTRY.register("heng", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("heng"))); + + public static final DeferredHolder M_79_FIRE_1P = REGISTRY.register("m_79_fire_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("m_79_fire_1p"))); + public static final DeferredHolder M_79_FIRE_3P = REGISTRY.register("m_79_fire_3p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("m_79_fire_3p"))); + public static final DeferredHolder M_79_FAR = REGISTRY.register("m_79_far", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("m_79_far"))); + public static final DeferredHolder M_79_VERYFAR = REGISTRY.register("m_79_veryfar", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("m_79_veryfar"))); + public static final DeferredHolder M_79_RELOAD_EMPTY = REGISTRY.register("m_79_reload_empty", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("m_79_reload_empty"))); + + public static final DeferredHolder SKS_FIRE_1P = REGISTRY.register("sks_fire_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("sks_fire_1p"))); + public static final DeferredHolder SKS_FIRE_3P = REGISTRY.register("sks_fire_3p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("sks_fire_3p"))); + public static final DeferredHolder SKS_RELOAD_NORMAL = REGISTRY.register("sks_reload_normal", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("sks_reload_normal"))); + public static final DeferredHolder SKS_RELOAD_EMPTY = REGISTRY.register("sks_reload_empty", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("sks_reload_empty"))); + public static final DeferredHolder SKS_FAR = REGISTRY.register("sks_far", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("sks_far"))); + public static final DeferredHolder SKS_VERYFAR = REGISTRY.register("sks_veryfar", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("sks_veryfar"))); + + public static final DeferredHolder HOMEMADE_SHOTGUN_FIRE_1P = REGISTRY.register("homemade_shotgun_fire_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("homemade_shotgun_fire_1p"))); + public static final DeferredHolder HOMEMADE_SHOTGUN_FIRE_3P = REGISTRY.register("homemade_shotgun_fire_3p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("homemade_shotgun_fire_3p"))); + public static final DeferredHolder HOMEMADE_SHOTGUN_FAR = REGISTRY.register("homemade_shotgun_far", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("homemade_shotgun_far"))); + public static final DeferredHolder HOMEMADE_SHOTGUN_VERYFAR = REGISTRY.register("homemade_shotgun_veryfar", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("homemade_shotgun_veryfar"))); + public static final DeferredHolder HOMEMADE_SHOTGUN_NORMAL = REGISTRY.register("homemade_shotgun_reload_normal", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("homemade_shotgun_reload_normal"))); + public static final DeferredHolder HOMEMADE_SHOTGUN_RELOAD_EMPTY = REGISTRY.register("homemade_shotgun_reload_empty", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("homemade_shotgun_reload_empty"))); + + public static final DeferredHolder AK_47_FIRE_1P = REGISTRY.register("ak_47_fire_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("ak_47_fire_1p"))); + public static final DeferredHolder AK_47_FIRE_3P = REGISTRY.register("ak_47_fire_3p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("ak_47_fire_3p"))); + public static final DeferredHolder AK_47_FIRE_1P_S = REGISTRY.register("ak_47_fire_1p_s", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("ak_47_fire_1p_s"))); + public static final DeferredHolder AK_47_FIRE_3P_S = REGISTRY.register("ak_47_fire_3p_s", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("ak_47_fire_3p_s"))); + public static final DeferredHolder AK_47_FAR = REGISTRY.register("ak_47_far", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("ak_47_far"))); + public static final DeferredHolder AK_47_VERYFAR = REGISTRY.register("ak_47_veryfar", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("ak_47_veryfar"))); + public static final DeferredHolder AK_47_FAR_S = REGISTRY.register("ak_47_far_s", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("ak_12_far_s"))); + public static final DeferredHolder AK_47_VERYFAR_S = REGISTRY.register("ak_47_veryfar_s", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("ak_12_veryfar_s"))); + public static final DeferredHolder AK_47_RELOAD_NORMAL = REGISTRY.register("ak_47_reload_normal", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("ak_47_reload_normal"))); + public static final DeferredHolder AK_47_RELOAD_EMPTY = REGISTRY.register("ak_47_reload_empty", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("ak_47_reload_empty"))); + + public static final DeferredHolder AK_12_FIRE_1P = REGISTRY.register("ak_12_fire_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("ak_12_fire_1p"))); + public static final DeferredHolder AK_12_FIRE_3P = REGISTRY.register("ak_12_fire_3p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("ak_12_fire_3p"))); + public static final DeferredHolder AK_12_FIRE_1P_S = REGISTRY.register("ak_12_fire_1p_s", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("ak_12_fire_1p_s"))); + public static final DeferredHolder AK_12_FIRE_3P_S = REGISTRY.register("ak_12_fire_3p_s", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("ak_12_fire_3p_s"))); + public static final DeferredHolder AK_12_FAR = REGISTRY.register("ak_12_far", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("ak_12_far"))); + public static final DeferredHolder AK_12_VERYFAR = REGISTRY.register("ak_12_veryfar", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("ak_12_veryfar"))); + public static final DeferredHolder AK_12_FAR_S = REGISTRY.register("ak_12_far_s", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("ak_12_far_s"))); + public static final DeferredHolder AK_12_VERYFAR_S = REGISTRY.register("ak_12_veryfar_s", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("ak_12_veryfar_s"))); + public static final DeferredHolder AK_12_RELOAD_NORMAL = REGISTRY.register("ak_12_reload_normal", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("ak_12_reload_normal"))); + public static final DeferredHolder AK_12_RELOAD_EMPTY = REGISTRY.register("ak_12_reload_empty", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("ak_12_reload_empty"))); + + public static final DeferredHolder LAND = REGISTRY.register("land", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("land"))); + public static final DeferredHolder HEADSHOT = REGISTRY.register("headshot", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("headshot"))); + + public static final DeferredHolder DEVOTION_FIRE_1P = REGISTRY.register("devotion_fire_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("devotion_fire_1p"))); + public static final DeferredHolder DEVOTION_FIRE_3P = REGISTRY.register("devotion_fire_3p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("devotion_fire_3p"))); + public static final DeferredHolder DEVOTION_FAR = REGISTRY.register("devotion_far", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("devotion_far"))); + public static final DeferredHolder DEVOTION_VERYFAR = REGISTRY.register("devotion_veryfar", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("devotion_veryfar"))); + public static final DeferredHolder DEVOTION_RELOAD_NORMAL = REGISTRY.register("devotion_reload_normal", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("devotion_reload_normal"))); + public static final DeferredHolder DEVOTION_RELOAD_EMPTY = REGISTRY.register("devotion_reload_empty", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("devotion_reload_empty"))); + + public static final DeferredHolder RPG_FIRE_1P = REGISTRY.register("rpg_fire_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("rpg_fire_1p"))); + public static final DeferredHolder RPG_FIRE_3P = REGISTRY.register("rpg_fire_3p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("rpg_fire_3p"))); + public static final DeferredHolder RPG_FAR = REGISTRY.register("rpg_far", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("rpg_far"))); + public static final DeferredHolder RPG_VERYFAR = REGISTRY.register("rpg_veryfar", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("rpg_veryfar"))); + public static final DeferredHolder RPG_RELOAD_EMPTY = REGISTRY.register("rpg_reload_empty", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("rpg_reload_empty"))); + + public static final DeferredHolder MORTAR_FIRE = REGISTRY.register("mortar_fire", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("mortar_fire"))); + public static final DeferredHolder MORTAR_LOAD = REGISTRY.register("mortar_load", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("mortar_load"))); + public static final DeferredHolder MORTAR_DISTANT = REGISTRY.register("mortar_distant", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("mortar_distant"))); + + public static final DeferredHolder FIRE_RATE = REGISTRY.register("firerate", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("firerate"))); + + public static final DeferredHolder M_4_FIRE_1P = REGISTRY.register("m_4_fire_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("m_4_fire_1p"))); + public static final DeferredHolder M_4_FIRE_3P = REGISTRY.register("m_4_fire_3p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("m_4_fire_3p"))); + public static final DeferredHolder M_4_FIRE_1P_S = REGISTRY.register("m_4_fire_1p_s", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("m_4_fire_1p_s"))); + public static final DeferredHolder M_4_FIRE_3P_S = REGISTRY.register("m_4_fire_3p_s", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("m_4_fire_3p_s"))); + public static final DeferredHolder M_4_FAR = REGISTRY.register("m_4_far", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("m_4_far"))); + public static final DeferredHolder M_4_VERYFAR = REGISTRY.register("m_4_veryfar", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("m_4_veryfar"))); + public static final DeferredHolder M_4_RELOAD_NORMAL = REGISTRY.register("m_4_reload_normal", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("m_4_reload_normal"))); + public static final DeferredHolder M_4_RELOAD_EMPTY = REGISTRY.register("m_4_reload_empty", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("m_4_reload_empty"))); + public static final DeferredHolder M_4_FAR_S = REGISTRY.register("m_4_far_s", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("ak_12_far_s"))); + public static final DeferredHolder M_4_VERYFAR_S = REGISTRY.register("m_4_veryfar_s", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("ak_12_veryfar_s"))); + + public static final DeferredHolder AA_12_FIRE_1P = REGISTRY.register("aa_12_fire_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("aa_12_fire_1p"))); + public static final DeferredHolder AA_12_FIRE_3P = REGISTRY.register("aa_12_fire_3p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("aa_12_fire_3p"))); + public static final DeferredHolder AA_12_FAR = REGISTRY.register("aa_12_far", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("aa_12_far"))); + public static final DeferredHolder AA_12_VERYFAR = REGISTRY.register("aa_12_veryfar", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("aa_12_veryfar"))); + public static final DeferredHolder AA_12_RELOAD_NORMAL = REGISTRY.register("aa_12_reload_normal", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("aa_12_reload_normal"))); + public static final DeferredHolder AA_12_RELOAD_EMPTY = REGISTRY.register("aa_12_reload_empty", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("aa_12_reload_empty"))); + + public static final DeferredHolder BOCEK_ZOOM_FIRE_1P = REGISTRY.register("bocek_zoom_fire_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("bocek_zoom_fire_1p"))); + public static final DeferredHolder BOCEK_ZOOM_FIRE_3P = REGISTRY.register("bocek_zoom_fire_3p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("bocek_zoom_fire_3p"))); + public static final DeferredHolder BOCEK_SHATTER_CAP_FIRE_1P = REGISTRY.register("bocek_shatter_cap_fire_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("bocek_shatter_cap_fire_1p"))); + public static final DeferredHolder BOCEK_SHATTER_CAP_FIRE_3P = REGISTRY.register("bocek_shatter_cap_fire_3p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("bocek_shatter_cap_fire_3p"))); + public static final DeferredHolder BOCEK_PULL_1P = REGISTRY.register("bocek_pull_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("bocek_pull_1p"))); + public static final DeferredHolder BOCEK_PULL_3P = REGISTRY.register("bocek_pull_3p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("bocek_pull_3p"))); + + public static final DeferredHolder HK_416_FIRE_1P = REGISTRY.register("hk_416_fire_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("hk_416_fire_1p"))); + public static final DeferredHolder HK_416_FIRE_3P = REGISTRY.register("hk_416_fire_3p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("hk_416_fire_3p"))); + public static final DeferredHolder HK_416_FIRE_1P_S = REGISTRY.register("hk_416_fire_1p_s", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("hk_416_fire_1p_s"))); + public static final DeferredHolder HK_416_FIRE_3P_S = REGISTRY.register("hk_416_fire_3p_s", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("hk_416_fire_3p_s"))); + public static final DeferredHolder HK_416_FAR = REGISTRY.register("hk_416_far", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("hk_416_far"))); + public static final DeferredHolder HK_416_VERYFAR = REGISTRY.register("hk_416_veryfar", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("hk_416_veryfar"))); + public static final DeferredHolder HK_416_RELOAD_NORMAL = REGISTRY.register("hk_416_reload_normal", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("hk_416_reload_normal"))); + public static final DeferredHolder HK_416_RELOAD_EMPTY = REGISTRY.register("hk_416_reload_empty", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("hk_416_reload_empty"))); + public static final DeferredHolder HK_416_FAR_S = REGISTRY.register("hk_416_far_s", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("ak_12_far_s"))); + public static final DeferredHolder HK_416_VERYFAR_S = REGISTRY.register("hk_416_veryfar_s", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("ak_12_veryfar_s"))); + + public static final DeferredHolder RPK_FIRE_1P = REGISTRY.register("rpk_fire_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("rpk_fire_1p"))); + public static final DeferredHolder RPK_FIRE_3P = REGISTRY.register("rpk_fire_3p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("rpk_fire_3p"))); + public static final DeferredHolder RPK_FAR = REGISTRY.register("rpk_far", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("rpk_far"))); + public static final DeferredHolder RPK_VERYFAR = REGISTRY.register("rpk_veryfar", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("rpk_veryfar"))); + public static final DeferredHolder RPK_RELOAD_NORMAL = REGISTRY.register("rpk_reload_normal", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("rpk_reload_normal"))); + public static final DeferredHolder RPK_RELOAD_EMPTY = REGISTRY.register("rpk_reload_empty", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("rpk_reload_empty"))); + + public static final DeferredHolder NTW_20_FIRE_1P = REGISTRY.register("ntw_20_fire_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("ntw_20_fire_1p"))); + public static final DeferredHolder NTW_20_FIRE_3P = REGISTRY.register("ntw_20_fire_3p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("ntw_20_fire_3p"))); + public static final DeferredHolder NTW_20_FAR = REGISTRY.register("ntw_20_far", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("ntw_20_far"))); + public static final DeferredHolder NTW_20_VERYFAR = REGISTRY.register("ntw_20_veryfar", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("ntw_20_veryfar"))); + public static final DeferredHolder NTW_20_RELOAD_NORMAL = REGISTRY.register("ntw_20_reload_normal", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("ntw_20_reload_normal"))); + public static final DeferredHolder NTW_20_RELOAD_EMPTY = REGISTRY.register("ntw_20_reload_empty", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("ntw_20_reload_empty"))); + public static final DeferredHolder NTW_20_BOLT = REGISTRY.register("ntw_20_bolt", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("ntw_20_bolt"))); + + public static final DeferredHolder VECTOR_FIRE_1P = REGISTRY.register("vector_fire_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("vector_fire_1p"))); + public static final DeferredHolder VECTOR_FIRE_3P = REGISTRY.register("vector_fire_3p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("vector_fire_3p"))); + public static final DeferredHolder VECTOR_FAR = REGISTRY.register("vector_far", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("vector_far"))); + public static final DeferredHolder VECTOR_VERYFAR = REGISTRY.register("vector_veryfar", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("vector_veryfar"))); + public static final DeferredHolder VECTOR_FIRE_1P_S = REGISTRY.register("vector_fire_1p_s", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("vector_fire_1p_s"))); + public static final DeferredHolder VECTOR_FIRE_3P_S = REGISTRY.register("vector_fire_3p_s", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("vector_fire_3p_s"))); + public static final DeferredHolder VECTOR_FAR_S = REGISTRY.register("vector_far_s", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("vector_far_s"))); + public static final DeferredHolder VECTOR_RELOAD_NORMAL = REGISTRY.register("vector_reload_normal", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("vector_reload_normal"))); + public static final DeferredHolder VECTOR_RELOAD_EMPTY = REGISTRY.register("vector_reload_empty", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("vector_reload_empty"))); + + public static final DeferredHolder MINIGUN_FIRE_1P = REGISTRY.register("minigun_fire_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("minigun_fire_1p"))); + public static final DeferredHolder MINIGUN_FIRE_3P = REGISTRY.register("minigun_fire_3p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("minigun_fire_3p"))); + public static final DeferredHolder MINIGUN_FAR = REGISTRY.register("minigun_far", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("minigun_far"))); + public static final DeferredHolder MINIGUN_VERYFAR = REGISTRY.register("minigun_veryfar", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("minigun_veryfar"))); + public static final DeferredHolder MINIGUN_ROT = REGISTRY.register("minigun_rot", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("minigun_rot"))); + public static final DeferredHolder MINIGUN_OVERHEAT = REGISTRY.register("minigun_overheat", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("minigun_overheat"))); + + public static final DeferredHolder MK_14_FIRE_1P = REGISTRY.register("mk_14_fire_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("mk_14_fire_1p"))); + public static final DeferredHolder MK_14_FIRE_3P = REGISTRY.register("mk_14_fire_3p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("mk_14_fire_3p"))); + public static final DeferredHolder MK_14_FAR = REGISTRY.register("mk_14_far", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("mk_14_far"))); + public static final DeferredHolder MK_14_VERYFAR = REGISTRY.register("mk_14_veryfar", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("mk_14_veryfar"))); + public static final DeferredHolder MK_14_FIRE_1P_S = REGISTRY.register("mk_14_fire_1p_s", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("mk_14_fire_1p_s"))); + public static final DeferredHolder MK_14_FIRE_3P_S = REGISTRY.register("mk_14_fire_3p_s", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("mk_14_fire_3p_s"))); + public static final DeferredHolder MK_14_FAR_S = REGISTRY.register("mk_14_far_s", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("mk_14_far_s"))); + public static final DeferredHolder MK_14_RELOAD_NORMAL = REGISTRY.register("mk_14_reload_normal", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("mk_14_reload_normal"))); + public static final DeferredHolder MK_14_RELOAD_EMPTY = REGISTRY.register("mk_14_reload_empty", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("mk_14_reload_empty"))); + + public static final DeferredHolder SENTINEL_FIRE_1P = REGISTRY.register("sentinel_fire_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("sentinel_fire_1p"))); + public static final DeferredHolder SENTINEL_FIRE_3P = REGISTRY.register("sentinel_fire_3p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("sentinel_fire_3p"))); + public static final DeferredHolder SENTINEL_CHARGE_FIRE_1P = REGISTRY.register("sentinel_charge_fire_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("sentinel_charge_fire_1p"))); + public static final DeferredHolder SENTINEL_CHARGE_FIRE_3P = REGISTRY.register("sentinel_charge_fire_3p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("sentinel_charge_fire_3p"))); + public static final DeferredHolder SENTINEL_FAR = REGISTRY.register("sentinel_far", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("sentinel_far"))); + public static final DeferredHolder SENTINEL_VERYFAR = REGISTRY.register("sentinel_veryfar", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("sentinel_veryfar"))); + public static final DeferredHolder SENTINEL_CHARGE_FAR = REGISTRY.register("sentinel_charge_far", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("sentinel_charge_far"))); + public static final DeferredHolder SENTINEL_CHARGE_VERYFAR = REGISTRY.register("sentinel_charge_veryfar", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("sentinel_charge_veryfar"))); + public static final DeferredHolder SENTINEL_RELOAD_NORMAL = REGISTRY.register("sentinel_reload_normal", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("sentinel_reload_normal"))); + public static final DeferredHolder SENTINEL_RELOAD_EMPTY = REGISTRY.register("sentinel_reload_empty", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("sentinel_reload_empty"))); + public static final DeferredHolder SENTINEL_CHARGE = REGISTRY.register("sentinel_charge", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("sentinel_charge"))); + public static final DeferredHolder SENTINEL_BOLT = REGISTRY.register("sentinel_bolt", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("sentinel_bolt"))); + + public static final DeferredHolder M_60_FIRE_1P = REGISTRY.register("m_60_fire_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("m_60_fire_1p"))); + public static final DeferredHolder M_60_FIRE_3P = REGISTRY.register("m_60_fire_3p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("m_60_fire_3p"))); + public static final DeferredHolder M_60_FAR = REGISTRY.register("m_60_far", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("m_60_far"))); + public static final DeferredHolder M_60_VERYFAR = REGISTRY.register("m_60_veryfar", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("m_60_veryfar"))); + public static final DeferredHolder M_60_RELOAD_NORMAL = REGISTRY.register("m_60_reload_normal", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("m_60_reload_normal"))); + public static final DeferredHolder M_60_RELOAD_EMPTY = REGISTRY.register("m_60_reload_empty", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("m_60_reload_empty"))); + + public static final DeferredHolder SVD_FIRE_1P = REGISTRY.register("svd_fire_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("svd_fire_1p"))); + public static final DeferredHolder SVD_FIRE_3P = REGISTRY.register("svd_fire_3p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("svd_fire_3p"))); + public static final DeferredHolder SVD_FAR = REGISTRY.register("svd_far", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("svd_far"))); + public static final DeferredHolder SVD_VERYFAR = REGISTRY.register("svd_veryfar", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("svd_veryfar"))); + public static final DeferredHolder SVD_FIRE_1P_S = REGISTRY.register("svd_fire_1p_s", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("svd_fire_1p_s"))); + public static final DeferredHolder SVD_FIRE_3P_S = REGISTRY.register("svd_fire_3p_s", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("svd_fire_3p_s"))); + public static final DeferredHolder SVD_FAR_S = REGISTRY.register("svd_far_s", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("svd_far_s"))); + public static final DeferredHolder SVD_RELOAD_NORMAL = REGISTRY.register("svd_reload_normal", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("svd_reload_normal"))); + public static final DeferredHolder SVD_RELOAD_EMPTY = REGISTRY.register("svd_reload_empty", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("svd_reload_empty"))); + + public static final DeferredHolder M_98B_FIRE_1P = REGISTRY.register("m_98b_fire_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("m_98b_fire_1p"))); + public static final DeferredHolder M_98B_FIRE_3P = REGISTRY.register("m_98b_fire_3p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("m_98b_fire_3p"))); + public static final DeferredHolder M_98B_FAR = REGISTRY.register("m_98b_far", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("m_98b_far"))); + public static final DeferredHolder M_98B_VERYFAR = REGISTRY.register("m_98b_veryfar", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("m_98b_veryfar"))); + public static final DeferredHolder M_98B_RELOAD_NORMAL = REGISTRY.register("m_98b_reload_normal", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("m_98b_reload_normal"))); + public static final DeferredHolder M_98B_RELOAD_EMPTY = REGISTRY.register("m_98b_reload_empty", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("m_98b_reload_empty"))); + public static final DeferredHolder M_98B_BOLT = REGISTRY.register("m_98b_bolt", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("m_98b_bolt"))); + + public static final DeferredHolder MARLIN_FIRE_1P = REGISTRY.register("marlin_fire_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("marlin_fire_1p"))); + public static final DeferredHolder MARLIN_FIRE_3P = REGISTRY.register("marlin_fire_3p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("marlin_fire_3p"))); + public static final DeferredHolder MARLIN_FAR = REGISTRY.register("marlin_far", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("marlin_far"))); + public static final DeferredHolder MARLIN_VERYFAR = REGISTRY.register("marlin_veryfar", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("marlin_veryfar"))); + public static final DeferredHolder MARLIN_PREPARE = REGISTRY.register("marlin_prepare", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("marlin_prepare"))); + public static final DeferredHolder MARLIN_LOOP = REGISTRY.register("marlin_loop", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("marlin_loop"))); + public static final DeferredHolder MARLIN_END = REGISTRY.register("marlin_end", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("marlin_end"))); + public static final DeferredHolder MARLIN_BOLT = REGISTRY.register("marlin_bolt", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("marlin_bolt"))); + + public static final DeferredHolder M_870_FIRE_1P = REGISTRY.register("m_870_fire_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("m_870_fire_1p"))); + public static final DeferredHolder M_870_FIRE_3P = REGISTRY.register("m_870_fire_3p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("m_870_fire_3p"))); + public static final DeferredHolder M_870_FAR = REGISTRY.register("m_870_far", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("m_870_far"))); + public static final DeferredHolder M_870_VERYFAR = REGISTRY.register("m_870_veryfar", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("m_870_veryfar"))); + public static final DeferredHolder M_870_PREPARE_LOAD = REGISTRY.register("m_870_prepare_load", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("m_870_prepare_load"))); + public static final DeferredHolder M_870_LOOP = REGISTRY.register("m_870_loop", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("m_870_loop"))); + public static final DeferredHolder M_870_BOLT = REGISTRY.register("m_870_bolt", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("m_870_bolt"))); + + public static final DeferredHolder GLOCK_17_FIRE_1P = REGISTRY.register("glock_17_fire_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("glock_17_fire_1p"))); + public static final DeferredHolder GLOCK_17_FIRE_3P = REGISTRY.register("glock_17_fire_3p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("glock_17_fire_3p"))); + public static final DeferredHolder GLOCK_17_FAR = REGISTRY.register("glock_17_far", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("glock_17_far"))); + public static final DeferredHolder GLOCK_17_VERYFAR = REGISTRY.register("glock_17_veryfar", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("glock_17_veryfar"))); + public static final DeferredHolder GLOCK_17_RELOAD_NORMAL = REGISTRY.register("glock_17_reload_normal", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("glock_17_reload_normal"))); + public static final DeferredHolder GLOCK_17_RELOAD_EMPTY = REGISTRY.register("glock_17_reload_empty", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("glock_17_reload_empty"))); + + public static final DeferredHolder GLOCK_18_FIRE_1P = REGISTRY.register("glock_18_fire_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("glock_17_fire_1p"))); + public static final DeferredHolder GLOCK_18_FIRE_3P = REGISTRY.register("glock_18_fire_3p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("glock_17_fire_3p"))); + public static final DeferredHolder GLOCK_18_FAR = REGISTRY.register("glock_18_far", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("glock_17_far"))); + public static final DeferredHolder GLOCK_18_VERYFAR = REGISTRY.register("glock_18_veryfar", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("glock_17_veryfar"))); + public static final DeferredHolder GLOCK_18_RELOAD_NORMAL = REGISTRY.register("glock_18_reload_normal", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("glock_17_reload_normal"))); + public static final DeferredHolder GLOCK_18_RELOAD_EMPTY = REGISTRY.register("glock_18_reload_empty", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("glock_17_reload_empty"))); + + public static final DeferredHolder MP_443_FIRE_1P = REGISTRY.register("mp_443_fire_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("mp_443_fire_1p"))); + public static final DeferredHolder MP_443_FIRE_3P = REGISTRY.register("mp_443_fire_3p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("mp_443_fire_3p"))); + public static final DeferredHolder MP_443_FAR = REGISTRY.register("mp_443_far", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("glock_17_far"))); + public static final DeferredHolder MP_443_VERYFAR = REGISTRY.register("mp_443_veryfar", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("glock_17_veryfar"))); + public static final DeferredHolder MP_443_RELOAD_NORMAL = REGISTRY.register("mp_443_reload_normal", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("glock_17_reload_normal"))); + public static final DeferredHolder MP_443_RELOAD_EMPTY = REGISTRY.register("mp_443_reload_empty", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("glock_17_reload_empty"))); + + public static final DeferredHolder M_1911_FIRE_1P = REGISTRY.register("m_1911_fire_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("m_1911_fire_1p"))); + public static final DeferredHolder M_1911_FIRE_3P = REGISTRY.register("m_1911_fire_3p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("m_1911_fire_3p"))); + public static final DeferredHolder M_1911_FAR = REGISTRY.register("m_1911_far", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("m_1911_far"))); + public static final DeferredHolder M_1911_VERYFAR = REGISTRY.register("m_1911_veryfar", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("m_1911_veryfar"))); + public static final DeferredHolder M_1911_RELOAD_NORMAL = REGISTRY.register("m_1911_reload_normal", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("glock_17_reload_normal"))); + public static final DeferredHolder M_1911_RELOAD_EMPTY = REGISTRY.register("m_1911_reload_empty", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("glock_17_reload_empty"))); + + public static final DeferredHolder QBZ_95_FIRE_1P = REGISTRY.register("qbz_95_fire_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("qbz_95_fire_1p"))); + public static final DeferredHolder QBZ_95_FIRE_3P = REGISTRY.register("qbz_95_fire_3p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("qbz_95_fire_3p"))); + public static final DeferredHolder QBZ_95_FAR = REGISTRY.register("qbz_95_far", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("qbz_95_far"))); + public static final DeferredHolder QBZ_95_VERYFAR = REGISTRY.register("qbz_95_veryfar", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("qbz_95_veryfar"))); + public static final DeferredHolder QBZ_95_RELOAD_NORMAL = REGISTRY.register("qbz_95_reload_normal", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("qbz_95_reload_normal"))); + public static final DeferredHolder QBZ_95_RELOAD_EMPTY = REGISTRY.register("qbz_95_reload_empty", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("qbz_95_reload_empty"))); + public static final DeferredHolder QBZ_95_FIRE_1P_S = REGISTRY.register("qbz_95_fire_1p_s", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("qbz_95_fire_1p_s"))); + public static final DeferredHolder QBZ_95_FIRE_3P_S = REGISTRY.register("qbz_95_fire_3p_s", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("qbz_95_fire_3p_s"))); + public static final DeferredHolder QBZ_95_FAR_S = REGISTRY.register("qbz_95_far_s", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("ak_12_far_s"))); + public static final DeferredHolder QBZ_95_VERYFAR_S = REGISTRY.register("qbz_95_veryfar_s", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("ak_12_veryfar_s"))); + + public static final DeferredHolder K_98_FIRE_1P = REGISTRY.register("k_98_fire_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("k_98_fire_1p"))); + public static final DeferredHolder K_98_FIRE_3P = REGISTRY.register("k_98_fire_3p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("k_98_fire_3p"))); + public static final DeferredHolder K_98_FAR = REGISTRY.register("k_98_far", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("k_98_far"))); + public static final DeferredHolder K_98_VERYFAR = REGISTRY.register("k_98_veryfar", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("k_98_veryfar"))); + public static final DeferredHolder K_98_RELOAD_EMPTY = REGISTRY.register("k_98_reload_empty", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("k_98_reload_empty"))); + public static final DeferredHolder K_98_BOLT = REGISTRY.register("k_98_bolt", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("k_98_bolt"))); + public static final DeferredHolder K_98_PREPARE = REGISTRY.register("k_98_prepare", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("k_98_prepare"))); + public static final DeferredHolder K_98_LOOP = REGISTRY.register("k_98_loop", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("k_98_loop"))); + public static final DeferredHolder K_98_END = REGISTRY.register("k_98_end", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("k_98_end"))); + + public static final DeferredHolder MOSIN_NAGANT_FIRE_1P = REGISTRY.register("mosin_nagant_fire_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("mosin_nagant_fire_1p"))); + public static final DeferredHolder MOSIN_NAGANT_FIRE_3P = REGISTRY.register("mosin_nagant_fire_3p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("mosin_nagant_fire_3p"))); + public static final DeferredHolder MOSIN_NAGANT_FAR = REGISTRY.register("mosin_nagant_far", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("mosin_nagant_far"))); + public static final DeferredHolder MOSIN_NAGANT_VERYFAR = REGISTRY.register("mosin_nagant_veryfar", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("mosin_nagant_veryfar"))); + public static final DeferredHolder MOSIN_NAGANT_BOLT = REGISTRY.register("mosin_nagant_bolt", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("mosin_nagant_bolt"))); + public static final DeferredHolder MOSIN_NAGANT_PREPARE = REGISTRY.register("mosin_nagant_prepare", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("mosin_nagant_prepare"))); + public static final DeferredHolder MOSIN_NAGANT_PREPARE_EMPTY = REGISTRY.register("mosin_nagant_prepare_empty", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("mosin_nagant_prepare_empty"))); + public static final DeferredHolder MOSIN_NAGANT_LOOP = REGISTRY.register("mosin_nagant_loop", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("mosin_nagant_loop"))); + public static final DeferredHolder MOSIN_NAGANT_END = REGISTRY.register("mosin_nagant_end", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("mosin_nagant_end"))); + + public static final DeferredHolder JAVELIN_FIRE_1P = REGISTRY.register("javelin_fire_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("javelin_fire_1p"))); + public static final DeferredHolder JAVELIN_FIRE_3P = REGISTRY.register("javelin_fire_3p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("javelin_fire_3p"))); + public static final DeferredHolder JAVELIN_FAR = REGISTRY.register("javelin_far", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("javelin_far"))); + public static final DeferredHolder JAVELIN_RELOAD_EMPTY = REGISTRY.register("javelin_reload_empty", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("javelin_reload_empty"))); + + public static final DeferredHolder JAVELIN_LOCK = REGISTRY.register("javelin_lock", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("javelin_lock"))); + public static final DeferredHolder JAVELIN_LOCKON = REGISTRY.register("javelin_lockon", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("javelin_lockon"))); + + public static final DeferredHolder SECONDARY_CATACLYSM_FIRE_1P = REGISTRY.register("secondary_cataclysm_fire_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("secondary_cataclysm_fire_1p"))); + public static final DeferredHolder SECONDARY_CATACLYSM_FIRE_3P = REGISTRY.register("secondary_cataclysm_fire_3p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("secondary_cataclysm_fire_3p"))); + public static final DeferredHolder SECONDARY_CATACLYSM_FAR = REGISTRY.register("secondary_cataclysm_far", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("secondary_cataclysm_far"))); + public static final DeferredHolder SECONDARY_CATACLYSM_VERYFAR = REGISTRY.register("secondary_cataclysm_veryfar", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("secondary_cataclysm_veryfar"))); + public static final DeferredHolder SECONDARY_CATACLYSM_FIRE_1P_CHARGE = REGISTRY.register("secondary_cataclysm_fire_1p_charge", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("secondary_cataclysm_fire_1p_charge"))); + public static final DeferredHolder SECONDARY_CATACLYSM_FIRE_3P_CHARGE = REGISTRY.register("secondary_cataclysm_fire_3p_charge", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("secondary_cataclysm_fire_3p_charge"))); + public static final DeferredHolder SECONDARY_CATACLYSM_FAR_CHARGE = REGISTRY.register("secondary_cataclysm_far_charge", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("secondary_cataclysm_far_charge"))); + public static final DeferredHolder SECONDARY_CATACLYSM_VERYFAR_CHARGE = REGISTRY.register("secondary_cataclysm_veryfar_charge", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("secondary_cataclysm_veryfar_charge"))); + public static final DeferredHolder SECONDARY_CATACLYSM_PREPARE_LOAD = REGISTRY.register("secondary_cataclysm_prepare_load", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("secondary_cataclysm_prepare_load"))); + public static final DeferredHolder SECONDARY_CATACLYSM_LOOP = REGISTRY.register("secondary_cataclysm_loop", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("secondary_cataclysm_loop"))); + public static final DeferredHolder SECONDARY_CATACLYSM_END = REGISTRY.register("secondary_cataclysm_end", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("secondary_cataclysm_end"))); + + public static final DeferredHolder M_2_FIRE_1P = REGISTRY.register("m2_fire_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("m2_fire_1p"))); + public static final DeferredHolder M_2_FIRE_3P = REGISTRY.register("m2_fire_3p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("m2_fire_3p"))); + public static final DeferredHolder M_2_FAR = REGISTRY.register("m2_far", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("m2_far"))); + public static final DeferredHolder M_2_VERYFAR = REGISTRY.register("m2_veryfar", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("m2_veryfar"))); + + public static final DeferredHolder MK_42_FIRE_1P = REGISTRY.register("mk_42_fire_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("mk_42_fire_1p"))); + public static final DeferredHolder MK_42_FIRE_3P = REGISTRY.register("mk_42_fire_3p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("mk_42_fire_3p"))); + public static final DeferredHolder MK_42_FAR = REGISTRY.register("mk_42_far", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("mk_42_far"))); + public static final DeferredHolder MK_42_VERYFAR = REGISTRY.register("mk_42_veryfar", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("mk_42_veryfar"))); + public static final DeferredHolder CANNON_RELOAD = REGISTRY.register("cannon_reload", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("cannon_reload"))); + public static final DeferredHolder CANNON_ZOOM_IN = REGISTRY.register("cannon_zoom_in", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("cannon_zoom_in"))); + public static final DeferredHolder CANNON_ZOOM_OUT = REGISTRY.register("cannon_zoom_out", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("cannon_zoom_out"))); + + public static final DeferredHolder BULLET_SUPPLY = REGISTRY.register("bullet_supply", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("bullet_supply"))); + public static final DeferredHolder ADJUST_FOV = REGISTRY.register("adjust_fov", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("adjust_fov"))); + public static final DeferredHolder DRONE_SOUND = REGISTRY.register("drone_sound", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("drone_sound"))); + public static final DeferredHolder GRENADE_PULL = REGISTRY.register("grenade_pull", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("grenade_pull"))); + public static final DeferredHolder GRENADE_THROW = REGISTRY.register("grenade_throw", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("grenade_throw"))); + + public static final DeferredHolder EDIT_MODE = REGISTRY.register("edit_mode", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("edit_mode"))); + public static final DeferredHolder EDIT = REGISTRY.register("edit", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("edit"))); + public static final DeferredHolder SHELL_CASING_NORMAL = REGISTRY.register("shell_casing_normal", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("shell_casing_normal"))); + public static final DeferredHolder SHELL_CASING_SHOTGUN = REGISTRY.register("shell_casing_shotgun", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("shell_casing_shotgun"))); + public static final DeferredHolder SHELL_CASING_50CAL = REGISTRY.register("shell_casing_50cal", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("shell_casing_50cal"))); + + public static final DeferredHolder OPEN = REGISTRY.register("open", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("open"))); + + public static final DeferredHolder CHARGE_RIFLE_FIRE_1P = REGISTRY.register("charge_rifle_fire_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("charge_rifle_fire_1p"))); + public static final DeferredHolder CHARGE_RIFLE_FIRE_3P = REGISTRY.register("charge_rifle_fire_3p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("charge_rifle_fire_3p"))); + public static final DeferredHolder CHARGE_RIFLE_FIRE_BOOM_1P = REGISTRY.register("charge_rifle_fire_boom_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("charge_rifle_fire_boom_1p"))); + public static final DeferredHolder CHARGE_RIFLE_FIRE_BOOM_3P = REGISTRY.register("charge_rifle_fire_boom_3p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("charge_rifle_fire_boom_3p"))); + + public static final DeferredHolder ANNIHILATOR_FIRE_1P = REGISTRY.register("annihilator_fire_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("annihilator_fire_1p"))); + public static final DeferredHolder ANNIHILATOR_FIRE_3P = REGISTRY.register("annihilator_fire_3p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("annihilator_fire_3p"))); + public static final DeferredHolder ANNIHILATOR_FAR = REGISTRY.register("annihilator_far", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("annihilator_far"))); + public static final DeferredHolder ANNIHILATOR_VERYFAR = REGISTRY.register("annihilator_veryfar", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("annihilator_veryfar"))); + public static final DeferredHolder ANNIHILATOR_RELOAD = REGISTRY.register("annihilator_reload", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("annihilator_reload"))); + + public static final DeferredHolder BOAT_ENGINE = REGISTRY.register("boat_engine", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("boat_engine"))); + public static final DeferredHolder VEHICLE_STRIKE = REGISTRY.register("vehicle_strike", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("vehicle_strike"))); + public static final DeferredHolder WHEEL_CHAIR_ENGINE = REGISTRY.register("wheel_chair_engine", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("wheel_chair_engine"))); + public static final DeferredHolder WHEEL_CHAIR_JUMP = REGISTRY.register("wheel_chair_jump", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("wheel_chair_jump"))); + + public static final DeferredHolder RADAR_SEARCH_START = REGISTRY.register("radar_search_start", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("radar_search_start"))); + public static final DeferredHolder RADAR_SEARCH_IDLE = REGISTRY.register("radar_search_idle", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("radar_search_idle"))); + public static final DeferredHolder RADAR_SEARCH_END = REGISTRY.register("radar_search_end", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("radar_search_end"))); + + public static final DeferredHolder HELICOPTER_ENGINE_START = REGISTRY.register("helicopter_engine_start", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("helicopter_engine_start"))); + public static final DeferredHolder HELICOPTER_ENGINE = REGISTRY.register("helicopter_engine", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("helicopter_engine"))); + public static final DeferredHolder HELICOPTER_ENGINE_1P = REGISTRY.register("helicopter_engine_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("helicopter_engine_1p"))); + public static final DeferredHolder HELICOPTER_CANNON_FIRE_1P = REGISTRY.register("heli_cannon_fire_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("heli_cannon_fire_1p"))); + public static final DeferredHolder HELICOPTER_CANNON_FIRE_3P = REGISTRY.register("heli_cannon_fire_3p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("heli_cannon_fire_3p"))); + public static final DeferredHolder HELICOPTER_CANNON_FAR = REGISTRY.register("heli_cannon_far", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("heli_cannon_far"))); + public static final DeferredHolder HELICOPTER_CANNON_VERYFAR = REGISTRY.register("heli_cannon_veryfar", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("heli_cannon_veryfar"))); + public static final DeferredHolder HELICOPTER_ROCKET_FIRE_1P = REGISTRY.register("heli_rocket_fire_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("heli_rocket_fire_1p"))); + public static final DeferredHolder HELICOPTER_ROCKET_FIRE_3P = REGISTRY.register("heli_rocket_fire_3p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("heli_rocket_fire_3p"))); + public static final DeferredHolder INTO_CANNON = REGISTRY.register("into_cannon", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("into_cannon"))); + public static final DeferredHolder INTO_MISSILE = REGISTRY.register("into_missile", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("into_missile"))); + public static final DeferredHolder MISSILE_RELOAD = REGISTRY.register("missile_reload", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("missile_reload"))); + public static final DeferredHolder LOW_HEALTH = REGISTRY.register("low_health", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("low_health"))); + public static final DeferredHolder NO_HEALTH = REGISTRY.register("no_health", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("no_health"))); + public static final DeferredHolder LOCKING_WARNING = REGISTRY.register("locking_warning", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("locking_warning"))); + public static final DeferredHolder LOCKED_WARNING = REGISTRY.register("locked_warning", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("locked_warning"))); + public static final DeferredHolder MISSILE_WARNING = REGISTRY.register("missile_warning", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("missile_warning"))); + public static final DeferredHolder DECOY_FIRE = REGISTRY.register("decoy_fire", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("decoy_fire"))); + public static final DeferredHolder DECOY_RELOAD = REGISTRY.register("decoy_reload", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("decoy_reload"))); + public static final DeferredHolder LUNGE_MINE_GROWL = REGISTRY.register("lunge_mine_growl", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("lunge_mine_growl"))); + public static final DeferredHolder LAV_CANNON_FIRE_1P = REGISTRY.register("lav_cannon_fire_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("lav_fire_1p"))); + public static final DeferredHolder LAV_CANNON_FIRE_3P = REGISTRY.register("lav_cannon_fire_3p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("lav_fire_3p"))); + public static final DeferredHolder LAV_CANNON_FAR = REGISTRY.register("lav_cannon_far", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("lav_far"))); + public static final DeferredHolder LAV_CANNON_VERYFAR = REGISTRY.register("lav_cannon_veryfar", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("lav_veryfar"))); + public static final DeferredHolder LAV_ENGINE = REGISTRY.register("lav_engine", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("lav_engine"))); + public static final DeferredHolder LAV_ENGINE_1P = REGISTRY.register("lav_engine_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("lav_engine_1p"))); + public static final DeferredHolder COAX_FIRE_1P = REGISTRY.register("coax_fire_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("coax_fire_1p"))); + public static final DeferredHolder BMP_CANNON_FIRE_1P = REGISTRY.register("bmp_cannon_fire_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("bmp_fire_1p"))); + public static final DeferredHolder BMP_CANNON_FIRE_3P = REGISTRY.register("bmp_cannon_fire_3p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("bmp_fire_3p"))); + public static final DeferredHolder BMP_ENGINE = REGISTRY.register("bmp_engine", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("bmp_engine"))); + public static final DeferredHolder BMP_ENGINE_1P = REGISTRY.register("bmp_engine_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("bmp_engine_1p"))); + public static final DeferredHolder BMP_MISSILE_FIRE_1P = REGISTRY.register("bmp_missile_fire_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("bmp_missile_fire_1p"))); + public static final DeferredHolder BMP_MISSILE_FIRE_3P = REGISTRY.register("bmp_missile_fire_3p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("bmp_missile_fire_3p"))); + public static final DeferredHolder BMP_MISSILE_RELOAD = REGISTRY.register("bmp_missile_reload", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("bmp_missile_reload"))); + public static final DeferredHolder BMP_STEP = REGISTRY.register("bmp_step", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("bmp_step"))); + public static final DeferredHolder WHEEL_STEP = REGISTRY.register("wheel_step", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("wheel_step"))); + public static final DeferredHolder LASER_TOWER_SHOOT = REGISTRY.register("laser_tower_shoot", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("laser_tower_shoot"))); + public static final DeferredHolder YX_100_RELOAD = REGISTRY.register("yx_100_reload", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("yx_100_reload"))); + public static final DeferredHolder YX_100_FIRE_1P = REGISTRY.register("yx_100_fire_1p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("yx_100_fire_1p"))); + public static final DeferredHolder YX_100_FIRE_3P = REGISTRY.register("yx_100_fire_3p", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("yx_100_fire_3p"))); + public static final DeferredHolder YX_100_FAR = REGISTRY.register("yx_100_far", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("yx_100_far"))); + public static final DeferredHolder YX_100_VERYFAR = REGISTRY.register("yx_100_veryfar", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("yx_100_veryfar"))); + public static final DeferredHolder TURRET_TURN = REGISTRY.register("turret_turn", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("turret_turn"))); + public static final DeferredHolder C4_BEEP = REGISTRY.register("c4_beep", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("c4_beep"))); + public static final DeferredHolder C4_FINAL = REGISTRY.register("c4_final", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("c4_final"))); + public static final DeferredHolder C4_THROW = REGISTRY.register("c4_throw", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("c4_throw"))); + public static final DeferredHolder C4_DETONATOR_CLICK = REGISTRY.register("c4_detonator_click", () -> SoundEvent.createVariableRangeEvent(ModUtils.loc("c4_detonator_click"))); +} + diff --git a/src/main/java/com/atsuishio/superbwarfare/init/ModTabs.java b/src/main/java/com/atsuishio/superbwarfare/init/ModTabs.java index b2293b180..76c0efc34 100644 --- a/src/main/java/com/atsuishio/superbwarfare/init/ModTabs.java +++ b/src/main/java/com/atsuishio/superbwarfare/init/ModTabs.java @@ -60,21 +60,21 @@ public class ModTabs { // ) // .build()); // -// public static final RegistryObject PERK_TAB = TABS.register("perk", -// () -> CreativeModeTab.builder() -// .title(Component.translatable("item_group.superbwarfare.perk")) -// .icon(() -> new ItemStack(ModItems.AP_BULLET.get())) +public static final DeferredHolder PERK_TAB = TABS.register("perk", + () -> CreativeModeTab.builder() + .title(Component.translatable("item_group.superbwarfare.perk")) + .icon(() -> new ItemStack(ModItems.AP_BULLET.get())) // .withTabsBefore(GUN_TAB.getKey()) -// .displayItems((param, output) -> ModItems.PERKS.getEntries().forEach(registryObject -> output.accept(registryObject.get()))) -// .build()); + .displayItems((param, output) -> ModItems.PERKS.getEntries().forEach(registryObject -> output.accept(registryObject.get()))) + .build()); // -// public static final RegistryObject AMMO_TAB = TABS.register("ammo", -// () -> CreativeModeTab.builder() -// .title(Component.translatable("item_group.superbwarfare.ammo")) +public static final DeferredHolder AMMO_TAB = TABS.register("ammo", + () -> CreativeModeTab.builder() + .title(Component.translatable("item_group.superbwarfare.ammo")) // .icon(() -> new ItemStack(ModItems.SHOTGUN_AMMO_BOX.get())) -// .withTabsBefore(PERK_TAB.getKey()) -// .displayItems((param, output) -> { -// ModItems.AMMO.getEntries().forEach(registryObject -> { + .withTabsBefore(PERK_TAB.getKey()) + .displayItems((param, output) -> { + ModItems.AMMO.getEntries().forEach(registryObject -> { // if (registryObject.get() != ModItems.POTION_MORTAR_SHELL.get()) { // output.accept(registryObject.get()); // @@ -82,12 +82,12 @@ public class ModTabs { // output.accept(C4Bomb.makeInstance()); // } // } -// }); -// + }); + // param.holders().lookup(Registries.POTION) // .ifPresent(potion -> generatePotionEffectTypes(output, potion, ModItems.POTION_MORTAR_SHELL.get())); -// }) -// .build()); + }) + .build()); public static final DeferredHolder ITEM_TAB = TABS.register("item", () -> CreativeModeTab.builder() diff --git a/src/main/java/com/atsuishio/superbwarfare/init/ModTags.java b/src/main/java/com/atsuishio/superbwarfare/init/ModTags.java new file mode 100644 index 000000000..75885a48a --- /dev/null +++ b/src/main/java/com/atsuishio/superbwarfare/init/ModTags.java @@ -0,0 +1,75 @@ +package com.atsuishio.superbwarfare.init; + +import com.atsuishio.superbwarfare.ModUtils; +import net.minecraft.core.registries.Registries; +import net.minecraft.tags.BlockTags; +import net.minecraft.tags.ItemTags; +import net.minecraft.tags.TagKey; +import net.minecraft.world.damagesource.DamageType; +import net.minecraft.world.item.Item; +import net.minecraft.world.level.block.Block; + +@SuppressWarnings("unused") +public class ModTags { + + public static class Items { + public static final TagKey GUN = tag("gun"); + + public static final TagKey USE_HANDGUN_AMMO = tag("use_handgun_ammo"); + public static final TagKey USE_RIFLE_AMMO = tag("use_rifle_ammo"); + public static final TagKey USE_SHOTGUN_AMMO = tag("use_shotgun_ammo"); + public static final TagKey USE_SNIPER_AMMO = tag("use_sniper_ammo"); + public static final TagKey USE_HEAVY_AMMO = tag("use_heavy_ammo"); + + public static final TagKey SMG = tag("smg"); + public static final TagKey HANDGUN = tag("handgun"); + public static final TagKey RIFLE = tag("rifle"); + public static final TagKey SNIPER_RIFLE = tag("sniper_rifle"); + public static final TagKey MACHINE_GUN = tag("machine_gun"); + public static final TagKey SHOTGUN = tag("shotgun"); + public static final TagKey HEAVY_WEAPON = tag("heavy_weapon"); + + public static final TagKey LAUNCHER = tag("launcher"); + public static final TagKey REVOLVER = tag("revolver"); + + public static final TagKey NORMAL_GUN = tag("normal_gun"); + + public static final TagKey MILITARY_ARMOR = tag("military_armor"); + public static final TagKey MILITARY_ARMOR_HEAVY = tag("military_armor_heavy"); + + public static final TagKey INGOTS_STEEL = tag("ingots/steel"); + public static final TagKey STORAGE_BLOCK_STEEL = tag("storage_blocks/steel"); + + public static final TagKey INGOTS_CEMENTED_CARBIDE = tag("ingots/cemented_carbide"); + public static final TagKey STORAGE_BLOCK_CEMENTED_CARBIDE = tag("storage_blocks/cemented_carbide"); + + public static final TagKey BLUEPRINT = tag("blueprint"); + public static final TagKey COMMON_BLUEPRINT = tag("blueprint/common"); + public static final TagKey RARE_BLUEPRINT = tag("blueprint/rare"); + public static final TagKey EPIC_BLUEPRINT = tag("blueprint/epic"); + public static final TagKey LEGENDARY_BLUEPRINT = tag("blueprint/legendary"); + public static final TagKey CANNON_BLUEPRINT = tag("blueprint/cannon"); + + private static TagKey tag(String name) { + return ItemTags.create(ModUtils.loc(name)); + } + } + + public static class Blocks { + public static final TagKey SOFT_COLLISION = tag("soft_collision"); + public static final TagKey HARD_COLLISION = tag("hard_collision"); + + private static TagKey tag(String name) { + return BlockTags.create(ModUtils.loc(name)); + } + } + + public static class DamageTypes { + public static final TagKey PROJECTILE = tag("projectile"); + public static final TagKey PROJECTILE_ABSOLUTE = tag("projectile_absolute"); + + private static TagKey tag(String name) { + return TagKey.create(Registries.DAMAGE_TYPE, ModUtils.loc(name)); + } + } +} diff --git a/src/main/java/com/atsuishio/superbwarfare/item/PerkItem.java b/src/main/java/com/atsuishio/superbwarfare/item/PerkItem.java new file mode 100644 index 000000000..cd35161d2 --- /dev/null +++ b/src/main/java/com/atsuishio/superbwarfare/item/PerkItem.java @@ -0,0 +1,66 @@ +package com.atsuishio.superbwarfare.item; + +import com.atsuishio.superbwarfare.perk.AmmoPerk; +import com.atsuishio.superbwarfare.perk.Perk; +import net.minecraft.ChatFormatting; +import net.minecraft.network.chat.Component; +import net.minecraft.world.item.Item; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.item.Rarity; +import net.minecraft.world.item.TooltipFlag; +import net.neoforged.neoforge.registries.DeferredHolder; + +import javax.annotation.ParametersAreNonnullByDefault; +import java.util.List; +import java.util.function.Supplier; + +public class PerkItem extends Item { + private final DeferredHolder perk; + + public PerkItem(DeferredHolder perk) { + super(new Properties()); + this.perk = perk; + } + + public PerkItem(DeferredHolder perk, Rarity rarity) { + super(new Properties().rarity(rarity)); + this.perk = perk; + } + + public Perk getPerk() { + return this.perk.get(); + } + + @Override + @ParametersAreNonnullByDefault + public void appendHoverText(ItemStack stack, TooltipContext context, List tooltipComponents, TooltipFlag tooltipFlag) { + ChatFormatting chatFormatting = switch (this.getPerk().type) { + case AMMO -> ChatFormatting.YELLOW; + case FUNCTIONAL -> ChatFormatting.GREEN; + case DAMAGE -> ChatFormatting.RED; + }; + + tooltipComponents.add(Component.translatable("des.superbwarfare." + this.getPerk().descriptionId).withStyle(ChatFormatting.GRAY)); + tooltipComponents.add(Component.literal("")); + tooltipComponents.add(Component.translatable("perk.superbwarfare.slot").withStyle(ChatFormatting.GOLD) + .append(Component.translatable("perk.superbwarfare.slot_" + this.getPerk().type.getName()).withStyle(chatFormatting))); + if (this.getPerk() instanceof AmmoPerk ammoPerk) { + if (ammoPerk.damageRate < 1) { + tooltipComponents.add(Component.translatable("des.superbwarfare.perk_damage_reduce").withStyle(ChatFormatting.RED)); + } else if (ammoPerk.damageRate > 1) { + tooltipComponents.add(Component.translatable("des.superbwarfare.perk_damage_plus").withStyle(ChatFormatting.GREEN)); + } + + if (ammoPerk.speedRate < 1) { + tooltipComponents.add(Component.translatable("des.superbwarfare.perk_speed_reduce").withStyle(ChatFormatting.RED)); + } else if (ammoPerk.speedRate > 1) { + tooltipComponents.add(Component.translatable("des.superbwarfare.perk_speed_plus").withStyle(ChatFormatting.GREEN)); + } + + if (ammoPerk.slug) { + tooltipComponents.add(Component.translatable("des.superbwarfare.perk_slug").withStyle(ChatFormatting.YELLOW)); + } + } + } + +} diff --git a/src/main/java/com/atsuishio/superbwarfare/item/ShortcutPack.java b/src/main/java/com/atsuishio/superbwarfare/item/ShortcutPack.java new file mode 100644 index 000000000..562f99cca --- /dev/null +++ b/src/main/java/com/atsuishio/superbwarfare/item/ShortcutPack.java @@ -0,0 +1,25 @@ +package com.atsuishio.superbwarfare.item; + +import net.minecraft.ChatFormatting; +import net.minecraft.network.chat.Component; +import net.minecraft.world.item.Item; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.item.Rarity; +import net.minecraft.world.item.TooltipFlag; + +import javax.annotation.ParametersAreNonnullByDefault; +import java.util.List; + +public class ShortcutPack extends Item { + public ShortcutPack() { + super(new Properties().rarity(Rarity.EPIC)); + } + + @Override + @ParametersAreNonnullByDefault + public void appendHoverText(ItemStack stack, TooltipContext context, List tooltipComponents, TooltipFlag tooltipFlag) { + tooltipComponents.add(Component.translatable("des.superbwarfare.use_tip.shortcut_pack").withStyle(ChatFormatting.AQUA)); + tooltipComponents.add(Component.translatable("des.superbwarfare.tips.shortcut_pack").withStyle(ChatFormatting.GRAY)); + } + +} diff --git a/src/main/java/com/atsuishio/superbwarfare/item/common/BlueprintItem.java b/src/main/java/com/atsuishio/superbwarfare/item/common/BlueprintItem.java new file mode 100644 index 000000000..6be43cf7e --- /dev/null +++ b/src/main/java/com/atsuishio/superbwarfare/item/common/BlueprintItem.java @@ -0,0 +1,11 @@ +package com.atsuishio.superbwarfare.item.common; + +import net.minecraft.world.item.Item; +import net.minecraft.world.item.Rarity; + +public class BlueprintItem extends Item { + + public BlueprintItem(Rarity rarity) { + super(new Properties().rarity(rarity)); + } +} diff --git a/src/main/java/com/atsuishio/superbwarfare/item/common/MaterialPack.java b/src/main/java/com/atsuishio/superbwarfare/item/common/MaterialPack.java new file mode 100644 index 000000000..2082502f5 --- /dev/null +++ b/src/main/java/com/atsuishio/superbwarfare/item/common/MaterialPack.java @@ -0,0 +1,11 @@ +package com.atsuishio.superbwarfare.item.common; + +import net.minecraft.world.item.Item; +import net.minecraft.world.item.Rarity; + +public class MaterialPack extends Item { + + public MaterialPack(Rarity rarity) { + super(new Properties().rarity(rarity)); + } +} diff --git a/src/main/java/com/atsuishio/superbwarfare/perk/AmmoPerk.java b/src/main/java/com/atsuishio/superbwarfare/perk/AmmoPerk.java new file mode 100644 index 000000000..307dddee7 --- /dev/null +++ b/src/main/java/com/atsuishio/superbwarfare/perk/AmmoPerk.java @@ -0,0 +1,76 @@ +package com.atsuishio.superbwarfare.perk; + +import net.minecraft.util.Mth; +import net.minecraft.world.effect.MobEffect; + +import java.util.ArrayList; +import java.util.function.Supplier; + +public class AmmoPerk extends Perk { + + public float bypassArmorRate; + public float damageRate; + public float speedRate; + public boolean slug; + public float[] rgb; + public Supplier> mobEffects; + + public AmmoPerk(Builder builder) { + super(builder.descriptionId, builder.type); + this.bypassArmorRate = builder.bypassArmorRate; + this.damageRate = builder.damageRate; + this.speedRate = builder.speedRate; + this.slug = builder.slug; + this.rgb = builder.rgb; + this.mobEffects = () -> builder.mobEffects; + } + + public static class Builder { + + String descriptionId; + Type type; + float bypassArmorRate = 0.0f; + float damageRate = 1.0f; + float speedRate = 1.0f; + boolean slug = false; + float[] rgb = {1, 222 / 255f, 39 / 255f}; + public ArrayList mobEffects = new ArrayList<>(); + + public Builder(String descriptionId, Type type) { + this.descriptionId = descriptionId; + this.type = type; + } + + public Builder bypassArmorRate(float bypassArmorRate) { + this.bypassArmorRate = Mth.clamp(bypassArmorRate, -1, 1); + return this; + } + + public Builder damageRate(float damageRate) { + this.damageRate = Mth.clamp(damageRate, 0, Float.POSITIVE_INFINITY); + return this; + } + + public Builder speedRate(float speedRate) { + this.speedRate = Mth.clamp(speedRate, 0, Float.POSITIVE_INFINITY); + return this; + } + + public Builder slug(boolean slug) { + this.slug = slug; + return this; + } + + public Builder rgb(int r, int g, int b) { + this.rgb[0] = r / 255f; + this.rgb[1] = g / 255f; + this.rgb[2] = b / 255f; + return this; + } + + public Builder mobEffect(Supplier mobEffect) { + this.mobEffects.add(mobEffect.get()); + return this; + } + } +} diff --git a/src/main/java/com/atsuishio/superbwarfare/perk/Perk.java b/src/main/java/com/atsuishio/superbwarfare/perk/Perk.java new file mode 100644 index 000000000..45a70f00c --- /dev/null +++ b/src/main/java/com/atsuishio/superbwarfare/perk/Perk.java @@ -0,0 +1,26 @@ +package com.atsuishio.superbwarfare.perk; + +public class Perk { + public String descriptionId; + public Type type; + + public Perk(String descriptionId, Type type) { + this.descriptionId = descriptionId; + this.type = type; + } + + public enum Type { + AMMO("Ammo"), + FUNCTIONAL("Functional"), + DAMAGE("Damage"); + private final String type; + + Type(String type) { + this.type = type; + } + + public String getName() { + return type; + } + } +} diff --git a/src/main/resources/assets/superbwarfare/models/block/barbed_wire.json b/src/main/resources/assets/superbwarfare/models/block/barbed_wire.json new file mode 100644 index 000000000..def14fe5a --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/block/barbed_wire.json @@ -0,0 +1,1347 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 64, + 64 + ], + "elements": [ + { + "from": [ + 1.35391, + -2.94254, + 6.75 + ], + "to": [ + 2.35391, + 20.05746, + 8.75 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 8.35391, + 8.70746, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 2, + 5.25, + 7.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.5, + 0, + 1, + 5.75 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5.25, + 2, + 5.5, + 7.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 0.5, + 5.75 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 1, + 6, + 0.5, + 5.75 + ], + "rotation": 270, + "texture": "#1" + }, + "down": { + "uv": [ + 1.5, + 5.75, + 1, + 6 + ], + "rotation": 90, + "texture": "#1" + } + } + }, + { + "from": [ + 0.35391, + -2.44203, + 7.7505 + ], + "to": [ + 1.35391, + 19.55797, + 9.7505 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 8.35391, + 8.70746, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 2.25, + 5.5, + 2.5, + 11 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.5, + 0, + 3, + 5.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 2.5, + 5.5, + 2.75, + 11 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2, + 0, + 2.5, + 5.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2, + 6, + 1.5, + 5.75 + ], + "rotation": 270, + "texture": "#1" + }, + "down": { + "uv": [ + 6.25, + 2, + 5.75, + 2.25 + ], + "rotation": 90, + "texture": "#1" + } + } + }, + { + "from": [ + 0.25391, + 8.05797, + 8.2505 + ], + "to": [ + 0.35391, + 9.05797, + 9.2505 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 8.35391, + 8.70746, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 5.75, + 3.25, + 6, + 3.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.75, + 3.5, + 6, + 3.75 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3.75, + 5.75, + 4, + 6 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.75, + 5.5, + 4, + 5.75 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6, + 4, + 5.75, + 3.75 + ], + "rotation": 270, + "texture": "#1" + }, + "down": { + "uv": [ + 6, + 4, + 5.75, + 4.25 + ], + "rotation": 90, + "texture": "#1" + } + } + }, + { + "from": [ + 16.35391, + 8.05797, + 8.2505 + ], + "to": [ + 16.45391, + 9.05797, + 9.2505 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 8.35391, + 8.70746, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 5.75, + 4.5, + 6, + 4.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.75, + 4.75, + 6, + 5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5.75, + 5, + 6, + 5.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.75, + 4.25, + 6, + 4.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6, + 5.5, + 5.75, + 5.25 + ], + "rotation": 270, + "texture": "#1" + }, + "down": { + "uv": [ + 6, + 5.5, + 5.75, + 5.75 + ], + "rotation": 90, + "texture": "#1" + } + } + }, + { + "from": [ + 14.35391, + -2.94254, + 6.75 + ], + "to": [ + 15.35391, + 20.05746, + 8.75 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 8.35391, + 8.70746, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 2, + 5.5, + 2.25, + 11.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.5, + 0, + 2, + 5.75 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5.5, + 2, + 5.75, + 7.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1, + 0, + 1.5, + 5.75 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6.25, + 2.5, + 5.75, + 2.25 + ], + "rotation": 270, + "texture": "#1" + }, + "down": { + "uv": [ + 6.25, + 2.5, + 5.75, + 2.75 + ], + "rotation": 90, + "texture": "#1" + } + } + }, + { + "from": [ + 0.85391, + 8.95746, + 8.75 + ], + "to": [ + 15.85391, + 10.95746, + 10.75 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 8.35391, + 8.70746, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 0, + 7.75, + 0.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 5.75, + 0.5, + 6.25 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 4, + 0.5, + 7.75, + 1 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.25, + 5.5, + 3.75, + 6 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4.5, + 4.75, + 4, + 1 + ], + "rotation": 270, + "texture": "#1" + }, + "down": { + "uv": [ + 5, + 1, + 4.5, + 4.75 + ], + "rotation": 90, + "texture": "#1" + } + } + }, + { + "from": [ + 15.35391, + -2.44203, + 7.7505 + ], + "to": [ + 16.35391, + 19.55797, + 9.7505 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 8.35391, + 8.70746, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 2.75, + 5.5, + 3, + 11 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.5, + 0, + 4, + 5.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3, + 5.5, + 3.25, + 11 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3, + 0, + 3.5, + 5.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6.25, + 3, + 5.75, + 2.75 + ], + "rotation": 270, + "texture": "#1" + }, + "down": { + "uv": [ + 6.25, + 3, + 5.75, + 3.25 + ], + "rotation": 90, + "texture": "#1" + } + } + }, + { + "from": [ + 1.35391, + 6.95746, + 17.75 + ], + "to": [ + 15.35391, + 8.95746, + 17.75 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 8.35391, + 8.70746, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 1, + 8.5, + 1.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 0, + 0.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5, + 1.5, + 8.5, + 2 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 0, + 0.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 3.5, + 0, + 0 + ], + "rotation": 270, + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 0, + 3.5 + ], + "rotation": 90, + "texture": "#1" + } + } + }, + { + "from": [ + 1.35391, + 7.95746, + 16.75 + ], + "to": [ + 15.35391, + 7.95746, + 18.75 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 8.35391, + 8.70746, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 3.5, + 0 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 0.5, + 0 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 3.5, + 0 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 0.5, + 0 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4.5, + 8.25, + 4, + 4.75 + ], + "rotation": 270, + "texture": "#1" + }, + "down": { + "uv": [ + 5, + 4.75, + 4.5, + 8.25 + ], + "rotation": 90, + "texture": "#1" + } + } + }, + { + "from": [ + 1.35391, + 17.95746, + 7.75 + ], + "to": [ + 15.35391, + 19.95746, + 7.75 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 8.35391, + 8.70746, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 1, + 8.5, + 1.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 0, + 0.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5, + 1.5, + 8.5, + 2 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 0, + 0.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 3.5, + 0, + 0 + ], + "rotation": 270, + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 0, + 3.5 + ], + "rotation": 90, + "texture": "#1" + } + } + }, + { + "from": [ + 1.35391, + 18.95746, + 6.75 + ], + "to": [ + 15.35391, + 18.95746, + 8.75 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 8.35391, + 8.70746, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 3.5, + 0 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 0.5, + 0 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 3.5, + 0 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 0.5, + 0 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4.5, + 8.25, + 4, + 4.75 + ], + "rotation": 270, + "texture": "#1" + }, + "down": { + "uv": [ + 5, + 4.75, + 4.5, + 8.25 + ], + "rotation": 90, + "texture": "#1" + } + } + }, + { + "from": [ + 1.35391, + -2.04254, + 7.75 + ], + "to": [ + 15.35391, + -0.04254, + 7.75 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 8.35391, + 8.70746, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 1, + 8.5, + 1.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 0, + 0.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5, + 1.5, + 8.5, + 2 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 0, + 0.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 3.5, + 0, + 0 + ], + "rotation": 270, + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 0, + 3.5 + ], + "rotation": 90, + "texture": "#1" + } + } + }, + { + "from": [ + 1.35391, + -1.04254, + 6.75 + ], + "to": [ + 15.35391, + -1.04254, + 8.75 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 8.35391, + 8.70746, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 3.5, + 0 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 0.5, + 0 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 3.5, + 0 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 0.5, + 0 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4.5, + 8.25, + 4, + 4.75 + ], + "rotation": 270, + "texture": "#1" + }, + "down": { + "uv": [ + 5, + 4.75, + 4.5, + 8.25 + ], + "rotation": 90, + "texture": "#1" + } + } + }, + { + "from": [ + 1.35391, + 7.95746, + -2.25 + ], + "to": [ + 15.35391, + 7.95746, + -0.25 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 8.35391, + 8.70746, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 3.5, + 0 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 0.5, + 0 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 3.5, + 0 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 0.5, + 0 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4.5, + 8.25, + 4, + 4.75 + ], + "rotation": 270, + "texture": "#1" + }, + "down": { + "uv": [ + 5, + 4.75, + 4.5, + 8.25 + ], + "rotation": 90, + "texture": "#1" + } + } + }, + { + "from": [ + 1.35391, + 6.95746, + -1.25 + ], + "to": [ + 15.35391, + 8.95746, + -1.25 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 8.35391, + 8.70746, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 1, + 8.5, + 1.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 0, + 0.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5, + 1.5, + 8.5, + 2 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 0, + 0.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 3.5, + 0, + 0 + ], + "rotation": 270, + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 0, + 3.5 + ], + "rotation": 90, + "texture": "#1" + } + } + } + ], + "gui_light": "front", + "display": { + "thirdperson_righthand": { + "translation": [ + 0, + 1, + -3.5 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] + }, + "thirdperson_lefthand": { + "translation": [ + 0, + 1, + -3.5 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] + }, + "firstperson_righthand": { + "rotation": [ + 21.15, + 23.99, + -8.94 + ], + "translation": [ + 0, + 3.5, + -0.5 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] + }, + "firstperson_lefthand": { + "rotation": [ + 21.15, + 23.99, + -8.94 + ], + "translation": [ + 0, + 3.5, + -0.5 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] + }, + "ground": { + "translation": [ + 0, + 3.25, + 0 + ], + "scale": [ + 0.4, + 0.4, + 0.4 + ] + }, + "gui": { + "rotation": [ + 19.29, + 47.82, + -2.83 + ], + "translation": [ + 0, + 0, + -6.25 + ], + "scale": [ + 0.6, + 0.6, + 0.6 + ] + }, + "head": { + "translation": [ + 0, + 14.25, + 0 + ] + }, + "fixed": { + "rotation": [ + 0, + 90, + 0 + ], + "translation": [ + 0, + 0, + -6.25 + ] + } + }, + "groups": [ + { + "name": "group", + "origin": [ + 15, + 1, + 15 + ], + "color": 0, + "children": [ + { + "name": "group", + "origin": [ + 8.35391, + 8.70746, + 8 + ], + "color": 0, + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14 + ] + } + ] + } + ], + "textures": { + "particle": "superbwarfare:block/sandbag", + "1": "superbwarfare:block/barbed_wire" + }, + "render_type": "cutout" +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/block/charging_station.json b/src/main/resources/assets/superbwarfare/models/block/charging_station.json new file mode 100644 index 000000000..5d000396d --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/block/charging_station.json @@ -0,0 +1,83 @@ +{ + "credit": "Made with Blockbench", + "parent": "minecraft:block/block", + "ambientocclusion": false, + "texture_size": [ + 32, + 32 + ], + "textures": { + "4": "superbwarfare:block/charging_station", + "particle": "superbwarfare:block/charging_station" + }, + "elements": [ + { + "from": [ + 0, + 0, + 0 + ], + "to": [ + 16, + 16, + 16 + ], + "faces": { + "north": { + "uv": [ + 0, + 0, + 8, + 8 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 0, + 8, + 8, + 16 + ], + "texture": "#4" + }, + "south": { + "uv": [ + 0, + 8, + 8, + 16 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 0, + 8, + 8, + 16 + ], + "texture": "#4" + }, + "up": { + "uv": [ + 16, + 8, + 8, + 0 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 16, + 8, + 8, + 16 + ], + "texture": "#4" + } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/block/container.json b/src/main/resources/assets/superbwarfare/models/block/container.json new file mode 100644 index 000000000..152700c97 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/block/container.json @@ -0,0 +1,6 @@ +{ + "parent": "superbwarfare:item/container", + "textures": { + "particle": "minecraft:block/orange_terracotta" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/block/creative_charging_station.json b/src/main/resources/assets/superbwarfare/models/block/creative_charging_station.json new file mode 100644 index 000000000..3188de76e --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/block/creative_charging_station.json @@ -0,0 +1,83 @@ +{ + "credit": "Made with Blockbench", + "parent": "minecraft:block/block", + "ambientocclusion": false, + "texture_size": [ + 32, + 32 + ], + "textures": { + "4": "superbwarfare:block/creative_charging_station", + "particle": "superbwarfare:block/creative_charging_station" + }, + "elements": [ + { + "from": [ + 0, + 0, + 0 + ], + "to": [ + 16, + 16, + 16 + ], + "faces": { + "north": { + "uv": [ + 0, + 0, + 8, + 8 + ], + "texture": "#4" + }, + "east": { + "uv": [ + 0, + 8, + 8, + 16 + ], + "texture": "#4" + }, + "south": { + "uv": [ + 0, + 8, + 8, + 16 + ], + "texture": "#4" + }, + "west": { + "uv": [ + 0, + 8, + 8, + 16 + ], + "texture": "#4" + }, + "up": { + "uv": [ + 16, + 8, + 8, + 0 + ], + "texture": "#4" + }, + "down": { + "uv": [ + 16, + 8, + 8, + 16 + ], + "texture": "#4" + } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/block/dragon_teeth.json b/src/main/resources/assets/superbwarfare/models/block/dragon_teeth.json new file mode 100644 index 000000000..c43bfac37 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/block/dragon_teeth.json @@ -0,0 +1,18 @@ +{ + "parent": "forge:item/default", + "loader": "forge:composite", + "children": { + "part1": { + "loader": "forge:obj", + "model": "superbwarfare:models/block/dragon_teeth.obj", + "emissive_ambient": true, + "textures": { + "#m_40ddb3f7-b960-0c4a-147f-2010aa6221ab": "superbwarfare:block/dragon_teeth" + } + } + }, + "textures": { + "particle": "minecraft:block/smooth_stone" + }, + "render_type": "solid" +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/block/dragon_teeth.mtl b/src/main/resources/assets/superbwarfare/models/block/dragon_teeth.mtl new file mode 100644 index 000000000..fe0864fdc --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/block/dragon_teeth.mtl @@ -0,0 +1,4 @@ +# Made in Blockbench 4.10.0 +newmtl m_40ddb3f7-b960-0c4a-147f-2010aa6221ab +map_Kd superbwarfare:block/dragon_teeth +newmtl none \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/block/dragon_teeth.obj b/src/main/resources/assets/superbwarfare/models/block/dragon_teeth.obj new file mode 100644 index 000000000..496bc4af3 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/block/dragon_teeth.obj @@ -0,0 +1,285 @@ +# Made in Blockbench 4.10.0 +mtllib dragon_teeth.mtl + +o cube +v 0.6171875 1.6640625 0.5234375 +v 0.6171875 1.6640625 0.4765625 +v 0.6171875 1.6171875 0.5234375 +v 0.6171875 1.6171875 0.4765625 +v 0.38281249999999994 1.6640625 0.5234375 +v 0.38281249999999994 1.6640625 0.4765625 +v 0.38281249999999994 1.6171875 0.5234375 +v 0.38281249999999994 1.6171875 0.4765625 +v 0.3359375000000001 1.6640625 0.5234375 +v 0.3359375000000001 1.6640625 0.4765625 +v 0.3828125000000001 1.6640625 0.5234375 +v 0.3828125000000001 1.6640625 0.4765625 +v 0.33593750000000006 1.4953125 0.5234375 +v 0.33593750000000006 1.4953125 0.4765625 +v 0.38281250000000006 1.4953125 0.5234375 +v 0.38281250000000006 1.4953125 0.4765625 +v 0.6171875000000001 1.6640625 0.5234375 +v 0.6171875000000001 1.6640625 0.4765625 +v 0.6640625000000001 1.6640625 0.5234375 +v 0.6640625000000001 1.6640625 0.4765625 +v 0.6171875 1.4953125 0.5234375 +v 0.6171875 1.4953125 0.4765625 +v 0.6640625 1.4953125 0.5234375 +v 0.6640625 1.4953125 0.4765625 +v 0.7109375 1.5 0.7109375 +v 0.7109375 1.5 0.2890625 +v 0.28906249999999994 1.5 0.7109375 +v 0.28906249999999994 1.5 0.2890625 +v 1.15625 0 1.15625 +v 1.15625 0 -0.15625 +v -0.15625 0 1.15625 +v -0.15625 0 -0.15625 +v -0.2500000000000002 0.09375 1.1796875 +v 0.21874999999999994 1.453125 0.7109375 +v -0.2500000000000002 0.09375 -0.1796875000000001 +v 0.21874999999999994 1.453125 0.2890625 +v 1.25 0.09375 1.1796875 +v 0.78125 1.453125 0.7109375 +v 1.25 0.09375 -0.1796875000000001 +v 0.78125 1.453125 0.2890625 +v 1.1796875 0.09375 -0.25 +v 0.7109375 1.453125 0.21875 +v -0.1796875000000001 0.09375 -0.25 +v 0.28906249999999994 1.453125 0.21875 +v 1.1796875 0.09375 1.25 +v 0.7109375 1.453125 0.78125 +v -0.1796875000000001 0.09375 1.25 +v 0.28906249999999994 1.453125 0.78125 +vt 0.046875 0.984375 +vt 0.046875 1 +vt 0 1 +vt 0 0.984375 +vt 0.28125 0.859375 +vt 0.28125 0.875 +vt 0.234375 0.875 +vt 0.234375 0.859375 +vt 0.046875 0.734375 +vt 0.046875 0.75 +vt 0 0.75 +vt 0 0.734375 +vt 0.109375 0.734375 +vt 0.109375 0.75 +vt 0.0625 0.75 +vt 0.0625 0.734375 +vt 0.25 0.84375 +vt 0.234375 0.84375 +vt 0.234375 0.828125 +vt 0.25 0.828125 +vt 0.171875 0.75 +vt 0.15625 0.75 +vt 0.15625 0.71875 +vt 0.171875 0.71875 +vt 0.203125 0.75 +vt 0.1875 0.75 +vt 0.1875 0.71875 +vt 0.203125 0.71875 +vt 0.015625 0.96875 +vt 0 0.96875 +vt 0 0.9375 +vt 0.015625 0.9375 +vt 0 0.890625 +vt 0.015625 0.890625 +vt 0.015625 0.921875 +vt 0 0.921875 +vt 0.078125 0.71875 +vt 0.0625 0.71875 +vt 0.0625 0.703125 +vt 0.078125 0.703125 +vt 0.015625 0.71875 +vt 0 0.71875 +vt 0 0.6875 +vt 0.015625 0.6875 +vt 0.046875 0.71875 +vt 0.03125 0.71875 +vt 0.03125 0.6875 +vt 0.046875 0.6875 +vt 0.203125 1 +vt 0.1875 1 +vt 0.1875 0.96875 +vt 0.203125 0.96875 +vt 0.125 0.71875 +vt 0.140625 0.71875 +vt 0.140625 0.75 +vt 0.125 0.75 +vt 0.15234375 0.6875 +vt 0.08203125 0.6875 +vt 0.00390625 0.453125 +vt 0.23046875 0.453125 +vt 0.62109375 0.40625 +vt 0.54296875 0.640625 +vt 0.47265625 0.640625 +vt 0.39453125 0.40625 +vt 0.30859375 0.915603125 +vt 0.30859375 0.985915625 +vt 0.23828125 0.985915625 +vt 0.23828125 0.915603125 +vt 0.40625 0.78125 +vt 0.625 0.78125 +vt 0.625 1 +vt 0.40625 1 +vt 0.23046875 0.765625 +vt 0.15234375 1 +vt 0.08203125 1 +vt 0.00390625 0.765625 +vt 0.35546875 0.84375 +vt 0.28515625 0.84375 +vt 0.20703125 0.609375 +vt 0.43359375 0.609375 +vt 0.80859375 0.970290625 +vt 0.80859375 0.899978125 +vt 0.822678125 0.899978125 +vt 0.822678125 0.970290625 +vt 0.833571875 0.899978125 +vt 0.84765625 0.899978125 +vt 0.84765625 0.970290625 +vt 0.8335718750000001 0.970290625 +vt 0.73046875 0.79214375 +vt 0.73046875 0.806228125 +vt 0.66015625 0.806228125 +vt 0.66015625 0.79214375 +vt 0.75390625 0.7827906250000001 +vt 0.82421875 0.782790625 +vt 0.82421875 0.796875 +vt 0.75390625 0.796875 +vt 0.45703125 0.671875 +vt 0.4609375 0.65625 +vt 0.6796875 0.65625 +vt 0.68359375 0.671875 +vt 0.0078125 0.421875 +vt 0.2265625 0.421875 +vt 0.23046875 0.4375 +vt 0.00390625 0.4375 +vt 0.4453125 0.734375 +vt 0.6640625 0.734375 +vt 0.66796875 0.756471875 +vt 0.44140625 0.756471875 +vt 0.45703125 0.709596875 +vt 0.4609375 0.6875 +vt 0.6796875 0.6875 +vt 0.68359375 0.709596875 +vt 0.25 0.34375 +vt 0.265625 0.34375 +vt 0.265625 0.59375 +vt 0.25 0.59375 +vt 0.3125 0.59375 +vt 0.3125 0.34375 +vt 0.328125 0.34375 +vt 0.328125 0.59375 +vt 0.34375 0.59375 +vt 0.34375 0.34375 +vt 0.359375 0.34375 +vt 0.359375 0.59375 +vt 0.28125 0.34375 +vt 0.296875 0.34375 +vt 0.296875 0.59375 +vt 0.28125 0.59375 +vt 0.6640625 0.734375 +vt 0.6820689089910995 0.747764504014891 +vt 0.6679686681889097 0.7564714122110239 +vt 0.4453125 0.734375 +vt 0.4414063318110904 0.7564714122110239 +vt 0.4273060910089005 0.747764504014891 +vt 0.4609375 0.6875 +vt 0.4570313318110904 0.7095964122110239 +vt 0.4429310910089005 0.700889504014891 +vt 0.6796875 0.6875 +vt 0.6976939089910995 0.700889504014891 +vt 0.6835936681889097 0.7095964122110239 +vt 0.69921875 0.665603125 +vt 0.703553646631166 0.6522025214285216 +vt 0.713303049942944 0.665603125 +vt 0.61328125 0.587478125 +vt 0.599196950057056 0.587478125 +vt 0.608946353368834 0.5740775214285216 +vt 0.57421875 0.626540625 +vt 0.588303049942944 0.6265406250000001 +vt 0.578553646631166 0.6399412285714783 +vt 0.62890625 0.626540625 +vt 0.624571353368834 0.6399412285714783 +vt 0.614821950057056 0.6265406250000001 +vn 0 1 0 +vn 0 -1 0 +vn 0 0 1 +vn 0 0 -1 +vn 0 1 0 +vn -1 3.2895497025930557e-16 0 +vn 1 -3.2895497025930557e-16 0 +vn 0 0 1 +vn 0 0 -1 +vn 0 1 0 +vn -1 3.2895497025930557e-16 0 +vn 1 -3.2895497025930557e-16 0 +vn 0 0 1 +vn 0 0 -1 +vn 0.9453729816262721 0.32599068331940423 0 +vn -0.9453729816262721 0.3259906833194043 0 +vn 0 1 0 +vn 0 -1 0 +vn 0 0.32599068331940423 0.9453729816262721 +vn 0 0.3259906833194042 -0.9453729816262721 +vn 0.5547001962252291 0.8320502943378437 0 +vn -0.5547001962252291 0.8320502943378437 0 +vn 0 0.8320502943378437 0.5547001962252291 +vn 0 0.8320502943378437 -0.5547001962252291 +vn 0.7071067811865476 -0.7071067811865476 0 +vn -0.7071067811865467 -0.7071067811865483 0 +vn 0 -0.7071067811865476 0.7071067811865476 +vn 0 -0.7071067811865476 -0.7071067811865476 +vn 0.6355615789624307 0.4383183303189178 -0.6355615789624307 +vn 0.6355615789624312 0.4383183303189178 0.6355615789624304 +vn -0.6355615789624297 0.43831833031891776 -0.6355615789624319 +vn -0.6355615789624297 0.4383183303189178 0.6355615789624317 +vn 0.5298129428260173 -0.6622661785325222 0.5298129428260173 +vn -0.5298129428260163 -0.6622661785325227 0.529812942826018 +vn 0.5298129428260173 -0.6622661785325222 -0.5298129428260173 +vn -0.5298129428260163 -0.6622661785325227 -0.529812942826018 +vn 0.48507125007266594 0.7276068751089989 0.48507125007266594 +vn -0.48507125007266594 0.7276068751089989 0.48507125007266594 +vn 0.48507125007266594 0.7276068751089989 -0.48507125007266594 +vn -0.48507125007266594 0.7276068751089989 -0.48507125007266594 +usemtl m_40ddb3f7-b960-0c4a-147f-2010aa6221ab +f 1/1/1 2/2/1 6/3/1 5/4/1 +f 4/5/2 3/6/2 7/7/2 8/8/2 +f 3/9/3 1/10/3 5/11/3 7/12/3 +f 8/13/4 6/14/4 2/15/4 4/16/4 +f 12/17/5 10/18/5 9/19/5 11/20/5 +f 9/21/6 10/22/6 14/23/6 13/24/6 +f 12/25/7 11/26/7 15/27/7 16/28/7 +f 11/29/8 9/30/8 13/31/8 15/32/8 +f 16/33/9 14/34/9 10/35/9 12/36/9 +f 20/37/10 18/38/10 17/39/10 19/40/10 +f 17/41/11 18/42/11 22/43/11 21/44/11 +f 20/45/12 19/46/12 23/47/12 24/48/12 +f 19/49/13 17/50/13 21/51/13 23/52/13 +f 24/53/14 22/54/14 18/55/14 20/56/14 +f 40/57/15 38/58/15 37/59/15 39/60/15 +f 33/61/16 34/62/16 36/63/16 35/64/16 +f 25/65/17 26/66/17 28/67/17 27/68/17 +f 32/69/18 30/70/18 29/71/18 31/72/18 +f 45/73/19 46/74/19 48/75/19 47/76/19 +f 44/77/20 42/78/20 41/79/20 43/80/20 +f 26/81/21 25/82/21 38/83/21 40/84/21 +f 34/85/22 27/86/22 28/87/22 36/88/22 +f 46/89/23 25/90/23 27/91/23 48/92/23 +f 28/93/24 26/94/24 42/95/24 44/96/24 +f 37/97/25 29/98/25 30/99/25 39/100/25 +f 32/101/26 31/102/26 33/103/26 35/104/26 +f 31/105/27 29/106/27 45/107/27 47/108/27 +f 41/109/28 30/110/28 32/111/28 43/112/28 +f 39/113/29 41/114/29 42/115/29 40/116/29 +f 46/117/30 45/118/30 37/119/30 38/120/30 +f 44/121/31 43/122/31 35/123/31 36/124/31 +f 33/125/32 47/126/32 48/127/32 34/128/32 +f 29/129/33 37/130/33 45/131/33 +f 31/132/34 47/133/34 33/134/34 +f 30/135/35 41/136/35 39/137/35 +f 32/138/36 35/139/36 43/140/36 +f 25/141/37 46/142/37 38/143/37 +f 27/144/38 34/145/38 48/146/38 +f 26/147/39 40/148/39 42/149/39 +f 28/150/40 44/151/40 36/152/40 \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/block/fumo_25.json b/src/main/resources/assets/superbwarfare/models/block/fumo_25.json new file mode 100644 index 000000000..644f83cff --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/block/fumo_25.json @@ -0,0 +1,6 @@ +{ + "parent": "superbwarfare:item/fumo_25", + "textures": { + "particle": "minecraft:block/orange_terracotta" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/block/jump_pad.json b/src/main/resources/assets/superbwarfare/models/block/jump_pad.json new file mode 100644 index 000000000..fcf835a2d --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/block/jump_pad.json @@ -0,0 +1,546 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 64, + 64 + ], + "elements": [ + { + "from": [ + 0, + 0, + 0 + ], + "to": [ + 16, + 3, + 16 + ], + "faces": { + "north": { + "uv": [ + 4, + 7, + 8, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 0, + 11.5, + 0.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 0.75, + 11.5, + 1.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 1.5, + 11.5, + 2.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 4, + 0, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 4, + 0, + 8 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 14, + -0.1, + 14 + ], + "to": [ + 16.25, + 3.25, + 16.25 + ], + "faces": { + "north": { + "uv": [ + 7.5, + 3.25, + 8.0625, + 4.0625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 4.25, + 8.0625, + 5.0625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 5.25, + 8.0625, + 6.0625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 7.75, + 4.5625, + 8.5625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.8125, + 4.8125, + 8.25, + 4.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.8125, + 5, + 8.25, + 5.5625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + -0.25, + -0.1, + 14 + ], + "to": [ + 2, + 3.25, + 16.25 + ], + "faces": { + "north": { + "uv": [ + 4.75, + 7.75, + 5.3125, + 8.5625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 7.75, + 6.0625, + 8.5625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 7.75, + 6.8125, + 8.5625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 7.75, + 7.5625, + 8.5625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.0625, + 7.8125, + 8.5, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.0625, + 8, + 8.5, + 8.5625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + -0.25, + -0.1, + -0.25 + ], + "to": [ + 2, + 3.25, + 2 + ], + "faces": { + "north": { + "uv": [ + 7.75, + 7.75, + 8.3125, + 8.5625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 8, + 0.5625, + 8.8125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0.75, + 8, + 1.3125, + 8.8125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 8, + 2.0625, + 8.8125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.3125, + 9.3125, + 3.75, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.0625, + 8.75, + 4.5, + 9.3125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 14, + -0.1, + -0.25 + ], + "to": [ + 16.25, + 3.25, + 2 + ], + "faces": { + "north": { + "uv": [ + 2.25, + 8, + 2.8125, + 8.8125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 8, + 3.5625, + 8.8125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 6.25, + 8.5625, + 7.0625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 3.25, + 8.8125, + 4.0625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.8125, + 9.3125, + 5.25, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.3125, + 5.75, + 8.75, + 6.3125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 1, + 3, + 1 + ], + "to": [ + 15, + 4, + 15 + ], + "faces": { + "north": { + "uv": [ + 7.5, + 2.25, + 11, + 2.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 2.5, + 11, + 2.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 2.75, + 11, + 3 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 3, + 11, + 3.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 3.5, + 4, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 3.5, + 4, + 7 + ], + "texture": "#0" + } + } + } + ], + "gui_light": "front", + "display": { + "thirdperson_righthand": { + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0.25, + 2.75, + 3 + ], + "scale": [ + 0.4, + 0.4, + 0.4 + ] + }, + "thirdperson_lefthand": { + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0.25, + 2.75, + 3 + ], + "scale": [ + 0.4, + 0.4, + 0.4 + ] + }, + "firstperson_righthand": { + "rotation": [ + 71.5, + -21, + 0 + ], + "translation": [ + -1, + 1.5, + 3.75 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + }, + "firstperson_lefthand": { + "rotation": [ + 71.5, + -21, + 0 + ], + "translation": [ + -1, + 1.5, + 3.75 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + }, + "ground": { + "translation": [ + 0, + 0.5, + 0 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] + }, + "gui": { + "rotation": [ + 45, + -45, + 0 + ], + "translation": [ + 0, + 2.5, + 0 + ], + "scale": [ + 0.68, + 0.68, + 0.68 + ] + }, + "head": { + "rotation": [ + 0, + 180, + 0 + ], + "translation": [ + 0, + 11, + 0 + ] + }, + "fixed": { + "rotation": [ + -90, + 90, + 0 + ], + "translation": [ + 0, + 0, + -5 + ] + } + }, + "textures": { + "particle": "superbwarfare:block/jump_pad", + "0": "superbwarfare:block/jump_pad" + }, + "render_type": "solid" +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/block/reforging_table.json b/src/main/resources/assets/superbwarfare/models/block/reforging_table.json new file mode 100644 index 000000000..4680cdeea --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/block/reforging_table.json @@ -0,0 +1,2524 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 64, + 64 + ], + "textures": { + "0": "superbwarfare:block/reforging_table", + "particle": "block/smooth_stone" + }, + "elements": [ + { + "from": [ + 5, + 4, + 6.5 + ], + "to": [ + 11, + 15, + 9.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 2.5, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 5.5, + 3.5, + 7, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 6.25, + 6.75, + 9 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 3.5, + 7, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 6.25, + 7.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 5.5, + 7, + 6.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.48959, + 17.73223, + 6.50195 + ], + "to": [ + 7.98959, + 18.73223, + 9.49805 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 4.98959, + 13.23223, + 7.99805 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 8.5, + 0.375, + 8.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0.5, + 8.5, + 0.875, + 8.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.375, + 8, + 8, + 7.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.66874, + 14.90738, + 6.50195 + ], + "to": [ + 10.16874, + 15.90738, + 9.49805 + ], + "rotation": { + "angle": 22.5, + "axis": "z", + "origin": [ + 9.66874, + 15.40738, + 7.99805 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 2, + 8.875, + 2.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 8.25, + 4.875, + 8.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.125, + 2.25, + 7.5, + 1.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.07392, + 16.22351, + 6.50195 + ], + "to": [ + 7.27392, + 17.52351, + 9.49805 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 9.17392, + 16.32351, + 7.99805 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 8.25, + 5.3125, + 8.5625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 8.25, + 2.75, + 8.5625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 8.25, + 5.8125, + 8.5625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.0625, + 9, + 3.75, + 8.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 4.5096, + 14.41403, + 6.50195 + ], + "to": [ + 5.1596, + 16.21403, + 9.49805 + ], + "rotation": { + "angle": 22.5, + "axis": "z", + "origin": [ + 4.4096, + 17.51403, + 7.99805 + ] + }, + "faces": { + "north": { + "uv": [ + 1, + 8.5, + 1.1875, + 8.9375 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 8, + 3.75, + 8.4375 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1.25, + 8.5, + 1.4375, + 8.9375 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.9375, + 9, + 2.75, + 8.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5, + 15, + 6.50195 + ], + "to": [ + 5.6, + 16.6, + 9.49805 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 2.5, + 7.99805 + ] + }, + "faces": { + "north": { + "uv": [ + 1.5, + 8.5, + 1.625, + 8.875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 8.5, + 1.875, + 8.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 6.75, + 8.75, + 7.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.375, + 9, + 8.25, + 8.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 2, + 2.5, + 8.075 + ], + "to": [ + 3, + 2.75, + 8.325 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 3.12063, + 2.625, + 8.04017 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 8.75, + 8.25, + 8.8125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0.5, + 9, + 0.75, + 9.0625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 9.0625, + 1.5, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 2, + 2.5, + 6.475 + ], + "to": [ + 4.25, + 2.75, + 6.725 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 3.12063, + 2.625, + 8.04017 + ] + }, + "faces": { + "north": { + "uv": [ + 3, + 8.5, + 3.5625, + 8.5625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 8.5, + 4.8125, + 8.5625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.0625, + 5.5625, + 8.5, + 5.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 11.75, + 2.5, + 9.125 + ], + "to": [ + 14, + 2.75, + 9.375 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 12.875, + 2.625, + 9.25 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 5.75, + 9.0625, + 5.8125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 6, + 9.0625, + 6.0625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.0625, + 7.3125, + 8.5, + 7.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.25, + 2.5, + 11.875 + ], + "to": [ + 8.5, + 2.75, + 14.125 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.375, + 2.625, + 13 + ] + }, + "faces": { + "east": { + "uv": [ + 8.5, + 7.5, + 9.0625, + 7.5625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 7.75, + 9.0625, + 7.8125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.5625, + 8.8125, + 8.5, + 8.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 2.5, + 11.875 + ], + "to": [ + 7.75, + 2.75, + 14.125 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.625, + 2.625, + 13 + ] + }, + "faces": { + "east": { + "uv": [ + 0, + 8.75, + 0.5625, + 8.8125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 8.75, + 2.5625, + 8.8125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0.8125, + 9.3125, + 0.75, + 8.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.625, + 2.5, + 1.96953 + ], + "to": [ + 8.375, + 2.75, + 4.01953 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 2.625, + 2.99453 + ] + }, + "faces": { + "east": { + "uv": [ + 3, + 8.75, + 3.5, + 8.8125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 8.75, + 4.75, + 8.8125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.1875, + 8.75, + 8, + 8.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 3.36627, + 2.5, + 8.24731 + ], + "to": [ + 4.36627, + 2.75, + 8.49731 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 3.12063, + 2.625, + 8.04017 + ] + }, + "faces": { + "north": { + "uv": [ + 1.75, + 9, + 2, + 9.0625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 9, + 2.25, + 9.0625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 2.0625, + 9, + 2 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 2, + 2.5, + 7.325 + ], + "to": [ + 2.75, + 2.75, + 7.575 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 3.12063, + 2.625, + 8.04017 + ] + }, + "faces": { + "north": { + "uv": [ + 6.25, + 9, + 6.4375, + 9.0625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 9, + 6.6875, + 9.0625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.9375, + 9.0625, + 6.75, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 3.11627, + 2.5, + 7.15269 + ], + "to": [ + 4.11627, + 2.75, + 7.40269 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 3.12063, + 2.625, + 8.04017 + ] + }, + "faces": { + "north": { + "uv": [ + 2.25, + 9, + 2.5, + 9.0625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 9, + 2.75, + 9.0625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 9.0625, + 2.75, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 2.95622, + 2.5, + 7.21857 + ], + "to": [ + 3.45622, + 2.75, + 7.46857 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 3.12063, + 2.625, + 8.04017 + ] + }, + "faces": { + "north": { + "uv": [ + 9.25, + 2, + 9.375, + 2.0625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 9.25, + 2.375, + 9.3125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.625, + 9.3125, + 2.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.875, + 9.25, + 2.75, + 9.3125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.76684, + 2.5, + 12.04453 + ], + "to": [ + 7.01684, + 2.75, + 13.04453 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 6.12937, + 2.625, + 13.04017 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 9.25, + 8.0625, + 9.3125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 9, + 3.25, + 9.0625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 9, + 3.5, + 9.0625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.5625, + 9.25, + 3.5, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.70096, + 2.5, + 12.70458 + ], + "to": [ + 6.95096, + 2.75, + 13.20458 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 6.12937, + 2.625, + 13.04017 + ] + }, + "faces": { + "east": { + "uv": [ + 3, + 9.25, + 3.125, + 9.3125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 9.25, + 3.375, + 9.3125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.5625, + 9.375, + 3.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.8125, + 9.25, + 3.75, + 9.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.59453, + 2.5, + 13.4108 + ], + "to": [ + 6.84453, + 2.75, + 14.1608 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 6.12937, + 2.625, + 13.04017 + ] + }, + "faces": { + "east": { + "uv": [ + 7, + 9, + 7.1875, + 9.0625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 9, + 7.4375, + 9.0625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.0625, + 9.1875, + 8, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 13.11627, + 2.5, + 8.05269 + ], + "to": [ + 14.11627, + 2.75, + 8.30269 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 13.12063, + 2.625, + 8.94017 + ] + }, + "faces": { + "north": { + "uv": [ + 3.75, + 9, + 4, + 9.0625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 9, + 4.25, + 9.0625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 9.0625, + 4.25, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 12.95622, + 2.5, + 8.11857 + ], + "to": [ + 13.45622, + 2.75, + 8.36857 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 13.12063, + 2.625, + 8.94017 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 9.25, + 4.125, + 9.3125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 9.25, + 4.375, + 9.3125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.625, + 9.3125, + 4.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.875, + 9.25, + 4.75, + 9.3125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 12, + 2.5, + 8.225 + ], + "to": [ + 12.75, + 2.75, + 8.475 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 13.12063, + 2.625, + 8.94017 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 9, + 8.4375, + 9.0625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 9, + 8.6875, + 9.0625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.9375, + 9.0625, + 8.75, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 3.02251, + 2.5, + 8.11851 + ], + "to": [ + 3.52251, + 2.75, + 8.36851 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 3.12063, + 2.625, + 8.04017 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 9.25, + 5.125, + 9.3125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 9.25, + 5.375, + 9.3125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.625, + 9.3125, + 5.5, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.375, + 5.5, + 9.25, + 5.5625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 11.63373, + 2.5, + 6.20269 + ], + "to": [ + 12.63373, + 2.75, + 6.45269 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 12.87937, + 2.625, + 6.65983 + ] + }, + "faces": { + "north": { + "uv": [ + 4.5, + 9, + 4.75, + 9.0625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 9, + 5, + 9.0625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 9.0625, + 5, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 13, + 2.5, + 6.375 + ], + "to": [ + 14, + 2.75, + 6.625 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 12.87937, + 2.625, + 6.65983 + ] + }, + "faces": { + "north": { + "uv": [ + 5.25, + 9, + 5.5, + 9.0625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 9, + 5.75, + 9.0625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 9.0625, + 6, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 12.47749, + 2.5, + 6.33149 + ], + "to": [ + 12.97749, + 2.75, + 6.58149 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 12.87937, + 2.625, + 6.65983 + ] + }, + "faces": { + "north": { + "uv": [ + 5.75, + 9.25, + 5.875, + 9.3125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 5.75, + 9.375, + 5.8125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.125, + 9.3125, + 6, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.375, + 6, + 9.25, + 6.0625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 3.25, + 2.5, + 9.075 + ], + "to": [ + 4, + 2.75, + 9.325 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 3.12063, + 2.625, + 8.04017 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 9, + 9.1875, + 9.0625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 9.25, + 0.1875, + 9.3125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0.4375, + 9.3125, + 0.25, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 1.82322, + 2.5, + 9.35533 + ], + "to": [ + 3.07322, + 2.75, + 9.60533 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 3.12063, + 2.625, + 8.04017 + ] + }, + "faces": { + "north": { + "uv": [ + 5.25, + 8.75, + 5.5625, + 8.8125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 6.75, + 9.0625, + 6.8125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.0625, + 7.0625, + 8.75, + 7 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 1.98037, + 2.5, + 8.86338 + ], + "to": [ + 2.48037, + 2.75, + 9.11338 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 3.12063, + 2.625, + 8.04017 + ] + }, + "faces": { + "north": { + "uv": [ + 6.25, + 9.25, + 6.375, + 9.3125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 9.25, + 6.625, + 9.3125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.875, + 9.3125, + 6.75, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.375, + 6.75, + 9.25, + 6.8125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.90547, + 2.5, + 11.9108 + ], + "to": [ + 9.15547, + 2.75, + 12.6608 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.17063, + 2.625, + 12.87419 + ] + }, + "faces": { + "east": { + "uv": [ + 0.5, + 9.25, + 0.6875, + 9.3125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 9.25, + 1.1875, + 9.3125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.3125, + 9.4375, + 1.25, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 9.13402, + 2.5, + 12.5358 + ], + "to": [ + 9.38402, + 2.75, + 13.0358 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 9.17063, + 2.625, + 12.87419 + ] + }, + "faces": { + "east": { + "uv": [ + 7, + 9.25, + 7.125, + 9.3125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 7, + 9.375, + 7.0625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.3125, + 9.375, + 7.25, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.3125, + 7.25, + 9.25, + 7.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 9.1858, + 2.5, + 12.83758 + ], + "to": [ + 9.4358, + 2.75, + 14.08758 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.17063, + 2.625, + 12.87419 + ] + }, + "faces": { + "east": { + "uv": [ + 8.75, + 8.25, + 9.0625, + 8.3125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 8.5, + 9.0625, + 8.5625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.8125, + 9.0625, + 5.75, + 8.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 13.25, + 2.5, + 7.075 + ], + "to": [ + 14, + 2.75, + 7.325 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 13.12063, + 2.625, + 6.04017 + ] + }, + "faces": { + "north": { + "uv": [ + 1.5, + 9.25, + 1.6875, + 9.3125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 9.25, + 1.9375, + 9.3125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.1875, + 9.3125, + 2, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 11.98037, + 2.5, + 6.86338 + ], + "to": [ + 12.48037, + 2.75, + 7.11338 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 13.12063, + 2.625, + 6.04017 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 9.25, + 7.625, + 9.3125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 7.5, + 9.375, + 7.5625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.875, + 9.3125, + 7.75, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.375, + 7.75, + 9.25, + 7.8125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 11.82322, + 2.5, + 7.35533 + ], + "to": [ + 13.07322, + 2.75, + 7.60533 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 13.12063, + 2.625, + 6.04017 + ] + }, + "faces": { + "north": { + "uv": [ + 8.75, + 8.75, + 9.0625, + 8.8125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 9, + 0.3125, + 9.0625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.3125, + 9.0625, + 1, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 0, + 0, + 0 + ], + "to": [ + 16, + 1, + 16 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 0, + 11.5, + 0.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 0.25, + 11.5, + 0.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 0.5, + 11.5, + 0.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 0.75, + 11.5, + 1 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 4, + 0, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 4, + 0, + 8 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 1, + 1, + 1 + ], + "to": [ + 15, + 2.5, + 15 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 3.5, + 10.5, + 3.875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 4, + 10.5, + 4.375 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 4.5, + 10.5, + 4.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 5, + 10.5, + 5.375 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 3.5, + 4, + 0 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 4, + 2.5, + 4 + ], + "to": [ + 12, + 3, + 12 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 8, + 10, + 8.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 8.25, + 2, + 8.375 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 1.5, + 10.25, + 1.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 1.75, + 10.25, + 1.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 8.25, + 4, + 6.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 1, + 2.5, + 14 + ], + "to": [ + 15, + 3, + 15 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1, + 21 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 2.25, + 11, + 2.375 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 8, + 4, + 8.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 2.5, + 11, + 2.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 8.75, + 3.75, + 8.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 1.25, + 7.5, + 1 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 14, + 2.5, + 2 + ], + "to": [ + 15, + 3, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 14.5, + 3.5, + 7 + ] + }, + "faces": { + "east": { + "uv": [ + 7.5, + 3.25, + 10.5, + 3.375 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 8, + 3, + 8.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 9.25, + 7.5, + 6.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 1, + 2.5, + 2 + ], + "to": [ + 2, + 3, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 1.5, + 3.5, + 7 + ] + }, + "faces": { + "east": { + "uv": [ + 8, + 6.25, + 11, + 6.375 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 6.5, + 11, + 6.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 9.25, + 7.75, + 6.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 1, + 2.5, + 1 + ], + "to": [ + 15, + 3, + 2 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 2.75, + 11, + 2.875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 8.75, + 5, + 8.875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 3, + 11, + 3.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 8.75, + 5.25, + 8.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 1.5, + 7.5, + 1.25 + ], + "texture": "#0" + } + } + } + ], + "gui_light": "front", + "display": { + "thirdperson_righthand": { + "translation": [ + 0, + 2, + -0.5 + ], + "scale": [ + 0.3, + 0.3, + 0.3 + ] + }, + "thirdperson_lefthand": { + "translation": [ + 0, + 2, + -0.5 + ], + "scale": [ + 0.3, + 0.3, + 0.3 + ] + }, + "firstperson_righthand": { + "rotation": [ + 6.16, + 21.04, + 0.67 + ], + "translation": [ + 0.25, + 3.75, + 0 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + }, + "firstperson_lefthand": { + "rotation": [ + 6.16, + 21.04, + 0.67 + ], + "translation": [ + 0.25, + 3.75, + 0 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + }, + "ground": { + "translation": [ + 0, + 0.75, + 0 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] + }, + "gui": { + "rotation": [ + 45, + -45, + 0 + ], + "translation": [ + 0, + 2, + 0 + ], + "scale": [ + 0.69, + 0.69, + 0.69 + ] + }, + "head": { + "translation": [ + 0, + 14.25, + 0 + ] + }, + "fixed": { + "rotation": [ + -90, + 0, + 0 + ], + "translation": [ + 0, + 0, + -6.5 + ] + } + }, + "groups": [ + { + "name": "group", + "origin": [ + 8, + 1, + 8 + ], + "color": 6, + "children": [ + { + "name": "group", + "origin": [ + 8, + 2.5, + 7.99805 + ], + "color": 0, + "children": [ + 0, + 1, + 2, + 3, + 4, + 5 + ] + }, + { + "name": "group", + "origin": [ + 8, + 1, + 8 + ], + "color": 0, + "children": [ + 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, + 31, + 32, + 33, + 34 + ] + }, + 35, + 36, + 37, + 38, + 39, + 40, + 41 + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/block/sandbag.json b/src/main/resources/assets/superbwarfare/models/block/sandbag.json new file mode 100644 index 000000000..62d924896 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/block/sandbag.json @@ -0,0 +1,13 @@ +{ + "parent": "block/cube", + "textures": { + "down": "superbwarfare:block/sandbagdi", + "up": "superbwarfare:block/sand", + "north": "superbwarfare:block/sandbag", + "east": "superbwarfare:block/sandbag", + "south": "superbwarfare:block/sandbag", + "west": "superbwarfare:block/sandbag", + "particle": "superbwarfare:block/sandbagdi" + }, + "render_type": "solid" +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/custom/ammobox.json b/src/main/resources/assets/superbwarfare/models/custom/ammobox.json new file mode 100644 index 000000000..c463b3898 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/custom/ammobox.json @@ -0,0 +1,1542 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 32, + 32 + ], + "elements": [ + { + "from": [ + 9.9, + 7, + 5.1 + ], + "to": [ + 10, + 9.3, + 10.9 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1.325, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0.5, + 9.5, + 0.625, + 10.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 3, + 6.875, + 4.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 9.5, + 1.125, + 10.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 4.5, + 6.875, + 5.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.625, + 11.375, + 7.5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.125, + 0, + 9, + 2.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6, + 7, + 10.9 + ], + "to": [ + 10, + 9.3, + 11 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1.325, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 5, + 2, + 6.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 5, + 9.125, + 6.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 5, + 4, + 6.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 6.5, + 9.125, + 7.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 3.125, + 9, + 3 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 3.5, + 9, + 3.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6, + 7, + 5 + ], + "to": [ + 10, + 9.3, + 5.1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1.325, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 6, + 6, + 7.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 9, + 8.125, + 10.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 6, + 8, + 7.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 8, + 9.125, + 9.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 4.125, + 9, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 4.5, + 9, + 4.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6, + 7, + 5.1 + ], + "to": [ + 6.1, + 9.3, + 10.9 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1.325, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 9.5, + 0.125, + 10.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 0, + 6.875, + 1.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 0, + 9.625, + 1.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 1.5, + 6.875, + 2.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.125, + 11.375, + 7, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.625, + 7, + 8.5, + 9.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.1, + 7, + 5.1 + ], + "to": [ + 9.9, + 8.1, + 10.9 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1.325, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 0, + 8.875, + 0.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 6.5, + 2.875, + 7 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 0.5, + 8.875, + 1 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 7, + 2.875, + 7.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.875, + 2.875, + 0, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.875, + 0, + 2, + 2.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.1, + 8.9, + 7.2 + ], + "to": [ + 9.9, + 9.3, + 10.9 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1.325, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 1, + 8.875, + 1.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 1.5, + 8.875, + 1.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 2, + 8.875, + 2.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 2.5, + 8.875, + 2.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.875, + 4.875, + 0, + 3 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.875, + 3, + 2, + 4.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.1, + 7.1, + 7 + ], + "to": [ + 6.9, + 9.1, + 7.8 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1.325, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 5.5, + 8.5, + 5.875, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 8.5, + 6.375, + 9.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 6, + 8.875, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 8.5, + 6.875, + 9.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.375, + 9.875, + 9, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.875, + 9, + 9.5, + 9.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.03047, + 7.1, + 5.1 + ], + "to": [ + 8.83047, + 9.1, + 5.9 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1.325, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 1.5, + 7.5, + 1.875, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 7.5, + 2.375, + 8.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 7.5, + 2.875, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 7.5, + 3.375, + 8.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.875, + 9.875, + 2.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.875, + 2.5, + 9.5, + 2.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 9, + 7.1, + 5.1 + ], + "to": [ + 9.8, + 9.1, + 5.9 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1.325, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 3, + 7.875, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 7.5, + 3.875, + 8.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 7.5, + 4.375, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 4, + 7.875, + 5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.375, + 9.875, + 3, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.875, + 9.5, + 3.5, + 9.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 9, + 7.1, + 6.05 + ], + "to": [ + 9.8, + 9.1, + 6.85 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1.325, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 4.5, + 7.5, + 4.875, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 7.5, + 5.375, + 8.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 5, + 7.875, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 7.5, + 5.875, + 8.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.375, + 9.875, + 4, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.875, + 9.5, + 4.5, + 9.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.03047, + 7.1, + 6.05 + ], + "to": [ + 8.83047, + 9.1, + 6.85 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1.325, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 6, + 7.5, + 6.375, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 7.5, + 6.875, + 8.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 7.5, + 7.375, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 7.5, + 7.875, + 8.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.375, + 9.875, + 5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.875, + 5, + 9.5, + 5.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.06953, + 7.1, + 6.05 + ], + "to": [ + 7.86953, + 9.1, + 6.85 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1.325, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 3, + 8.375, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 4, + 8.375, + 5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 5, + 8.375, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 6, + 8.375, + 7 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.875, + 9.875, + 5.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.875, + 5.5, + 9.5, + 5.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.1, + 7.1, + 6.05 + ], + "to": [ + 6.9, + 9.1, + 6.85 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1.325, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 7, + 8.375, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 8, + 8.375, + 9 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 8.5, + 0.375, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.5, + 8.5, + 0.875, + 9.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.375, + 9.875, + 6, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.875, + 6, + 9.5, + 6.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 9, + 7.1, + 7 + ], + "to": [ + 9.8, + 9.1, + 7.8 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1.325, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 1, + 8.5, + 1.375, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 8.5, + 1.875, + 9.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 8.5, + 2.375, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 8.5, + 2.875, + 9.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.875, + 9.875, + 6.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.875, + 6.5, + 9.5, + 6.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.03047, + 7.1, + 7 + ], + "to": [ + 8.83047, + 9.1, + 7.8 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1.325, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 3, + 8.5, + 3.375, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 3, + 8.875, + 4 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 8.5, + 3.875, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 8.5, + 4.375, + 9.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.875, + 7.375, + 9.5, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.875, + 7.5, + 9.5, + 7.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.06953, + 7.1, + 7 + ], + "to": [ + 7.86953, + 9.1, + 7.8 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1.325, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 4, + 8.875, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 8.5, + 4.875, + 9.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 8.5, + 5.375, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 5, + 8.875, + 6 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.875, + 8.375, + 9.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.875, + 8.5, + 9.5, + 8.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.1, + 7.1, + 5.1 + ], + "to": [ + 6.9, + 9.1, + 5.9 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1.325, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 3, + 6.5, + 3.375, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 6.5, + 3.875, + 7.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 3, + 7.375, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 4, + 7.375, + 5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.875, + 9.875, + 1.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.875, + 1.5, + 9.5, + 1.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.06953, + 7.1, + 5.1 + ], + "to": [ + 7.86953, + 9.1, + 5.9 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1.325, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 5, + 7.375, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 7.5, + 0.375, + 8.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0.5, + 7.5, + 0.875, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 7.5, + 1.375, + 8.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.375, + 9.875, + 2, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.875, + 2, + 9.5, + 2.375 + ], + "texture": "#0" + } + } + } + ], + "gui_light": "front", + "display": { + "thirdperson_righthand": { + "translation": [ + 0, + 0.75, + 0 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + }, + "thirdperson_lefthand": { + "translation": [ + 0, + 0.75, + 0 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + }, + "firstperson_righthand": { + "rotation": [ + 91.82, + -12.22, + 77.05 + ], + "translation": [ + 1, + 2, + 0 + ] + }, + "firstperson_lefthand": { + "rotation": [ + 91.82, + -12.22, + 77.05 + ], + "translation": [ + 1, + 2, + 0 + ] + }, + "ground": { + "translation": [ + 0, + -1.75, + 0 + ] + }, + "gui": { + "rotation": [ + -135, + 55, + -180 + ], + "scale": [ + 2.05, + 2.05, + 2.05 + ] + }, + "head": { + "translation": [ + 0, + 7.25, + 0 + ] + }, + "fixed": { + "rotation": [ + 90, + 45, + 180 + ], + "translation": [ + 0, + 0, + -0.5 + ], + "scale": [ + 1.5, + 1.5, + 1.5 + ] + } + }, + "groups": [ + { + "name": "group", + "origin": [ + 0, + 0, + 0 + ], + "color": 0, + "children": [ + { + "name": "group", + "origin": [ + 8, + 1.325, + 8 + ], + "color": 0, + "children": [ + 0, + 1, + 2, + 3, + 4, + 5 + ] + }, + { + "name": "group", + "origin": [ + 8, + 1.325, + 8 + ], + "color": 0, + "children": [ + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17 + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/custom/bullet.json b/src/main/resources/assets/superbwarfare/models/custom/bullet.json new file mode 100644 index 000000000..4af2458e0 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/custom/bullet.json @@ -0,0 +1,82 @@ +{ + "credit": "Made with Blockbench", + "elements": [ + { + "from": [ + 7, + 0, + 7 + ], + "to": [ + 9, + 2, + 9 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 2, + 2 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 2, + 2, + 4 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 0, + 4, + 2 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 2, + 4, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 6, + 0, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 0, + 4, + 2 + ], + "texture": "#0" + } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/custom/c4.json b/src/main/resources/assets/superbwarfare/models/custom/c4.json new file mode 100644 index 000000000..e979f5552 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/custom/c4.json @@ -0,0 +1,567 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 32, + 32 + ], + "textures": { + "0": "superbwarfare:entity/c4", + "particle": "superbwarfare:entity/c4" + }, + "elements": [ + { + "name": "body", + "from": [ + 0, + 0, + 3 + ], + "to": [ + 15, + 3, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 15, + 0, + 3 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 7, + 14, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 10, + 12.5, + 11.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 8.5, + 14, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 0, + 16, + 1.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 5.5, + 0, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 5.5, + 0, + 11 + ], + "texture": "#0" + } + } + }, + { + "name": "screen", + "from": [ + 12, + 3, + 4 + ], + "to": [ + 14, + 4, + 13 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 14, + 3, + 4 + ] + }, + "faces": { + "north": { + "uv": [ + 5.5, + 11.5, + 6.5, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 6, + 15, + 6.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 5.5, + 12.5, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 6.5, + 15, + 7 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 6, + 10.5, + 1.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 11, + 0, + 15.5 + ], + "texture": "#0" + } + } + }, + { + "name": "panel", + "from": [ + 3, + 3, + 5 + ], + "to": [ + 10, + 4, + 12 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 10, + 3, + 5 + ] + }, + "faces": { + "north": { + "uv": [ + 1, + 11, + 4.5, + 11.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 11.5, + 4.5, + 12 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 1.5, + 15, + 2 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 2, + 15, + 2.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 3.5, + 7, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 3.5, + 7, + 7 + ], + "texture": "#0" + } + } + }, + { + "name": "black", + "from": [ + 5, + 1, + 2 + ], + "to": [ + 10, + 2, + 3 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 10, + 1, + 2 + ] + }, + "faces": { + "north": { + "uv": [ + 4.5, + 11, + 7, + 11.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 11.5, + 8, + 12 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 2.5, + 14, + 3 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 11.5, + 8.5, + 12 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 14, + 3.5, + 11.5, + 3 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14, + 3.5, + 11.5, + 4 + ], + "texture": "#0" + } + } + }, + { + "name": "swtich", + "from": [ + 12, + 1, + 2 + ], + "to": [ + 14, + 2, + 3 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 14, + 1, + 2 + ] + }, + "faces": { + "north": { + "uv": [ + 11.5, + 4, + 12.5, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 11.5, + 7, + 12 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 11.5, + 5.5, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 11.5, + 7.5, + 12 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 12.5, + 5, + 11.5, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.5, + 5, + 11.5, + 5.5 + ], + "texture": "#0" + } + } + } + ], + "gui_light": "front", + "display": { + "thirdperson_righthand": { + "rotation": [ + 45, + 50, + 85 + ], + "translation": [ + -2, + 0, + 1.5 + ], + "scale": [ + 0.3, + 0.3, + 0.3 + ] + }, + "thirdperson_lefthand": { + "rotation": [ + 45, + 50, + 85 + ], + "translation": [ + -2, + 0, + 1.5 + ], + "scale": [ + 0.3, + 0.3, + 0.3 + ] + }, + "firstperson_righthand": { + "rotation": [ + 0, + 50, + 85 + ], + "translation": [ + 0, + 1.5, + 0 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] + }, + "firstperson_lefthand": { + "rotation": [ + 0, + -130, + -85 + ], + "translation": [ + 0, + 1.5, + 0 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] + }, + "ground": { + "translation": [ + 0, + 2, + 0 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] + }, + "gui": { + "rotation": [ + 90, + 90, + 0 + ], + "scale": [ + 0.8, + 0.8, + 0.8 + ] + }, + "head": { + "rotation": [ + 90, + 90, + 0 + ], + "translation": [ + 0, + -12, + 4.75 + ], + "scale": [ + 0.2, + 0.2, + 0.2 + ] + }, + "fixed": { + "rotation": [ + -90, + -90, + 0 + ], + "translation": [ + 0, + 0, + -7 + ] + } + }, + "groups": [ + { + "name": "c4", + "origin": [ + 8, + 0, + 8 + ], + "color": 0, + "children": [ + 0, + 1, + { + "name": "button_group", + "origin": [ + 10, + 3, + 5 + ], + "color": 0, + "children": [ + 2 + ] + }, + { + "name": "triggers", + "origin": [ + 8, + 0, + 8 + ], + "color": 0, + "children": [ + 3, + 4 + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/custom/claymore.json b/src/main/resources/assets/superbwarfare/models/custom/claymore.json new file mode 100644 index 000000000..0c46cd49c --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/custom/claymore.json @@ -0,0 +1,932 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 32, + 32 + ], + "elements": [ + { + "from": [ + 4.5, + 2.75, + 7.5 + ], + "to": [ + 11.5, + 7.75, + 9.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1.75, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 1, + 1, + 4.5, + 3.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 1, + 1, + 3.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5.5, + 1, + 9, + 3.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.5, + 1, + 5.5, + 3.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4.5, + 1, + 1, + 0 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8, + 0, + 4.5, + 1 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6, + 7, + 8 + ], + "to": [ + 10, + 8, + 9 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1.75, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0.5, + 7.5, + 2.5, + 8 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 7.5, + 0.5, + 8 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3, + 7.5, + 5, + 8 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.5, + 7.5, + 3, + 8 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2.5, + 7.5, + 0.5, + 7 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.5, + 7, + 2.5, + 7.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 5, + 7.75, + 8 + ], + "to": [ + 6, + 8.75, + 9 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1.75, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 4, + 8, + 4.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7, + 4, + 7.5, + 4.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.5, + 4, + 9, + 4.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8, + 4, + 8.5, + 4.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8, + 4, + 7.5, + 3.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.5, + 3.5, + 8, + 4 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 10, + 7.75, + 8 + ], + "to": [ + 11, + 8.75, + 9 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1.75, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 3.5, + 4, + 4, + 4.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3, + 4, + 3.5, + 4.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 4.5, + 4, + 5, + 4.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4, + 4, + 4.5, + 4.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4, + 4, + 3.5, + 3.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.5, + 3.5, + 4, + 4 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 5, + -0.65, + 7.8 + ], + "to": [ + 5, + 3.35, + 8.8 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 5, + 2.6, + 8.3 + ] + }, + "faces": { + "north": { + "uv": [ + 0.5, + 8, + 0.5, + 10 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 8, + 0.5, + 10 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 1, + 8, + 1, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.5, + 8, + 1, + 10 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0.5, + 8, + 0.5, + 7.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.5, + 7.5, + 0.5, + 8 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 5, + -0.9, + 8.05 + ], + "to": [ + 5, + 3.1, + 9.05 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 5, + 2.6, + 8.3 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 7, + 7.5, + 9 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7, + 7, + 7.5, + 9 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 7, + 8, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.5, + 7, + 8, + 9 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.5, + 7, + 7.5, + 6.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.5, + 6.5, + 7.5, + 7 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 11, + -0.9, + 8.05 + ], + "to": [ + 11, + 3.1, + 9.05 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 11, + 2.6, + 8.3 + ] + }, + "faces": { + "north": { + "uv": [ + 5.5, + 7, + 5.5, + 9 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5, + 7, + 5.5, + 9 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 6, + 7, + 6, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.5, + 7, + 6, + 9 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5.5, + 7, + 5.5, + 6.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.5, + 6.5, + 5.5, + 7 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 11, + -0.65, + 7.8 + ], + "to": [ + 11, + 3.35, + 8.8 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 11, + 2.6, + 8.3 + ] + }, + "faces": { + "north": { + "uv": [ + 6.5, + 7, + 6.5, + 9 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6, + 7, + 6.5, + 9 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 7, + 7, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.5, + 7, + 7, + 9 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6.5, + 7, + 6.5, + 6.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.5, + 6.5, + 6.5, + 7 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 11.11836, + 2.75, + 6.58135 + ], + "to": [ + 13.11836, + 7.75, + 8.58135 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 13.61836, + 1.75, + 8.08135 + ] + }, + "faces": { + "north": { + "uv": [ + 1, + 4.5, + 2, + 7 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 4.5, + 1, + 7 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3, + 4.5, + 4, + 7 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2, + 4.5, + 3, + 7 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2, + 4.5, + 1, + 3.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3, + 3.5, + 2, + 4.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 3.18821, + 2.75, + 7.04016 + ], + "to": [ + 5.18821, + 7.75, + 9.04016 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 3.68821, + 1.75, + 7.54016 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 4.5, + 6, + 7 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4, + 4.5, + 5, + 7 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 4.5, + 8, + 7 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6, + 4.5, + 7, + 7 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6, + 4.5, + 5, + 3.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 3.5, + 6, + 4.5 + ], + "texture": "#1" + } + } + } + ], + "gui_light": "front", + "display": { + "thirdperson_righthand": { + "rotation": [ + 90, + 180, + 0 + ], + "translation": [ + 0, + -1.5, + 0 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + }, + "thirdperson_lefthand": { + "rotation": [ + 90, + 180, + 0 + ], + "translation": [ + 0, + -1.5, + 0 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + }, + "firstperson_righthand": { + "rotation": [ + -180, + 0, + 171.25 + ], + "translation": [ + -6, + 4.75, + 2.75 + ] + }, + "firstperson_lefthand": { + "rotation": [ + -180, + 0, + 171.25 + ], + "translation": [ + -6, + 4.75, + 2.75 + ] + }, + "ground": { + "translation": [ + 0, + 1, + 0 + ], + "scale": [ + 0.6, + 0.6, + 0.6 + ] + }, + "gui": { + "rotation": [ + 30, + 45, + 0 + ], + "translation": [ + 0, + 4.5, + 0 + ], + "scale": [ + 1.3, + 1.3, + 1.3 + ] + }, + "head": { + "rotation": [ + 0, + 180, + 0 + ], + "translation": [ + 0, + 14.5, + 0 + ] + }, + "fixed": { + "rotation": [ + 0, + 180, + 0 + ], + "translation": [ + 0, + 4.5, + 0 + ], + "scale": [ + 1.5, + 1.5, + 1.5 + ] + } + }, + "groups": [ + { + "name": "claymore", + "origin": [ + 8, + 0, + 8 + ], + "color": 0, + "children": [ + { + "name": "bone", + "origin": [ + 8, + 0, + 8 + ], + "color": 0, + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9 + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/custom/container_particle.json b/src/main/resources/assets/superbwarfare/models/custom/container_particle.json new file mode 100644 index 000000000..0639ee4ee --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/custom/container_particle.json @@ -0,0 +1,6 @@ +{ + "parent": "superbwarfare:displaysettings/container.item", + "textures": { + "particle": "superbwarfare:block/container" + } +} diff --git a/src/main/resources/assets/superbwarfare/models/custom/grenade.json b/src/main/resources/assets/superbwarfare/models/custom/grenade.json new file mode 100644 index 000000000..2b1a2f9bf --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/custom/grenade.json @@ -0,0 +1,96 @@ +{ + "credit": "Made with Blockbench", + "elements": [ + { + "from": [ + 7.5, + -0.5, + 7 + ], + "to": [ + 8.5, + 0.5, + 9 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 0, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 2, + 2, + 3, + 3 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 2, + 2, + 3 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 2, + 6, + 3 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 2, + 5, + 3 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 2, + 2, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 0, + 3, + 2 + ], + "texture": "#0" + } + } + } + ], + "groups": [ + { + "name": "bone", + "origin": [ + 8, + 0, + 8 + ], + "color": 0, + "children": [ + 0 + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/custom/gungranade.json b/src/main/resources/assets/superbwarfare/models/custom/gungranade.json new file mode 100644 index 000000000..df510c2e1 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/custom/gungranade.json @@ -0,0 +1,2764 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 32, + 32 + ], + "elements": [ + { + "from": [ + 7.60219, + 6.27939, + 7.02386 + ], + "to": [ + 8.39953, + 8.68395, + 8.35276 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.00086, + 8.60667, + 7.98633 + ] + }, + "faces": { + "north": { + "uv": [ + 0.5, + 6, + 1, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 0.75, + 1.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 2, + 6.5, + 3.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 0, + 1.75, + 1.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 0.75, + 8, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 8, + 1, + 8.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.60218, + 6.27939, + 7.02387 + ], + "to": [ + 8.39952, + 8.68395, + 8.35277 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 8.00086, + 8.60667, + 7.98633 + ] + }, + "faces": { + "north": { + "uv": [ + 6, + 3.5, + 6.5, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 1.5, + 0.75, + 2.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 6, + 5.5, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 1.5, + 1.75, + 2.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 1.75, + 8, + 1 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 8, + 1.5, + 8.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.63443, + 6.27939, + 7.58766 + ], + "to": [ + 8.96333, + 8.68395, + 8.385 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.00086, + 8.60667, + 7.98633 + ] + }, + "faces": { + "north": { + "uv": [ + 2, + 0, + 2.75, + 1.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 5, + 6.5, + 6.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 1.5, + 2.75, + 2.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 6, + 6, + 7.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.75, + 8.5, + 2, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 2, + 8, + 2.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.63442, + 6.27939, + 7.58767 + ], + "to": [ + 8.96332, + 8.68395, + 8.38501 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 8.00086, + 8.60667, + 7.98633 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 3, + 0.75, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 0, + 7, + 1.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 0, + 3.75, + 1.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 6.5, + 1.5, + 7.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 3, + 8, + 2.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 8, + 3, + 8.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.60219, + 6.27939, + 7.6199 + ], + "to": [ + 8.39953, + 8.68395, + 8.9488 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.00086, + 8.60667, + 7.98633 + ] + }, + "faces": { + "north": { + "uv": [ + 1.5, + 6.5, + 2, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 3, + 1.75, + 4.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 1.5, + 7, + 2.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 1.5, + 3.75, + 2.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 3.75, + 8, + 3 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 8, + 4, + 8.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.0384, + 6.27939, + 7.58766 + ], + "to": [ + 8.3673, + 8.68395, + 8.385 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 8.00086, + 8.60667, + 7.98633 + ] + }, + "faces": { + "north": { + "uv": [ + 2, + 3, + 2.75, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 6.5, + 2.5, + 7.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 3, + 3.75, + 4.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 6.5, + 3, + 7.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 4.5, + 8, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 4.5, + 8, + 5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.03839, + 6.27939, + 7.58766 + ], + "to": [ + 8.36729, + 8.68395, + 8.385 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.00086, + 8.60667, + 7.98633 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 0, + 4.75, + 1.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 6.5, + 3.5, + 7.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 1.5, + 4.75, + 2.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 3, + 7, + 4.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 5.5, + 8, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 5.5, + 8, + 6 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.6022, + 6.27939, + 7.02386 + ], + "to": [ + 8.39954, + 8.68395, + 8.35276 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 8.00086, + 8.60667, + 7.98633 + ] + }, + "faces": { + "north": { + "uv": [ + 3.5, + 6.5, + 4, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 3, + 4.75, + 4.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 6.5, + 4.5, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 4.5, + 0.75, + 5.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 6.75, + 8, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 8, + 7, + 8.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.60219, + 5.87939, + 7.02386 + ], + "to": [ + 8.39953, + 6.07939, + 7.65276 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.00086, + 8.40667, + 7.98633 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 7, + 8.5, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 6.5, + 9.75, + 6.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 8, + 8, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 9.5, + 7.25, + 9.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 7.75, + 8, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 8, + 8, + 8.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.60218, + 5.87939, + 7.02387 + ], + "to": [ + 8.39952, + 6.07939, + 7.65277 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 8.00086, + 8.40667, + 7.98633 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 0, + 9, + 0.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 7, + 9.75, + 7.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 0.5, + 9, + 0.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 9.5, + 7.75, + 9.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 1.25, + 8.5, + 1 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 1.5, + 8.5, + 1.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.33443, + 5.87939, + 7.58766 + ], + "to": [ + 8.96333, + 6.07939, + 8.385 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.00086, + 8.40667, + 7.98633 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 7.5, + 9.75, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 8.5, + 2.5, + 8.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 9.5, + 8.25, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 8.5, + 3, + 8.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 9, + 3, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 3, + 8.5, + 3.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.33442, + 5.87939, + 7.58767 + ], + "to": [ + 8.96332, + 6.07939, + 8.38501 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 8.00086, + 8.40667, + 7.98633 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 8, + 9.75, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 8.5, + 4, + 8.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 9.5, + 8.75, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 3.5, + 9, + 3.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 9, + 4.5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 8.5, + 6, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.60219, + 5.87939, + 8.3199 + ], + "to": [ + 8.39953, + 6.07939, + 8.9488 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.00086, + 8.40667, + 7.98633 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 6, + 9, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 8.5, + 9.75, + 8.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 8.5, + 7, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 9.5, + 9.25, + 9.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 6.75, + 8.5, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 7, + 8.5, + 7.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.0384, + 5.87939, + 7.58766 + ], + "to": [ + 7.6673, + 6.07939, + 8.385 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 8.00086, + 8.40667, + 7.98633 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 9, + 9.75, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 8.5, + 8, + 8.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 9.5, + 9.75, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 7.5, + 9, + 7.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 9, + 8, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 8, + 8.5, + 8.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.03839, + 5.87939, + 7.58766 + ], + "to": [ + 7.66729, + 6.07939, + 8.385 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.00086, + 8.40667, + 7.98633 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 10, + 0.25, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 8.5, + 9, + 8.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 0, + 10.25, + 0.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 0, + 9.5, + 0.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 1, + 9, + 0.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.25, + 9, + 1, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.6022, + 5.87939, + 7.02386 + ], + "to": [ + 8.39954, + 6.07939, + 7.65276 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 8.00086, + 8.40667, + 7.98633 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 1, + 9.5, + 1.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.5, + 10, + 0.75, + 10.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 9, + 2, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 0.5, + 10.25, + 0.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 1.75, + 9, + 1.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 9, + 2, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.64205, + 5.92704, + 7.12011 + ], + "to": [ + 8.35966, + 9.27939, + 8.31612 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.00086, + 8.37394, + 7.98633 + ] + }, + "faces": { + "north": { + "uv": [ + 4.5, + 6.5, + 4.75, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 4.5, + 1.5, + 6.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 4.5, + 6.75, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 4.5, + 2, + 6.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 2.5, + 9, + 2 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.75, + 9, + 2.5, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.64205, + 5.92704, + 7.12012 + ], + "to": [ + 8.35965, + 9.27939, + 8.31613 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 8.00086, + 8.37394, + 7.98633 + ] + }, + "faces": { + "north": { + "uv": [ + 6, + 6.5, + 6.25, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 4.5, + 2.5, + 6.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 6.5, + 6.75, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 4.5, + 3, + 6.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 3, + 9, + 2.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 9, + 3, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.67107, + 5.92704, + 7.62753 + ], + "to": [ + 8.86708, + 9.27939, + 8.34513 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.00086, + 8.37394, + 7.98633 + ] + }, + "faces": { + "north": { + "uv": [ + 3, + 4.5, + 3.5, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 0, + 7.25, + 1.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 4.5, + 4, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 2, + 7.25, + 3.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 3.25, + 9, + 3 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 9, + 3.5, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.67106, + 5.92704, + 7.62754 + ], + "to": [ + 8.86707, + 9.27939, + 8.34514 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 8.00086, + 8.37394, + 7.98633 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 4.5, + 4.5, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 4, + 7.25, + 5.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 4.5, + 5, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 6, + 7.25, + 7.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 3.75, + 9, + 3.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 9, + 4, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.64205, + 5.92704, + 7.65654 + ], + "to": [ + 8.35966, + 9.27939, + 8.85255 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.00086, + 8.37394, + 7.98633 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 0, + 7.75, + 1.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 0, + 5.5, + 1.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0.5, + 7.5, + 0.75, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 2, + 5.5, + 3.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 4.5, + 9, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 9, + 4.5, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.13464, + 5.92704, + 7.62752 + ], + "to": [ + 8.33065, + 9.27939, + 8.34513 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 8.00086, + 8.37394, + 7.98633 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 4, + 5.5, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 2, + 7.75, + 3.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 0, + 6, + 1.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 4, + 7.75, + 5.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 4.75, + 9, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 5, + 9, + 5.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.13463, + 5.92704, + 7.62753 + ], + "to": [ + 8.33064, + 9.27939, + 8.34513 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.00086, + 8.37394, + 7.98633 + ] + }, + "faces": { + "north": { + "uv": [ + 5.5, + 2, + 6, + 3.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 7.5, + 5.25, + 9.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 4, + 6, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 7.5, + 5.75, + 9.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 5.75, + 9, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 9, + 6, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.64206, + 5.92704, + 7.1201 + ], + "to": [ + 8.35967, + 9.27939, + 8.31611 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 8.00086, + 8.37394, + 7.98633 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 6, + 7.75, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 6, + 0.5, + 7.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 8, + 0.25, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 0, + 6.5, + 1.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 6.5, + 9, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 9, + 6.5, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.93604, + 9.08099, + 7.62752 + ], + "to": [ + 8.13205, + 9.58099, + 8.34512 + ], + "rotation": { + "angle": -22.5, + "axis": "z", + "origin": [ + 7.53405, + 8.68099, + 7.98632 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 6.5, + 9.5, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 10, + 1.25, + 10.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 9, + 7.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 1, + 10.25, + 1.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 7.25, + 9, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 9, + 7.5, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.89528, + 8.36691, + 7.62752 + ], + "to": [ + 8.33825, + 9.56292, + 8.34512 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.39528, + 8.96492, + 7.98632 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 7.5, + 9.25, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 9, + 8.25, + 9.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 8, + 9.25, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 9, + 8.75, + 9.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 10.25, + 1.5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 1.5, + 10, + 1.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.86795, + 9.08099, + 7.62752 + ], + "to": [ + 9.06396, + 9.58099, + 8.34512 + ], + "rotation": { + "angle": 22.5, + "axis": "z", + "origin": [ + 8.46595, + 8.68099, + 7.98632 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 8.5, + 9.5, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 10, + 2.25, + 10.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 9, + 9.5, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 2, + 10.25, + 2.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 0.25, + 9.5, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 9.5, + 0.5, + 9.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.66175, + 8.36691, + 7.62752 + ], + "to": [ + 8.10472, + 9.56292, + 8.34512 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.60472, + 8.96492, + 7.98632 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 0.5, + 9.75, + 1 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 9.5, + 1.25, + 10 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 1, + 9.75, + 1.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 9.5, + 1.75, + 10 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.75, + 10.25, + 2.5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 2.5, + 10, + 2.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.64205, + 9.08099, + 6.92323 + ], + "to": [ + 8.35966, + 9.58099, + 8.11924 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8.00086, + 8.68099, + 7.52123 + ] + }, + "faces": { + "north": { + "uv": [ + 3, + 10, + 3.25, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 1.5, + 10, + 1.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 3, + 10.25, + 3.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 9.5, + 2.5, + 9.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 2.5, + 9.5, + 2 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.75, + 9.5, + 2.5, + 10 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.64205, + 8.36691, + 7.88246 + ], + "to": [ + 8.35966, + 9.56292, + 8.32543 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 8.00086, + 8.96492, + 7.38246 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 2.5, + 9.75, + 3 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 9.5, + 3.25, + 10 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 3, + 9.75, + 3.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 9.5, + 3.75, + 10 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 10.25, + 3.5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 3.5, + 10, + 3.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.64205, + 9.08099, + 7.85514 + ], + "to": [ + 8.35966, + 9.58099, + 9.05115 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8.00086, + 8.68099, + 8.45314 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 10, + 4.25, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 3.5, + 10, + 3.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 4, + 10.25, + 4.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 9.5, + 4.5, + 9.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 4.5, + 9.5, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 9.5, + 4.5, + 10 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.64205, + 8.85854, + 7.62767 + ], + "to": [ + 8.35966, + 10.05455, + 8.34799 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8.00086, + 9.45655, + 8.1265 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 4.5, + 9.75, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 9.5, + 5.25, + 10 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 5, + 9.75, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 9.5, + 5.75, + 10 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 10.25, + 4.5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 4.5, + 10, + 4.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.64205, + 8.36691, + 7.64894 + ], + "to": [ + 8.35966, + 9.56292, + 8.09191 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 8.00086, + 8.96492, + 8.59191 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 5.5, + 9.75, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 9.5, + 6.25, + 10 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 6, + 9.75, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 9.5, + 6.75, + 10 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 10.25, + 5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 5, + 10, + 5.25 + ], + "texture": "#0" + } + } + } + ], + "gui_light": "front", + "display": { + "firstperson_righthand": { + "rotation": [ + -75.06, + -82.18, + -88.02 + ], + "translation": [ + 0, + 2, + 0 + ], + "scale": [ + 1.5, + 1.5, + 1.5 + ] + }, + "firstperson_lefthand": { + "rotation": [ + -75.06, + -82.18, + -88.02 + ], + "translation": [ + 0, + 2, + 0 + ], + "scale": [ + 1.5, + 1.5, + 1.5 + ] + }, + "ground": { + "translation": [ + 0, + -0.75, + 0 + ] + }, + "gui": { + "rotation": [ + 45, + 35, + 0 + ], + "translation": [ + -0.25, + 0.25, + 0 + ], + "scale": [ + 3, + 3, + 3 + ] + }, + "head": { + "translation": [ + 0, + 8.25, + 0 + ] + }, + "fixed": { + "translation": [ + 0, + -0.25, + 0 + ], + "scale": [ + 2, + 2, + 2 + ] + } + }, + "groups": [ + { + "name": "group", + "origin": [ + 8, + 0, + 8 + ], + "color": 0, + "children": [ + { + "name": "ammo", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "children": [ + { + "name": "ammo", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ] + } + ] + }, + { + "name": "ammo", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "children": [ + { + "name": "ammo", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "children": [ + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15 + ] + } + ] + }, + { + "name": "ammo", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "children": [ + { + "name": "ammo", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "children": [ + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23 + ] + }, + { + "name": "group", + "origin": [ + 7.76365, + 8.73531, + 7.98633 + ], + "color": 0, + "children": [ + 24, + 25, + 26, + 27 + ] + }, + { + "name": "group", + "origin": [ + 7.76365, + 8.73531, + 7.98633 + ], + "color": 0, + "children": [ + 28, + 29, + 30, + 31, + 32 + ] + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/custom/hammer.json b/src/main/resources/assets/superbwarfare/models/custom/hammer.json new file mode 100644 index 000000000..2217d0562 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/custom/hammer.json @@ -0,0 +1,4175 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 32, + 32 + ], + "elements": [ + { + "from": [ + 7.66052, + -0.25663, + 7.8683 + ], + "to": [ + 8.03246, + 15.44413, + 8.1317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 3.70989, + -0.17038, + 3.78597 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 0.125, + 7.875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.5, + 0, + 0.625, + 7.875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 0, + 1.125, + 7.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 0, + 1.625, + 7.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 14.625, + 13.125, + 14.5, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.625, + 14.5, + 13.5, + 14.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.73437, + -0.25663, + 8.04656 + ], + "to": [ + 8.14104, + 15.44413, + 8.30993 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 7.80019, + 0.61974, + 8.17826 + ] + }, + "faces": { + "north": { + "uv": [ + 2, + 0, + 2.125, + 7.875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 0, + 2.625, + 7.875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 0, + 3.125, + 7.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 0, + 3.625, + 7.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 14.625, + 13.625, + 14.5, + 13.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.125, + 14.5, + 14, + 14.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.84675, + -0.25663, + 7.91123 + ], + "to": [ + 8.11015, + 15.44413, + 8.31793 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.92389, + 0.61974, + 8.25208 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 0, + 4.125, + 7.875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 0, + 4.625, + 7.875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 0, + 5.125, + 7.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 0, + 5.625, + 7.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 14.625, + 14.125, + 14.5, + 14 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.625, + 14.5, + 14.5, + 14.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.81586, + -0.25663, + 8.04656 + ], + "to": [ + 8.22254, + 15.44413, + 8.30993 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 8.15671, + 0.61974, + 8.17826 + ] + }, + "faces": { + "north": { + "uv": [ + 6, + 0, + 6.125, + 7.875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 0, + 6.625, + 7.875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 0, + 7.125, + 7.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 0, + 7.625, + 7.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.125, + 0.125, + 15, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.125, + 0.5, + 15, + 0.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.81586, + -0.25663, + 7.69007 + ], + "to": [ + 8.22254, + 15.44413, + 7.95344 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 8.15671, + 0.61974, + 7.82174 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 8, + 0.125, + 15.875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 0, + 8.125, + 7.875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0.5, + 8, + 0.625, + 15.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 8, + 1.125, + 15.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.125, + 1.125, + 15, + 1 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.125, + 1.5, + 15, + 1.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.73437, + -0.25663, + 7.69007 + ], + "to": [ + 8.14104, + 15.44413, + 7.95344 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 7.80019, + 0.61974, + 7.82174 + ] + }, + "faces": { + "north": { + "uv": [ + 1.5, + 8, + 1.625, + 15.875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 8, + 2.125, + 15.875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 8, + 2.625, + 15.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 8, + 3.125, + 15.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.125, + 2.125, + 15, + 2 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.125, + 2.5, + 15, + 2.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.84675, + -0.25663, + 7.68207 + ], + "to": [ + 8.11015, + 15.44413, + 8.08877 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.92389, + 0.61974, + 7.74792 + ] + }, + "faces": { + "north": { + "uv": [ + 3.5, + 8, + 3.625, + 15.875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 8, + 4.125, + 15.875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 8, + 4.625, + 15.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 8, + 5.125, + 15.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.125, + 3.125, + 15, + 3 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.125, + 3.5, + 15, + 3.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.88969, + -0.25663, + 7.8683 + ], + "to": [ + 8.29639, + 15.44413, + 8.1317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 12.24701, + -0.17038, + 3.78597 + ] + }, + "faces": { + "north": { + "uv": [ + 5.5, + 8, + 5.625, + 15.875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 8, + 6.125, + 15.875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 8, + 6.625, + 15.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 8, + 7.125, + 15.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.125, + 4.125, + 15, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.125, + 4.5, + 15, + 4.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.64278, + 14.5821, + 7.86172 + ], + "to": [ + 8.03331, + 16.7054, + 8.13828 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 3.49462, + -0.55234, + 3.57527 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 6.5, + 10.125, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.5, + 10, + 13.625, + 10.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 13.5, + 10.625, + 14 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 10.5, + 13.625, + 11 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.125, + 5.125, + 15, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.125, + 5.5, + 15, + 5.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.72032, + 14.5821, + 8.04889 + ], + "to": [ + 8.13358, + 16.7054, + 8.32543 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 7.78944, + 0.27729, + 8.18717 + ] + }, + "faces": { + "north": { + "uv": [ + 13.5, + 11, + 13.625, + 11.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 13.5, + 11.625, + 14 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 11.5, + 13.625, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 12, + 13.625, + 12.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.125, + 6.125, + 15, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.125, + 6.5, + 15, + 6.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.83832, + 14.5821, + 7.92055 + ], + "to": [ + 8.11489, + 16.7054, + 8.33383 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.91932, + 0.27729, + 8.26469 + ] + }, + "faces": { + "north": { + "uv": [ + 13, + 13.5, + 13.125, + 14 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.5, + 13.5, + 13.625, + 14 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 0, + 14.125, + 0.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 0.5, + 14.125, + 1 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.125, + 7.125, + 15, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.625, + 15, + 7.5, + 15.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.81964, + 14.5821, + 8.04889 + ], + "to": [ + 8.23289, + 16.7054, + 8.32543 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 8.16378, + 0.27729, + 8.18717 + ] + }, + "faces": { + "north": { + "uv": [ + 14, + 1, + 14.125, + 1.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 1.5, + 14.125, + 2 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 2, + 14.125, + 2.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 3.5, + 14.125, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.125, + 7.625, + 15, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.125, + 15, + 8, + 15.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.81964, + 14.5821, + 7.67457 + ], + "to": [ + 8.23289, + 16.7054, + 7.95111 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 8.16378, + 0.27729, + 7.81283 + ] + }, + "faces": { + "north": { + "uv": [ + 14, + 4, + 14.125, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 4.5, + 14.125, + 5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 5, + 14.125, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 5.5, + 14.125, + 6 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.125, + 8.125, + 15, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.625, + 15, + 8.5, + 15.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.72032, + 14.5821, + 7.67457 + ], + "to": [ + 8.13358, + 16.7054, + 7.95111 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 7.78944, + 0.27729, + 7.81283 + ] + }, + "faces": { + "north": { + "uv": [ + 14, + 6, + 14.125, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 7.5, + 14.125, + 8 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 8, + 14.125, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 14, + 8.625, + 14.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.125, + 8.625, + 15, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.125, + 15, + 9, + 15.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.83832, + 14.5821, + 7.66617 + ], + "to": [ + 8.11489, + 16.7054, + 8.07945 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.91932, + 0.27729, + 7.73531 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 14, + 9.125, + 14.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 9, + 14.125, + 9.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 9.5, + 14.125, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 10, + 14.125, + 10.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.125, + 9.125, + 15, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.625, + 15, + 9.5, + 15.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.89715, + 14.5821, + 7.86172 + ], + "to": [ + 8.31044, + 16.7054, + 8.13828 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 12.45859, + -0.55234, + 3.57527 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 14, + 10.625, + 14.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 10.5, + 14.125, + 11 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 14, + 11.125, + 14.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 11, + 14.125, + 11.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.125, + 9.625, + 15, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.125, + 15, + 10, + 15.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.64278, + 0.1321, + 7.86172 + ], + "to": [ + 8.03331, + 4.7304, + 8.13828 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 3.49462, + -16.50234, + 3.57527 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 3, + 10.125, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 10, + 7.625, + 12.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 10, + 8.125, + 12.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 8, + 10.125, + 10.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.125, + 10.125, + 15, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.625, + 15, + 10.5, + 15.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.72032, + 0.1321, + 8.04889 + ], + "to": [ + 7.85858, + 4.7304, + 8.32543 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 7.78944, + -15.67271, + 8.18717 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 10, + 8.625, + 12.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 10, + 9.125, + 12.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 10, + 9.625, + 12.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 0, + 10.625, + 2.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.125, + 10.625, + 15, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.125, + 15, + 11, + 15.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.83832, + 0.1321, + 8.19555 + ], + "to": [ + 8.11489, + 4.7304, + 8.33383 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.91932, + -15.67271, + 8.26469 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 2.5, + 10.625, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 5, + 10.625, + 7.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 7.5, + 10.625, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 10.5, + 10.125, + 12.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.125, + 11.125, + 15, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.625, + 15, + 11.5, + 15.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.09464, + 0.1321, + 8.04889 + ], + "to": [ + 8.23289, + 4.7304, + 8.32543 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 8.16378, + -15.67271, + 8.18717 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 10, + 10.625, + 12.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 0, + 11.125, + 2.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 2.5, + 11.125, + 4.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 5, + 11.125, + 7.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.125, + 11.625, + 15, + 11.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.125, + 15, + 12, + 15.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.09464, + 0.1321, + 7.67457 + ], + "to": [ + 8.23289, + 4.7304, + 7.95111 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 8.16378, + -15.67271, + 7.81283 + ] + }, + "faces": { + "north": { + "uv": [ + 11, + 7.5, + 11.125, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 10, + 11.125, + 12.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 0, + 11.625, + 2.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 2.5, + 11.625, + 4.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.125, + 12.125, + 15, + 12 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.625, + 15, + 12.5, + 15.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.72032, + 0.1321, + 7.67457 + ], + "to": [ + 7.85858, + 4.7304, + 7.95111 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 7.78944, + -15.67271, + 7.81283 + ] + }, + "faces": { + "north": { + "uv": [ + 11.5, + 5, + 11.625, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 7.5, + 11.625, + 9.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 10, + 11.625, + 12.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 0, + 12.125, + 2.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.125, + 12.625, + 15, + 12.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.125, + 15, + 13, + 15.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.83832, + 0.1321, + 7.66617 + ], + "to": [ + 8.11489, + 4.7304, + 7.80445 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.91932, + -15.67271, + 7.73531 + ] + }, + "faces": { + "north": { + "uv": [ + 12, + 2.5, + 12.125, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12, + 5, + 12.125, + 7.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 7.5, + 12.125, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 10, + 12.125, + 12.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.125, + 13.125, + 15, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.625, + 15, + 13.5, + 15.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.17215, + 0.1321, + 7.86172 + ], + "to": [ + 8.31044, + 4.7304, + 8.13828 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 12.45859, + -16.50234, + 3.57527 + ] + }, + "faces": { + "north": { + "uv": [ + 12.5, + 0, + 12.625, + 2.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.5, + 2.5, + 12.625, + 4.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 12.5, + 5, + 12.625, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 12.5, + 7.625, + 14.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.125, + 13.625, + 15, + 13.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.125, + 15, + 14, + 15.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.3, + 15.25, + 7.3 + ], + "to": [ + 8.7, + 16.65, + 8.7 + ], + "faces": { + "north": { + "uv": [ + 7.5, + 8, + 8.25, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 0, + 9.25, + 0.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 1, + 9.25, + 1.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 2, + 9.25, + 2.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 3.75, + 8.5, + 3 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 4, + 8.5, + 4.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.475, + 15.25, + 6.05 + ], + "to": [ + 8.525, + 15.425, + 7.3 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 0, + 0, + -0.25 + ] + }, + "faces": { + "north": { + "uv": [ + 11.5, + 14, + 12, + 14.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.5, + 7.5, + 13.125, + 7.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 11.5, + 14.5, + 11.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 12.5, + 8.625, + 12.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 5.625, + 8.5, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 6, + 8.5, + 6.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.475, + 15.425, + 5.975 + ], + "to": [ + 8.525, + 16.475, + 7.3 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 0, + 0, + -0.25 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 0, + 10.5, + 0.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 7, + 9.125, + 7.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 0.5, + 10.5, + 1 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 7.5, + 9.125, + 8 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 8.625, + 8.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 5, + 9, + 5.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.475, + 16.27764, + 5.80437 + ], + "to": [ + 8.525, + 16.46514, + 5.97937 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 15.94014, + 6.39187 + ] + }, + "faces": { + "north": { + "uv": [ + 12, + 14, + 12.5, + 14.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 14, + 15.125, + 14.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 12, + 14.5, + 12.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.5, + 15, + 14.625, + 15.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 13, + 14.125, + 12.5, + 14 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.5, + 12.5, + 14, + 12.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.28019, + 15.425, + 6.16789 + ], + "to": [ + 8.46769, + 16.475, + 6.35539 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 8.88019, + 15.95, + 6.69289 + ] + }, + "faces": { + "north": { + "uv": [ + 13, + 14, + 13.125, + 14.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 13, + 14.125, + 13.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 14, + 13.625, + 14.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 13.5, + 14.125, + 14 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.125, + 14.625, + 15, + 14.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.125, + 15, + 15, + 15.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.83792, + 15.425, + 5.70431 + ], + "to": [ + 8.02542, + 16.475, + 5.89181 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 8.43792, + 15.95, + 7.22931 + ] + }, + "faces": { + "north": { + "uv": [ + 14, + 14, + 14.125, + 14.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.5, + 0, + 14.625, + 0.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 0.5, + 14.625, + 1 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.5, + 1, + 14.625, + 1.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.625, + 0.125, + 15.5, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.625, + 0.5, + 15.5, + 0.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.475, + 15.50229, + 6.13119 + ], + "to": [ + 8.525, + 15.68979, + 6.30619 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 15.16479, + 6.71869 + ] + }, + "faces": { + "north": { + "uv": [ + 14.5, + 1.5, + 15, + 1.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.5, + 1, + 15.625, + 1.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 2, + 15, + 2.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.5, + 1.5, + 15.625, + 1.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15, + 2.625, + 14.5, + 2.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15, + 3, + 14.5, + 3.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.475, + 16.475, + 6.05 + ], + "to": [ + 8.525, + 16.65, + 7.3 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 0, + 0, + -0.25 + ] + }, + "faces": { + "north": { + "uv": [ + 14.5, + 3.5, + 15, + 3.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.5, + 8, + 13.125, + 8.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 4, + 15, + 4.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.5, + 8.5, + 13.125, + 8.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 6.625, + 9, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 9, + 7.5, + 9.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.3, + 15.425, + 6.05 + ], + "to": [ + 7.475, + 16.475, + 7.3 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 0, + 0, + -0.25 + ] + }, + "faces": { + "north": { + "uv": [ + 14.5, + 4.5, + 14.625, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 9, + 8.625, + 9.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 5, + 14.625, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 8, + 9.625, + 8.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.125, + 6.125, + 10, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.125, + 12.5, + 9, + 13.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.525, + 15.425, + 6.05 + ], + "to": [ + 8.7, + 16.475, + 7.3 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 0, + 0, + -0.25 + ] + }, + "faces": { + "north": { + "uv": [ + 14.5, + 5.5, + 14.625, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 8.5, + 9.625, + 9 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 6, + 14.625, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 9, + 9.625, + 9.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 12.625, + 9.625, + 12.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.625, + 12.5, + 9.5, + 13.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.44064, + 16.1294, + 6.05 + ], + "to": [ + 7.69064, + 16.3044, + 7.3 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.16564, + 16.2169, + 6.55 + ] + }, + "faces": { + "north": { + "uv": [ + 15.5, + 2, + 15.625, + 2.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.5, + 10, + 13.125, + 10.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 15.5, + 2.5, + 15.625, + 2.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 12.5, + 11.125, + 12.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 12.625, + 11.125, + 12.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.625, + 12.5, + 11.5, + 13.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.30936, + 16.1294, + 6.05 + ], + "to": [ + 8.55936, + 16.3044, + 7.3 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.83436, + 16.2169, + 6.55 + ] + }, + "faces": { + "north": { + "uv": [ + 15.5, + 3, + 15.625, + 3.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.5, + 11.5, + 13.125, + 11.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 15.5, + 3.5, + 15.625, + 3.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 12.5, + 12.625, + 12.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 13.125, + 0.625, + 13, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.125, + 1, + 13, + 1.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.30758, + 15.59383, + 6.05 + ], + "to": [ + 8.55758, + 15.76883, + 7.3 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 8.83258, + 15.68133, + 6.55 + ] + }, + "faces": { + "north": { + "uv": [ + 15.5, + 4, + 15.625, + 4.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.5, + 12, + 13.125, + 12.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 15.5, + 4.5, + 15.625, + 4.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 2, + 13.625, + 2.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 13.125, + 3.125, + 13, + 2.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.125, + 3.5, + 13, + 4.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.44242, + 15.59383, + 6.05 + ], + "to": [ + 7.69242, + 15.76883, + 7.3 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 7.16742, + 15.68133, + 6.55 + ] + }, + "faces": { + "north": { + "uv": [ + 15.5, + 5, + 15.625, + 5.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13, + 4.5, + 13.625, + 4.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 15.5, + 5.5, + 15.625, + 5.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 5, + 13.625, + 5.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 13.125, + 6.125, + 13, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.125, + 6.5, + 13, + 7.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.475, + 15.25, + 8.7 + ], + "to": [ + 8.525, + 15.425, + 9.95 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 0, + 0, + 16.25 + ] + }, + "faces": { + "north": { + "uv": [ + 14.5, + 6.5, + 15, + 6.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 13, + 8.625, + 13.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 7, + 15, + 7.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 9, + 13.625, + 9.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 0.625, + 9.5, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 1, + 9.5, + 1.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.475, + 15.425, + 8.7 + ], + "to": [ + 8.525, + 16.475, + 10.025 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 0, + 0, + 16.25 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 1, + 10.5, + 1.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 2, + 10.125, + 2.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 1.5, + 10.5, + 2 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 2.5, + 10.125, + 3 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 3.625, + 9.5, + 3 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 4, + 9.5, + 4.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.475, + 16.27764, + 10.02063 + ], + "to": [ + 8.525, + 16.46514, + 10.19563 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 15.94014, + 9.60813 + ] + }, + "faces": { + "north": { + "uv": [ + 14.5, + 7.5, + 15, + 7.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.5, + 6, + 15.625, + 6.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 14.5, + 8.5, + 14.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.5, + 6.5, + 15.625, + 6.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15, + 8.125, + 14.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 14.5, + 8.5, + 14.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.28019, + 15.425, + 9.64461 + ], + "to": [ + 8.46769, + 16.475, + 9.83211 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 8.88019, + 15.95, + 9.30711 + ] + }, + "faces": { + "north": { + "uv": [ + 14.5, + 8.5, + 14.625, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 14.5, + 9.125, + 15 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 9, + 14.625, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 14.5, + 9.625, + 15 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.625, + 7.125, + 15.5, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.625, + 15.5, + 7.5, + 15.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.83792, + 15.425, + 10.10819 + ], + "to": [ + 8.02542, + 16.475, + 10.29569 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 8.43792, + 15.95, + 8.77069 + ] + }, + "faces": { + "north": { + "uv": [ + 14.5, + 9.5, + 14.625, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 14.5, + 10.125, + 15 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 10, + 14.625, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 14.5, + 10.625, + 15 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.625, + 7.625, + 15.5, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.125, + 15.5, + 8, + 15.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.475, + 15.50229, + 9.69381 + ], + "to": [ + 8.525, + 15.68979, + 9.86881 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 15.16479, + 9.28131 + ] + }, + "faces": { + "north": { + "uv": [ + 14.5, + 10.5, + 15, + 10.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.5, + 8, + 15.625, + 8.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 14.5, + 11.5, + 14.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 15.5, + 8.625, + 15.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15, + 11.125, + 14.5, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12, + 14.5, + 11.5, + 14.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.475, + 16.475, + 8.7 + ], + "to": [ + 8.525, + 16.65, + 9.95 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 0, + 0, + 16.25 + ] + }, + "faces": { + "north": { + "uv": [ + 14.5, + 11.5, + 15, + 11.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13, + 9.5, + 13.625, + 9.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 14.5, + 12.5, + 14.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 13, + 10.625, + 13.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 5.625, + 9.5, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 6, + 9.5, + 6.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.3, + 15.425, + 8.7 + ], + "to": [ + 7.475, + 16.475, + 9.95 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 0, + 0, + 16.25 + ] + }, + "faces": { + "north": { + "uv": [ + 14.5, + 12, + 14.625, + 12.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 7, + 10.125, + 7.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 12.5, + 14.5, + 12.625, + 15 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 7.5, + 10.125, + 8 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 13.125, + 11.125, + 13, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.125, + 13, + 11, + 13.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.525, + 15.425, + 8.7 + ], + "to": [ + 8.7, + 16.475, + 9.95 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 0, + 0, + 16.25 + ] + }, + "faces": { + "north": { + "uv": [ + 14.5, + 12.5, + 14.625, + 13 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 9.5, + 8.625, + 10 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 13, + 14.5, + 13.125, + 15 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 9.5, + 9.625, + 10 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 12.125, + 13.625, + 12, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.625, + 13, + 12.5, + 13.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.44064, + 16.1294, + 8.7 + ], + "to": [ + 7.69064, + 16.3044, + 9.95 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.16564, + 16.2169, + 9.45 + ] + }, + "faces": { + "north": { + "uv": [ + 15.5, + 8.5, + 15.625, + 8.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13, + 12.5, + 13.625, + 12.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 15.5, + 9.125, + 15.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 13, + 13.625, + 13.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 13.625, + 0.625, + 13.5, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.625, + 1, + 13.5, + 1.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.30936, + 16.1294, + 8.7 + ], + "to": [ + 8.55936, + 16.3044, + 9.95 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.83436, + 16.2169, + 9.45 + ] + }, + "faces": { + "north": { + "uv": [ + 15.5, + 9, + 15.625, + 9.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.5, + 2.5, + 14.125, + 2.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 15.5, + 9.625, + 15.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 3, + 14.125, + 3.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 13.625, + 4.125, + 13.5, + 3.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.625, + 5.5, + 13.5, + 6.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.30758, + 15.59383, + 8.7 + ], + "to": [ + 8.55758, + 15.76883, + 9.95 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 8.83258, + 15.68133, + 9.45 + ] + }, + "faces": { + "north": { + "uv": [ + 15.5, + 9.5, + 15.625, + 9.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.5, + 6.5, + 14.125, + 6.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 15.5, + 10.125, + 15.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 7, + 14.125, + 7.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 13.625, + 8.125, + 13.5, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.125, + 13.5, + 8, + 14.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.44242, + 15.59383, + 8.7 + ], + "to": [ + 7.69242, + 15.76883, + 9.95 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 7.16742, + 15.68133, + 9.45 + ] + }, + "faces": { + "north": { + "uv": [ + 15.5, + 10, + 15.625, + 10.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 13.5, + 9.125, + 13.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 15.5, + 10.625, + 15.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 8.5, + 14.125, + 8.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.625, + 14.125, + 9.5, + 13.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.125, + 13.5, + 10, + 14.125 + ], + "texture": "#0" + } + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [ + 0, + 4.25, + 1.25 + ], + "scale": [ + 1.5, + 1.5, + 1.5 + ] + }, + "thirdperson_lefthand": { + "translation": [ + 0, + 4.25, + 1.25 + ], + "scale": [ + 1.5, + 1.5, + 1.5 + ] + }, + "firstperson_righthand": { + "rotation": [ + 4.96, + -17.47, + -53.84 + ], + "translation": [ + -8.75, + 2, + 3.25 + ] + }, + "firstperson_lefthand": { + "rotation": [ + 170.76, + 11.48, + -117.47 + ], + "translation": [ + -9.5, + 2.5, + 4.5 + ] + }, + "ground": { + "rotation": [ + 180, + 0, + 0 + ], + "translation": [ + 0, + 8.75, + 0 + ], + "scale": [ + 1.2, + 1.2, + 1.2 + ] + }, + "gui": { + "rotation": [ + -90, + 135, + 90 + ], + "translation": [ + -0.75, + -0.75, + -0.25 + ], + "scale": [ + 1.1, + 1.1, + 1.1 + ] + }, + "head": { + "rotation": [ + 61.5, + 0, + 0 + ], + "translation": [ + 0, + 1, + -19 + ], + "scale": [ + 2.5, + 2.5, + 2.5 + ] + }, + "fixed": { + "rotation": [ + 90, + 0, + 90 + ], + "translation": [ + 1.5, + 0, + -0.25 + ], + "scale": [ + 3, + 3, + 3 + ] + } + }, + "groups": [ + { + "name": "group", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "children": [ + { + "name": "group", + "origin": [ + -0.10355, + 0, + 0 + ], + "color": 0, + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ] + }, + { + "name": "group", + "origin": [ + -0.10355, + 0, + 0 + ], + "color": 0, + "children": [ + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15 + ] + }, + { + "name": "group", + "origin": [ + -0.10355, + 0, + 0 + ], + "color": 0, + "children": [ + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23 + ] + }, + { + "name": "group", + "origin": [ + -0.10355, + 0, + 0 + ], + "color": 0, + "children": [ + 24, + { + "name": "group", + "origin": [ + 0, + 0, + 0 + ], + "color": 8, + "children": [ + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37 + ] + }, + { + "name": "group", + "origin": [ + 0, + 0, + 0 + ], + "color": 8, + "children": [ + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50 + ] + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/custom/hammer2.json b/src/main/resources/assets/superbwarfare/models/custom/hammer2.json new file mode 100644 index 000000000..85d3d925a --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/custom/hammer2.json @@ -0,0 +1,4175 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 32, + 32 + ], + "elements": [ + { + "from": [ + 7.66052, + -0.25663, + 7.8683 + ], + "to": [ + 8.03246, + 15.44413, + 8.1317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 3.70989, + -0.17038, + 3.78597 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 0.125, + 7.875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.5, + 0, + 0.625, + 7.875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 0, + 1.125, + 7.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 0, + 1.625, + 7.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 14.625, + 13.125, + 14.5, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.625, + 14.5, + 13.5, + 14.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.73437, + -0.25663, + 8.04656 + ], + "to": [ + 8.14104, + 15.44413, + 8.30993 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 7.80019, + 0.61974, + 8.17826 + ] + }, + "faces": { + "north": { + "uv": [ + 2, + 0, + 2.125, + 7.875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 0, + 2.625, + 7.875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 0, + 3.125, + 7.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 0, + 3.625, + 7.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 14.625, + 13.625, + 14.5, + 13.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.125, + 14.5, + 14, + 14.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.84675, + -0.25663, + 7.91123 + ], + "to": [ + 8.11015, + 15.44413, + 8.31793 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.92389, + 0.61974, + 8.25208 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 0, + 4.125, + 7.875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 0, + 4.625, + 7.875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 0, + 5.125, + 7.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 0, + 5.625, + 7.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 14.625, + 14.125, + 14.5, + 14 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.625, + 14.5, + 14.5, + 14.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.81586, + -0.25663, + 8.04656 + ], + "to": [ + 8.22254, + 15.44413, + 8.30993 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 8.15671, + 0.61974, + 8.17826 + ] + }, + "faces": { + "north": { + "uv": [ + 6, + 0, + 6.125, + 7.875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 0, + 6.625, + 7.875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 0, + 7.125, + 7.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 0, + 7.625, + 7.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.125, + 0.125, + 15, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.125, + 0.5, + 15, + 0.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.81586, + -0.25663, + 7.69007 + ], + "to": [ + 8.22254, + 15.44413, + 7.95344 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 8.15671, + 0.61974, + 7.82174 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 8, + 0.125, + 15.875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 0, + 8.125, + 7.875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0.5, + 8, + 0.625, + 15.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 8, + 1.125, + 15.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.125, + 1.125, + 15, + 1 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.125, + 1.5, + 15, + 1.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.73437, + -0.25663, + 7.69007 + ], + "to": [ + 8.14104, + 15.44413, + 7.95344 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 7.80019, + 0.61974, + 7.82174 + ] + }, + "faces": { + "north": { + "uv": [ + 1.5, + 8, + 1.625, + 15.875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 8, + 2.125, + 15.875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 8, + 2.625, + 15.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 8, + 3.125, + 15.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.125, + 2.125, + 15, + 2 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.125, + 2.5, + 15, + 2.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.84675, + -0.25663, + 7.68207 + ], + "to": [ + 8.11015, + 15.44413, + 8.08877 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.92389, + 0.61974, + 7.74792 + ] + }, + "faces": { + "north": { + "uv": [ + 3.5, + 8, + 3.625, + 15.875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 8, + 4.125, + 15.875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 8, + 4.625, + 15.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 8, + 5.125, + 15.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.125, + 3.125, + 15, + 3 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.125, + 3.5, + 15, + 3.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.88969, + -0.25663, + 7.8683 + ], + "to": [ + 8.29639, + 15.44413, + 8.1317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 12.24701, + -0.17038, + 3.78597 + ] + }, + "faces": { + "north": { + "uv": [ + 5.5, + 8, + 5.625, + 15.875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 8, + 6.125, + 15.875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 8, + 6.625, + 15.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 8, + 7.125, + 15.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.125, + 4.125, + 15, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.125, + 4.5, + 15, + 4.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.64278, + 14.5821, + 7.86172 + ], + "to": [ + 8.03331, + 16.7054, + 8.13828 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 3.49462, + -0.55234, + 3.57527 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 6.5, + 10.125, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.5, + 10, + 13.625, + 10.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 13.5, + 10.625, + 14 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 10.5, + 13.625, + 11 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.125, + 5.125, + 15, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.125, + 5.5, + 15, + 5.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.72032, + 14.5821, + 8.04889 + ], + "to": [ + 8.13358, + 16.7054, + 8.32543 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 7.78944, + 0.27729, + 8.18717 + ] + }, + "faces": { + "north": { + "uv": [ + 13.5, + 11, + 13.625, + 11.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 13.5, + 11.625, + 14 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 11.5, + 13.625, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 12, + 13.625, + 12.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.125, + 6.125, + 15, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.125, + 6.5, + 15, + 6.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.83832, + 14.5821, + 7.92055 + ], + "to": [ + 8.11489, + 16.7054, + 8.33383 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.91932, + 0.27729, + 8.26469 + ] + }, + "faces": { + "north": { + "uv": [ + 13, + 13.5, + 13.125, + 14 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.5, + 13.5, + 13.625, + 14 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 0, + 14.125, + 0.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 0.5, + 14.125, + 1 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.125, + 7.125, + 15, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.625, + 15, + 7.5, + 15.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.81964, + 14.5821, + 8.04889 + ], + "to": [ + 8.23289, + 16.7054, + 8.32543 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 8.16378, + 0.27729, + 8.18717 + ] + }, + "faces": { + "north": { + "uv": [ + 14, + 1, + 14.125, + 1.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 1.5, + 14.125, + 2 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 2, + 14.125, + 2.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 3.5, + 14.125, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.125, + 7.625, + 15, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.125, + 15, + 8, + 15.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.81964, + 14.5821, + 7.67457 + ], + "to": [ + 8.23289, + 16.7054, + 7.95111 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 8.16378, + 0.27729, + 7.81283 + ] + }, + "faces": { + "north": { + "uv": [ + 14, + 4, + 14.125, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 4.5, + 14.125, + 5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 5, + 14.125, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 5.5, + 14.125, + 6 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.125, + 8.125, + 15, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.625, + 15, + 8.5, + 15.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.72032, + 14.5821, + 7.67457 + ], + "to": [ + 8.13358, + 16.7054, + 7.95111 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 7.78944, + 0.27729, + 7.81283 + ] + }, + "faces": { + "north": { + "uv": [ + 14, + 6, + 14.125, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 7.5, + 14.125, + 8 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 8, + 14.125, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 14, + 8.625, + 14.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.125, + 8.625, + 15, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.125, + 15, + 9, + 15.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.83832, + 14.5821, + 7.66617 + ], + "to": [ + 8.11489, + 16.7054, + 8.07945 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.91932, + 0.27729, + 7.73531 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 14, + 9.125, + 14.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 9, + 14.125, + 9.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 9.5, + 14.125, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 10, + 14.125, + 10.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.125, + 9.125, + 15, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.625, + 15, + 9.5, + 15.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.89715, + 14.5821, + 7.86172 + ], + "to": [ + 8.31044, + 16.7054, + 8.13828 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 12.45859, + -0.55234, + 3.57527 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 14, + 10.625, + 14.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 10.5, + 14.125, + 11 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 14, + 11.125, + 14.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 11, + 14.125, + 11.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.125, + 9.625, + 15, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.125, + 15, + 10, + 15.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.64278, + 0.1321, + 7.86172 + ], + "to": [ + 8.03331, + 4.7304, + 8.13828 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 3.49462, + -16.50234, + 3.57527 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 3, + 10.125, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 10, + 7.625, + 12.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 10, + 8.125, + 12.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 8, + 10.125, + 10.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.125, + 10.125, + 15, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.625, + 15, + 10.5, + 15.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.72032, + 0.1321, + 8.04889 + ], + "to": [ + 7.85858, + 4.7304, + 8.32543 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 7.78944, + -15.67271, + 8.18717 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 10, + 8.625, + 12.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 10, + 9.125, + 12.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 10, + 9.625, + 12.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 0, + 10.625, + 2.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.125, + 10.625, + 15, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.125, + 15, + 11, + 15.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.83832, + 0.1321, + 8.19555 + ], + "to": [ + 8.11489, + 4.7304, + 8.33383 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.91932, + -15.67271, + 8.26469 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 2.5, + 10.625, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 5, + 10.625, + 7.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 7.5, + 10.625, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 10.5, + 10.125, + 12.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.125, + 11.125, + 15, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.625, + 15, + 11.5, + 15.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.09464, + 0.1321, + 8.04889 + ], + "to": [ + 8.23289, + 4.7304, + 8.32543 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 8.16378, + -15.67271, + 8.18717 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 10, + 10.625, + 12.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 0, + 11.125, + 2.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 2.5, + 11.125, + 4.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 5, + 11.125, + 7.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.125, + 11.625, + 15, + 11.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.125, + 15, + 12, + 15.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.09464, + 0.1321, + 7.67457 + ], + "to": [ + 8.23289, + 4.7304, + 7.95111 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 8.16378, + -15.67271, + 7.81283 + ] + }, + "faces": { + "north": { + "uv": [ + 11, + 7.5, + 11.125, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 10, + 11.125, + 12.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 0, + 11.625, + 2.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 2.5, + 11.625, + 4.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.125, + 12.125, + 15, + 12 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.625, + 15, + 12.5, + 15.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.72032, + 0.1321, + 7.67457 + ], + "to": [ + 7.85858, + 4.7304, + 7.95111 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 7.78944, + -15.67271, + 7.81283 + ] + }, + "faces": { + "north": { + "uv": [ + 11.5, + 5, + 11.625, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 7.5, + 11.625, + 9.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 10, + 11.625, + 12.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 0, + 12.125, + 2.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.125, + 12.625, + 15, + 12.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.125, + 15, + 13, + 15.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.83832, + 0.1321, + 7.66617 + ], + "to": [ + 8.11489, + 4.7304, + 7.80445 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.91932, + -15.67271, + 7.73531 + ] + }, + "faces": { + "north": { + "uv": [ + 12, + 2.5, + 12.125, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12, + 5, + 12.125, + 7.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 7.5, + 12.125, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 10, + 12.125, + 12.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.125, + 13.125, + 15, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.625, + 15, + 13.5, + 15.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.17215, + 0.1321, + 7.86172 + ], + "to": [ + 8.31044, + 4.7304, + 8.13828 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 12.45859, + -16.50234, + 3.57527 + ] + }, + "faces": { + "north": { + "uv": [ + 12.5, + 0, + 12.625, + 2.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.5, + 2.5, + 12.625, + 4.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 12.5, + 5, + 12.625, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 12.5, + 7.625, + 14.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.125, + 13.625, + 15, + 13.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.125, + 15, + 14, + 15.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.3, + 15.25, + 7.3 + ], + "to": [ + 8.7, + 16.65, + 8.7 + ], + "faces": { + "north": { + "uv": [ + 7.5, + 8, + 8.25, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 0, + 9.25, + 0.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 1, + 9.25, + 1.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 2, + 9.25, + 2.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 3.75, + 8.5, + 3 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 4, + 8.5, + 4.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.475, + 15.25, + 6.05 + ], + "to": [ + 8.525, + 15.425, + 7.3 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 0, + 0, + -0.25 + ] + }, + "faces": { + "north": { + "uv": [ + 11.5, + 14, + 12, + 14.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.5, + 7.5, + 13.125, + 7.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 11.5, + 14.5, + 11.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 12.5, + 8.625, + 12.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 5.625, + 8.5, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 6, + 8.5, + 6.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.475, + 15.425, + 5.975 + ], + "to": [ + 8.525, + 16.475, + 7.3 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 0, + 0, + -0.25 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 0, + 10.5, + 0.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 7, + 9.125, + 7.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 0.5, + 10.5, + 1 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 7.5, + 9.125, + 8 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 8.625, + 8.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 5, + 9, + 5.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.475, + 16.27764, + 5.80437 + ], + "to": [ + 8.525, + 16.46514, + 5.97937 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 15.94014, + 6.39187 + ] + }, + "faces": { + "north": { + "uv": [ + 12, + 14, + 12.5, + 14.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 14, + 15.125, + 14.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 12, + 14.5, + 12.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.5, + 15, + 14.625, + 15.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 13, + 14.125, + 12.5, + 14 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.5, + 12.5, + 14, + 12.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.28019, + 15.425, + 6.16789 + ], + "to": [ + 8.46769, + 16.475, + 6.35539 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 8.88019, + 15.95, + 6.69289 + ] + }, + "faces": { + "north": { + "uv": [ + 13, + 14, + 13.125, + 14.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 13, + 14.125, + 13.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 14, + 13.625, + 14.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 13.5, + 14.125, + 14 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.125, + 14.625, + 15, + 14.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.125, + 15, + 15, + 15.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.83792, + 15.425, + 5.70431 + ], + "to": [ + 8.02542, + 16.475, + 5.89181 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 8.43792, + 15.95, + 7.22931 + ] + }, + "faces": { + "north": { + "uv": [ + 14, + 14, + 14.125, + 14.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14.5, + 0, + 14.625, + 0.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 0.5, + 14.625, + 1 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14.5, + 1, + 14.625, + 1.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.625, + 0.125, + 15.5, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.625, + 0.5, + 15.5, + 0.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.475, + 15.50229, + 6.13119 + ], + "to": [ + 8.525, + 15.68979, + 6.30619 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 15.16479, + 6.71869 + ] + }, + "faces": { + "north": { + "uv": [ + 14.5, + 1.5, + 15, + 1.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.5, + 1, + 15.625, + 1.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 2, + 15, + 2.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.5, + 1.5, + 15.625, + 1.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15, + 2.625, + 14.5, + 2.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15, + 3, + 14.5, + 3.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.475, + 16.475, + 6.05 + ], + "to": [ + 8.525, + 16.65, + 7.3 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 0, + 0, + -0.25 + ] + }, + "faces": { + "north": { + "uv": [ + 14.5, + 3.5, + 15, + 3.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.5, + 8, + 13.125, + 8.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 4, + 15, + 4.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.5, + 8.5, + 13.125, + 8.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 6.625, + 9, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 9, + 7.5, + 9.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.3, + 15.425, + 6.05 + ], + "to": [ + 7.475, + 16.475, + 7.3 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 0, + 0, + -0.25 + ] + }, + "faces": { + "north": { + "uv": [ + 14.5, + 4.5, + 14.625, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 9, + 8.625, + 9.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 5, + 14.625, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 8, + 9.625, + 8.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.125, + 6.125, + 10, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.125, + 12.5, + 9, + 13.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.525, + 15.425, + 6.05 + ], + "to": [ + 8.7, + 16.475, + 7.3 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 0, + 0, + -0.25 + ] + }, + "faces": { + "north": { + "uv": [ + 14.5, + 5.5, + 14.625, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 8.5, + 9.625, + 9 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 6, + 14.625, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 9, + 9.625, + 9.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 12.625, + 9.625, + 12.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.625, + 12.5, + 9.5, + 13.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.44064, + 16.1294, + 6.05 + ], + "to": [ + 7.69064, + 16.3044, + 7.3 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.16564, + 16.2169, + 6.55 + ] + }, + "faces": { + "north": { + "uv": [ + 15.5, + 2, + 15.625, + 2.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.5, + 10, + 13.125, + 10.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 15.5, + 2.5, + 15.625, + 2.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 12.5, + 11.125, + 12.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 12.625, + 11.125, + 12.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.625, + 12.5, + 11.5, + 13.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.30936, + 16.1294, + 6.05 + ], + "to": [ + 8.55936, + 16.3044, + 7.3 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.83436, + 16.2169, + 6.55 + ] + }, + "faces": { + "north": { + "uv": [ + 15.5, + 3, + 15.625, + 3.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.5, + 11.5, + 13.125, + 11.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 15.5, + 3.5, + 15.625, + 3.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 12.5, + 12.625, + 12.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 13.125, + 0.625, + 13, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.125, + 1, + 13, + 1.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.30758, + 15.59383, + 6.05 + ], + "to": [ + 8.55758, + 15.76883, + 7.3 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 8.83258, + 15.68133, + 6.55 + ] + }, + "faces": { + "north": { + "uv": [ + 15.5, + 4, + 15.625, + 4.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.5, + 12, + 13.125, + 12.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 15.5, + 4.5, + 15.625, + 4.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 2, + 13.625, + 2.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 13.125, + 3.125, + 13, + 2.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.125, + 3.5, + 13, + 4.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.44242, + 15.59383, + 6.05 + ], + "to": [ + 7.69242, + 15.76883, + 7.3 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 7.16742, + 15.68133, + 6.55 + ] + }, + "faces": { + "north": { + "uv": [ + 15.5, + 5, + 15.625, + 5.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13, + 4.5, + 13.625, + 4.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 15.5, + 5.5, + 15.625, + 5.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 5, + 13.625, + 5.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 13.125, + 6.125, + 13, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.125, + 6.5, + 13, + 7.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.475, + 15.25, + 8.7 + ], + "to": [ + 8.525, + 15.425, + 9.95 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 0, + 0, + 16.25 + ] + }, + "faces": { + "north": { + "uv": [ + 14.5, + 6.5, + 15, + 6.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 13, + 8.625, + 13.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 7, + 15, + 7.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 9, + 13.625, + 9.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 0.625, + 9.5, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 1, + 9.5, + 1.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.475, + 15.425, + 8.7 + ], + "to": [ + 8.525, + 16.475, + 10.025 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 0, + 0, + 16.25 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 1, + 10.5, + 1.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 2, + 10.125, + 2.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 1.5, + 10.5, + 2 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 2.5, + 10.125, + 3 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 3.625, + 9.5, + 3 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 4, + 9.5, + 4.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.475, + 16.27764, + 10.02063 + ], + "to": [ + 8.525, + 16.46514, + 10.19563 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 15.94014, + 9.60813 + ] + }, + "faces": { + "north": { + "uv": [ + 14.5, + 7.5, + 15, + 7.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.5, + 6, + 15.625, + 6.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 14.5, + 8.5, + 14.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15.5, + 6.5, + 15.625, + 6.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15, + 8.125, + 14.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 14.5, + 8.5, + 14.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.28019, + 15.425, + 9.64461 + ], + "to": [ + 8.46769, + 16.475, + 9.83211 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 8.88019, + 15.95, + 9.30711 + ] + }, + "faces": { + "north": { + "uv": [ + 14.5, + 8.5, + 14.625, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 14.5, + 9.125, + 15 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 9, + 14.625, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 14.5, + 9.625, + 15 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.625, + 7.125, + 15.5, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.625, + 15.5, + 7.5, + 15.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.83792, + 15.425, + 10.10819 + ], + "to": [ + 8.02542, + 16.475, + 10.29569 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 8.43792, + 15.95, + 8.77069 + ] + }, + "faces": { + "north": { + "uv": [ + 14.5, + 9.5, + 14.625, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 14.5, + 10.125, + 15 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 14.5, + 10, + 14.625, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 14.5, + 10.625, + 15 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15.625, + 7.625, + 15.5, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.125, + 15.5, + 8, + 15.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.475, + 15.50229, + 9.69381 + ], + "to": [ + 8.525, + 15.68979, + 9.86881 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 15.16479, + 9.28131 + ] + }, + "faces": { + "north": { + "uv": [ + 14.5, + 10.5, + 15, + 10.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15.5, + 8, + 15.625, + 8.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 14.5, + 11.5, + 14.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 15.5, + 8.625, + 15.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 15, + 11.125, + 14.5, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12, + 14.5, + 11.5, + 14.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.475, + 16.475, + 8.7 + ], + "to": [ + 8.525, + 16.65, + 9.95 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 0, + 0, + 16.25 + ] + }, + "faces": { + "north": { + "uv": [ + 14.5, + 11.5, + 15, + 11.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13, + 9.5, + 13.625, + 9.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 14.5, + 12.5, + 14.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 13, + 10.625, + 13.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 5.625, + 9.5, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 6, + 9.5, + 6.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.3, + 15.425, + 8.7 + ], + "to": [ + 7.475, + 16.475, + 9.95 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 0, + 0, + 16.25 + ] + }, + "faces": { + "north": { + "uv": [ + 14.5, + 12, + 14.625, + 12.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 7, + 10.125, + 7.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 12.5, + 14.5, + 12.625, + 15 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 7.5, + 10.125, + 8 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 13.125, + 11.125, + 13, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.125, + 13, + 11, + 13.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.525, + 15.425, + 8.7 + ], + "to": [ + 8.7, + 16.475, + 9.95 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 0, + 0, + 16.25 + ] + }, + "faces": { + "north": { + "uv": [ + 14.5, + 12.5, + 14.625, + 13 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 9.5, + 8.625, + 10 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 13, + 14.5, + 13.125, + 15 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 9.5, + 9.625, + 10 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 12.125, + 13.625, + 12, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.625, + 13, + 12.5, + 13.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.44064, + 16.1294, + 8.7 + ], + "to": [ + 7.69064, + 16.3044, + 9.95 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.16564, + 16.2169, + 9.45 + ] + }, + "faces": { + "north": { + "uv": [ + 15.5, + 8.5, + 15.625, + 8.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13, + 12.5, + 13.625, + 12.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 15.5, + 9.125, + 15.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 13, + 13.625, + 13.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 13.625, + 0.625, + 13.5, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.625, + 1, + 13.5, + 1.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.30936, + 16.1294, + 8.7 + ], + "to": [ + 8.55936, + 16.3044, + 9.95 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.83436, + 16.2169, + 9.45 + ] + }, + "faces": { + "north": { + "uv": [ + 15.5, + 9, + 15.625, + 9.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.5, + 2.5, + 14.125, + 2.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 15.5, + 9.625, + 15.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 3, + 14.125, + 3.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 13.625, + 4.125, + 13.5, + 3.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.625, + 5.5, + 13.5, + 6.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.30758, + 15.59383, + 8.7 + ], + "to": [ + 8.55758, + 15.76883, + 9.95 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 8.83258, + 15.68133, + 9.45 + ] + }, + "faces": { + "north": { + "uv": [ + 15.5, + 9.5, + 15.625, + 9.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.5, + 6.5, + 14.125, + 6.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 15.5, + 10.125, + 15.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 7, + 14.125, + 7.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 13.625, + 8.125, + 13.5, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.125, + 13.5, + 8, + 14.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.44242, + 15.59383, + 8.7 + ], + "to": [ + 7.69242, + 15.76883, + 9.95 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 7.16742, + 15.68133, + 9.45 + ] + }, + "faces": { + "north": { + "uv": [ + 15.5, + 10, + 15.625, + 10.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 13.5, + 9.125, + 13.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 15.5, + 10.625, + 15.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 8.5, + 14.125, + 8.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.625, + 14.125, + 9.5, + 13.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.125, + 13.5, + 10, + 14.125 + ], + "texture": "#0" + } + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [ + 0, + 4.25, + 1.25 + ], + "scale": [ + 1.5, + 1.5, + 1.5 + ] + }, + "thirdperson_lefthand": { + "translation": [ + 0, + 4.25, + 1.25 + ], + "scale": [ + 1.5, + 1.5, + 1.5 + ] + }, + "firstperson_righthand": { + "rotation": [ + 13.99, + -5.47, + -54.85 + ], + "translation": [ + -9.5, + 5.5, + 5.75 + ] + }, + "firstperson_lefthand": { + "rotation": [ + -170.78, + 0.87, + -120.4 + ], + "translation": [ + -11.75, + 6, + 6 + ] + }, + "ground": { + "rotation": [ + 180, + 0, + 0 + ], + "translation": [ + 0, + 8.75, + 0 + ], + "scale": [ + 1.2, + 1.2, + 1.2 + ] + }, + "gui": { + "rotation": [ + -90, + 135, + 90 + ], + "translation": [ + -0.75, + -0.75, + -0.25 + ], + "scale": [ + 1.1, + 1.1, + 1.1 + ] + }, + "head": { + "rotation": [ + 61.5, + 0, + 0 + ], + "translation": [ + 0, + 1, + -19 + ], + "scale": [ + 2.5, + 2.5, + 2.5 + ] + }, + "fixed": { + "rotation": [ + 90, + 0, + 90 + ], + "translation": [ + 1.5, + 0, + -0.25 + ], + "scale": [ + 3, + 3, + 3 + ] + } + }, + "groups": [ + { + "name": "group", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "children": [ + { + "name": "group", + "origin": [ + -0.10355, + 0, + 0 + ], + "color": 0, + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ] + }, + { + "name": "group", + "origin": [ + -0.10355, + 0, + 0 + ], + "color": 0, + "children": [ + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15 + ] + }, + { + "name": "group", + "origin": [ + -0.10355, + 0, + 0 + ], + "color": 0, + "children": [ + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23 + ] + }, + { + "name": "group", + "origin": [ + -0.10355, + 0, + 0 + ], + "color": 0, + "children": [ + 24, + { + "name": "group", + "origin": [ + 0, + 0, + 0 + ], + "color": 8, + "children": [ + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37 + ] + }, + { + "name": "group", + "origin": [ + 0, + 0, + 0 + ], + "color": 8, + "children": [ + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50 + ] + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/custom/handgunammobox.json b/src/main/resources/assets/superbwarfare/models/custom/handgunammobox.json new file mode 100644 index 000000000..9c06ca4f7 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/custom/handgunammobox.json @@ -0,0 +1,10374 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 32, + 32 + ], + "elements": [ + { + "from": [ + 5.43541, + 8.12145, + 6.15485 + ], + "to": [ + 5.65867, + 9.28473, + 6.69319 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 5.54699, + 8.85226, + 6.42386 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 2.5, + 8.625, + 3.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 8, + 3.25, + 8.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 3.5, + 8.625, + 4.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 8, + 3.75, + 8.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.125, + 3.75, + 9, + 3.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.125, + 9, + 4, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.27754, + 8.12145, + 6.31207 + ], + "to": [ + 5.81589, + 9.28473, + 6.53533 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 5.54699, + 8.85226, + 6.42386 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 8, + 4.25, + 8.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 4.5, + 8.625, + 5.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 8, + 4.75, + 8.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 5.5, + 8.625, + 6.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 4.125, + 9, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 9, + 4.5, + 9.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.27764, + 8.12145, + 6.31215 + ], + "to": [ + 5.81599, + 9.28473, + 6.53541 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 5.54699, + 8.85226, + 6.42386 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 4.5, + 8.25, + 5.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 6.5, + 8.625, + 7.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 8, + 5.25, + 8.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 7.5, + 8.625, + 8.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 4.625, + 9, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 9, + 5, + 9.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.43551, + 8.12145, + 6.15493 + ], + "to": [ + 5.65877, + 9.28473, + 6.69327 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 5.54699, + 8.85226, + 6.42386 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 8.5, + 8.125, + 9.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 8, + 5.75, + 8.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 8.5, + 8.625, + 9.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 5.5, + 8.25, + 6.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.125, + 5.25, + 9, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.625, + 9, + 5.5, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.45215, + 9.28473, + 6.1952 + ], + "to": [ + 5.64191, + 9.70473, + 6.65279 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 5.54699, + 8.85226, + 6.42386 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 5.5, + 9.125, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 0.5, + 9.25, + 0.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 9, + 6.125, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 1, + 9.25, + 1.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.125, + 6.25, + 9, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.625, + 9, + 6.5, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.31796, + 9.28473, + 6.32884 + ], + "to": [ + 5.77555, + 9.70473, + 6.51861 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 5.54699, + 8.85226, + 6.42386 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 1.5, + 9.25, + 1.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 6.5, + 9.125, + 6.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 2, + 9.25, + 2.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 9, + 7.125, + 9.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 7.125, + 9, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 9, + 7.5, + 9.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.31805, + 9.28473, + 6.32891 + ], + "to": [ + 5.77564, + 9.70473, + 6.51867 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 5.54699, + 8.85226, + 6.42386 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 2.5, + 9.25, + 2.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 7.5, + 9.125, + 7.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 9, + 3.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 8, + 9.125, + 8.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 8.625, + 9, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 9, + 9, + 9.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.45223, + 9.28473, + 6.19527 + ], + "to": [ + 5.642, + 9.70473, + 6.65286 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 5.54699, + 8.85226, + 6.42386 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 9.5, + 0.125, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 3, + 9.25, + 3.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0.5, + 9.5, + 0.625, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 9, + 3.75, + 9.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.625, + 0.75, + 9.5, + 0.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.125, + 9.5, + 1, + 9.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.63541, + 8.12145, + 6.15485 + ], + "to": [ + 6.85867, + 9.28473, + 6.69319 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.74699, + 8.85226, + 6.42386 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 2.5, + 8.625, + 3.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 8, + 3.25, + 8.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 3.5, + 8.625, + 4.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 8, + 3.75, + 8.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.125, + 3.75, + 9, + 3.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.125, + 9, + 4, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.47764, + 8.12145, + 6.31215 + ], + "to": [ + 7.01599, + 9.28473, + 6.53541 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 6.74699, + 8.85226, + 6.42386 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 4.5, + 8.25, + 5.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 6.5, + 8.625, + 7.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 8, + 5.25, + 8.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 7.5, + 8.625, + 8.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 4.625, + 9, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 9, + 5, + 9.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.63551, + 8.12145, + 6.15493 + ], + "to": [ + 6.85877, + 9.28473, + 6.69327 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 6.74699, + 8.85226, + 6.42386 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 8.5, + 8.125, + 9.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 8, + 5.75, + 8.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 8.5, + 8.625, + 9.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 5.5, + 8.25, + 6.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.125, + 5.25, + 9, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.625, + 9, + 5.5, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.47754, + 8.12145, + 6.31207 + ], + "to": [ + 7.01589, + 9.28473, + 6.53533 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.74699, + 8.85226, + 6.42386 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 8, + 4.25, + 8.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 4.5, + 8.625, + 5.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 8, + 4.75, + 8.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 5.5, + 8.625, + 6.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 4.125, + 9, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 9, + 4.5, + 9.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.65223, + 9.28473, + 6.19527 + ], + "to": [ + 6.842, + 9.70473, + 6.65286 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 6.74699, + 8.85226, + 6.42386 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 9.5, + 0.125, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 3, + 9.25, + 3.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0.5, + 9.5, + 0.625, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 9, + 3.75, + 9.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.625, + 0.75, + 9.5, + 0.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.125, + 9.5, + 1, + 9.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.51805, + 9.28473, + 6.32891 + ], + "to": [ + 6.97564, + 9.70473, + 6.51867 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 6.74699, + 8.85226, + 6.42386 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 2.5, + 9.25, + 2.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 7.5, + 9.125, + 7.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 9, + 3.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 8, + 9.125, + 8.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 8.625, + 9, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 9, + 9, + 9.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.51796, + 9.28473, + 6.32884 + ], + "to": [ + 6.97555, + 9.70473, + 6.51861 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.74699, + 8.85226, + 6.42386 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 1.5, + 9.25, + 1.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 6.5, + 9.125, + 6.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 2, + 9.25, + 2.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 9, + 7.125, + 9.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 7.125, + 9, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 9, + 7.5, + 9.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.65215, + 9.28473, + 6.1952 + ], + "to": [ + 6.84191, + 9.70473, + 6.65279 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.74699, + 8.85226, + 6.42386 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 5.5, + 9.125, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 0.5, + 9.25, + 0.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 9, + 6.125, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 1, + 9.25, + 1.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.125, + 6.25, + 9, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.625, + 9, + 6.5, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.43541, + 8.12145, + 7.35485 + ], + "to": [ + 5.65867, + 9.28473, + 7.89319 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 5.54699, + 8.85226, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 2.5, + 8.625, + 3.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 8, + 3.25, + 8.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 3.5, + 8.625, + 4.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 8, + 3.75, + 8.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.125, + 3.75, + 9, + 3.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.125, + 9, + 4, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.27754, + 8.12145, + 7.51207 + ], + "to": [ + 5.81589, + 9.28473, + 7.73533 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 5.54699, + 8.85226, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 8, + 4.25, + 8.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 4.5, + 8.625, + 5.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 8, + 4.75, + 8.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 5.5, + 8.625, + 6.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 4.125, + 9, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 9, + 4.5, + 9.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.27764, + 8.12145, + 7.51215 + ], + "to": [ + 5.81599, + 9.28473, + 7.73541 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 5.54699, + 8.85226, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 4.5, + 8.25, + 5.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 6.5, + 8.625, + 7.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 8, + 5.25, + 8.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 7.5, + 8.625, + 8.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 4.625, + 9, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 9, + 5, + 9.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.43551, + 8.12145, + 7.35493 + ], + "to": [ + 5.65877, + 9.28473, + 7.89327 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 5.54699, + 8.85226, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 8.5, + 8.125, + 9.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 8, + 5.75, + 8.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 8.5, + 8.625, + 9.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 5.5, + 8.25, + 6.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.125, + 5.25, + 9, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.625, + 9, + 5.5, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.45215, + 9.28473, + 7.3952 + ], + "to": [ + 5.64191, + 9.70473, + 7.85279 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 5.54699, + 8.85226, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 5.5, + 9.125, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 0.5, + 9.25, + 0.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 9, + 6.125, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 1, + 9.25, + 1.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.125, + 6.25, + 9, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.625, + 9, + 6.5, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.31796, + 9.28473, + 7.52884 + ], + "to": [ + 5.77555, + 9.70473, + 7.71861 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 5.54699, + 8.85226, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 1.5, + 9.25, + 1.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 6.5, + 9.125, + 6.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 2, + 9.25, + 2.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 9, + 7.125, + 9.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 7.125, + 9, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 9, + 7.5, + 9.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.31805, + 9.28473, + 7.52891 + ], + "to": [ + 5.77564, + 9.70473, + 7.71867 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 5.54699, + 8.85226, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 2.5, + 9.25, + 2.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 7.5, + 9.125, + 7.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 9, + 3.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 8, + 9.125, + 8.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 8.625, + 9, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 9, + 9, + 9.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.45223, + 9.28473, + 7.39527 + ], + "to": [ + 5.642, + 9.70473, + 7.85286 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 5.54699, + 8.85226, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 9.5, + 0.125, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 3, + 9.25, + 3.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0.5, + 9.5, + 0.625, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 9, + 3.75, + 9.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.625, + 0.75, + 9.5, + 0.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.125, + 9.5, + 1, + 9.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.63541, + 8.12145, + 7.35485 + ], + "to": [ + 6.85867, + 9.28473, + 7.89319 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.74699, + 8.85226, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 2.5, + 8.625, + 3.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 8, + 3.25, + 8.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 3.5, + 8.625, + 4.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 8, + 3.75, + 8.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.125, + 3.75, + 9, + 3.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.125, + 9, + 4, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.47754, + 8.12145, + 7.51207 + ], + "to": [ + 7.01589, + 9.28473, + 7.73533 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.74699, + 8.85226, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 8, + 4.25, + 8.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 4.5, + 8.625, + 5.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 8, + 4.75, + 8.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 5.5, + 8.625, + 6.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 4.125, + 9, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 9, + 4.5, + 9.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.47764, + 8.12145, + 7.51215 + ], + "to": [ + 7.01599, + 9.28473, + 7.73541 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 6.74699, + 8.85226, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 4.5, + 8.25, + 5.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 6.5, + 8.625, + 7.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 8, + 5.25, + 8.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 7.5, + 8.625, + 8.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 4.625, + 9, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 9, + 5, + 9.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.63551, + 8.12145, + 7.35493 + ], + "to": [ + 6.85877, + 9.28473, + 7.89327 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 6.74699, + 8.85226, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 8.5, + 8.125, + 9.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 8, + 5.75, + 8.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 8.5, + 8.625, + 9.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 5.5, + 8.25, + 6.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.125, + 5.25, + 9, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.625, + 9, + 5.5, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.65215, + 9.28473, + 7.3952 + ], + "to": [ + 6.84191, + 9.70473, + 7.85279 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.74699, + 8.85226, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 5.5, + 9.125, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 0.5, + 9.25, + 0.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 9, + 6.125, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 1, + 9.25, + 1.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.125, + 6.25, + 9, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.625, + 9, + 6.5, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.51796, + 9.28473, + 7.52884 + ], + "to": [ + 6.97555, + 9.70473, + 7.71861 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.74699, + 8.85226, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 1.5, + 9.25, + 1.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 6.5, + 9.125, + 6.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 2, + 9.25, + 2.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 9, + 7.125, + 9.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 7.125, + 9, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 9, + 7.5, + 9.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.51805, + 9.28473, + 7.52891 + ], + "to": [ + 6.97564, + 9.70473, + 7.71867 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 6.74699, + 8.85226, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 2.5, + 9.25, + 2.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 7.5, + 9.125, + 7.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 9, + 3.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 8, + 9.125, + 8.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 8.625, + 9, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 9, + 9, + 9.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.65223, + 9.28473, + 7.39527 + ], + "to": [ + 6.842, + 9.70473, + 7.85286 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 6.74699, + 8.85226, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 9.5, + 0.125, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 3, + 9.25, + 3.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0.5, + 9.5, + 0.625, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 9, + 3.75, + 9.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.625, + 0.75, + 9.5, + 0.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.125, + 9.5, + 1, + 9.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.03541, + 8.12145, + 6.75485 + ], + "to": [ + 6.25867, + 9.28473, + 7.29319 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.14699, + 8.85226, + 7.02386 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 2.5, + 8.625, + 3.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 8, + 3.25, + 8.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 3.5, + 8.625, + 4.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 8, + 3.75, + 8.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.125, + 3.75, + 9, + 3.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.125, + 9, + 4, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.87754, + 8.12145, + 6.91207 + ], + "to": [ + 6.41589, + 9.28473, + 7.13533 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.14699, + 8.85226, + 7.02386 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 8, + 4.25, + 8.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 4.5, + 8.625, + 5.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 8, + 4.75, + 8.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 5.5, + 8.625, + 6.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 4.125, + 9, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 9, + 4.5, + 9.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.87764, + 8.12145, + 6.91215 + ], + "to": [ + 6.41599, + 9.28473, + 7.13541 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 6.14699, + 8.85226, + 7.02386 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 4.5, + 8.25, + 5.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 6.5, + 8.625, + 7.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 8, + 5.25, + 8.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 7.5, + 8.625, + 8.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 4.625, + 9, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 9, + 5, + 9.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.03551, + 8.12145, + 6.75493 + ], + "to": [ + 6.25877, + 9.28473, + 7.29327 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 6.14699, + 8.85226, + 7.02386 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 8.5, + 8.125, + 9.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 8, + 5.75, + 8.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 8.5, + 8.625, + 9.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 5.5, + 8.25, + 6.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.125, + 5.25, + 9, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.625, + 9, + 5.5, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.05215, + 9.28473, + 6.7952 + ], + "to": [ + 6.24191, + 9.70473, + 7.25279 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.14699, + 8.85226, + 7.02386 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 5.5, + 9.125, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 0.5, + 9.25, + 0.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 9, + 6.125, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 1, + 9.25, + 1.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.125, + 6.25, + 9, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.625, + 9, + 6.5, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.91796, + 9.28473, + 6.92884 + ], + "to": [ + 6.37555, + 9.70473, + 7.11861 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.14699, + 8.85226, + 7.02386 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 1.5, + 9.25, + 1.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 6.5, + 9.125, + 6.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 2, + 9.25, + 2.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 9, + 7.125, + 9.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 7.125, + 9, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 9, + 7.5, + 9.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.91805, + 9.28473, + 6.92891 + ], + "to": [ + 6.37564, + 9.70473, + 7.11867 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 6.14699, + 8.85226, + 7.02386 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 2.5, + 9.25, + 2.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 7.5, + 9.125, + 7.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 9, + 3.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 8, + 9.125, + 8.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 8.625, + 9, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 9, + 9, + 9.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.05223, + 9.28473, + 6.79527 + ], + "to": [ + 6.242, + 9.70473, + 7.25286 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 6.14699, + 8.85226, + 7.02386 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 9.5, + 0.125, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 3, + 9.25, + 3.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0.5, + 9.5, + 0.625, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 9, + 3.75, + 9.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.625, + 0.75, + 9.5, + 0.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.125, + 9.5, + 1, + 9.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.03541, + 8.12145, + 7.95485 + ], + "to": [ + 6.25867, + 9.28473, + 8.49319 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.14699, + 8.85226, + 8.22386 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 2.5, + 8.625, + 3.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 8, + 3.25, + 8.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 3.5, + 8.625, + 4.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 8, + 3.75, + 8.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.125, + 3.75, + 9, + 3.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.125, + 9, + 4, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.87754, + 8.12145, + 8.11207 + ], + "to": [ + 6.41589, + 9.28473, + 8.33533 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.14699, + 8.85226, + 8.22386 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 8, + 4.25, + 8.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 4.5, + 8.625, + 5.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 8, + 4.75, + 8.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 5.5, + 8.625, + 6.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 4.125, + 9, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 9, + 4.5, + 9.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.87764, + 8.12145, + 8.11215 + ], + "to": [ + 6.41599, + 9.28473, + 8.33541 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 6.14699, + 8.85226, + 8.22386 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 4.5, + 8.25, + 5.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 6.5, + 8.625, + 7.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 8, + 5.25, + 8.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 7.5, + 8.625, + 8.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 4.625, + 9, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 9, + 5, + 9.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.03551, + 8.12145, + 7.95493 + ], + "to": [ + 6.25877, + 9.28473, + 8.49327 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 6.14699, + 8.85226, + 8.22386 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 8.5, + 8.125, + 9.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 8, + 5.75, + 8.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 8.5, + 8.625, + 9.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 5.5, + 8.25, + 6.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.125, + 5.25, + 9, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.625, + 9, + 5.5, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.05215, + 9.28473, + 7.9952 + ], + "to": [ + 6.24191, + 9.70473, + 8.45279 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.14699, + 8.85226, + 8.22386 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 5.5, + 9.125, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 0.5, + 9.25, + 0.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 9, + 6.125, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 1, + 9.25, + 1.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.125, + 6.25, + 9, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.625, + 9, + 6.5, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.91796, + 9.28473, + 8.12884 + ], + "to": [ + 6.37555, + 9.70473, + 8.31861 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.14699, + 8.85226, + 8.22386 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 1.5, + 9.25, + 1.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 6.5, + 9.125, + 6.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 2, + 9.25, + 2.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 9, + 7.125, + 9.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 7.125, + 9, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 9, + 7.5, + 9.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.91805, + 9.28473, + 8.12891 + ], + "to": [ + 6.37564, + 9.70473, + 8.31867 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 6.14699, + 8.85226, + 8.22386 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 2.5, + 9.25, + 2.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 7.5, + 9.125, + 7.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 9, + 3.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 8, + 9.125, + 8.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 8.625, + 9, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 9, + 9, + 9.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.05223, + 9.28473, + 7.99527 + ], + "to": [ + 6.242, + 9.70473, + 8.45286 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 6.14699, + 8.85226, + 8.22386 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 9.5, + 0.125, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 3, + 9.25, + 3.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0.5, + 9.5, + 0.625, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 9, + 3.75, + 9.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.625, + 0.75, + 9.5, + 0.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.125, + 9.5, + 1, + 9.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.43541, + 8.12145, + 8.55485 + ], + "to": [ + 5.65867, + 9.28473, + 9.09319 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 5.54699, + 8.85226, + 8.82386 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 2.5, + 8.625, + 3.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 8, + 3.25, + 8.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 3.5, + 8.625, + 4.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 8, + 3.75, + 8.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.125, + 3.75, + 9, + 3.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.125, + 9, + 4, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.27754, + 8.12145, + 8.71207 + ], + "to": [ + 5.81589, + 9.28473, + 8.93533 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 5.54699, + 8.85226, + 8.82386 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 8, + 4.25, + 8.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 4.5, + 8.625, + 5.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 8, + 4.75, + 8.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 5.5, + 8.625, + 6.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 4.125, + 9, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 9, + 4.5, + 9.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.27764, + 8.12145, + 8.71215 + ], + "to": [ + 5.81599, + 9.28473, + 8.93541 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 5.54699, + 8.85226, + 8.82386 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 4.5, + 8.25, + 5.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 6.5, + 8.625, + 7.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 8, + 5.25, + 8.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 7.5, + 8.625, + 8.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 4.625, + 9, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 9, + 5, + 9.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.43551, + 8.12145, + 8.55493 + ], + "to": [ + 5.65877, + 9.28473, + 9.09327 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 5.54699, + 8.85226, + 8.82386 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 8.5, + 8.125, + 9.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 8, + 5.75, + 8.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 8.5, + 8.625, + 9.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 5.5, + 8.25, + 6.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.125, + 5.25, + 9, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.625, + 9, + 5.5, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.45215, + 9.28473, + 8.5952 + ], + "to": [ + 5.64191, + 9.70473, + 9.05279 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 5.54699, + 8.85226, + 8.82386 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 5.5, + 9.125, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 0.5, + 9.25, + 0.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 9, + 6.125, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 1, + 9.25, + 1.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.125, + 6.25, + 9, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.625, + 9, + 6.5, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.31796, + 9.28473, + 8.72884 + ], + "to": [ + 5.77555, + 9.70473, + 8.91861 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 5.54699, + 8.85226, + 8.82386 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 1.5, + 9.25, + 1.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 6.5, + 9.125, + 6.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 2, + 9.25, + 2.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 9, + 7.125, + 9.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 7.125, + 9, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 9, + 7.5, + 9.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.31805, + 9.28473, + 8.72891 + ], + "to": [ + 5.77564, + 9.70473, + 8.91867 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 5.54699, + 8.85226, + 8.82386 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 2.5, + 9.25, + 2.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 7.5, + 9.125, + 7.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 9, + 3.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 8, + 9.125, + 8.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 8.625, + 9, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 9, + 9, + 9.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.45223, + 9.28473, + 8.59527 + ], + "to": [ + 5.642, + 9.70473, + 9.05286 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 5.54699, + 8.85226, + 8.82386 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 9.5, + 0.125, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 3, + 9.25, + 3.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0.5, + 9.5, + 0.625, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 9, + 3.75, + 9.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.625, + 0.75, + 9.5, + 0.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.125, + 9.5, + 1, + 9.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.63541, + 8.12145, + 8.55485 + ], + "to": [ + 6.85867, + 9.28473, + 9.09319 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.74699, + 8.85226, + 8.82386 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 2.5, + 8.625, + 3.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 8, + 3.25, + 8.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 3.5, + 8.625, + 4.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 8, + 3.75, + 8.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.125, + 3.75, + 9, + 3.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.125, + 9, + 4, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.47754, + 8.12145, + 8.71207 + ], + "to": [ + 7.01589, + 9.28473, + 8.93533 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.74699, + 8.85226, + 8.82386 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 8, + 4.25, + 8.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 4.5, + 8.625, + 5.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 8, + 4.75, + 8.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 5.5, + 8.625, + 6.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 4.125, + 9, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 9, + 4.5, + 9.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.47764, + 8.12145, + 8.71215 + ], + "to": [ + 7.01599, + 9.28473, + 8.93541 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 6.74699, + 8.85226, + 8.82386 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 4.5, + 8.25, + 5.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 6.5, + 8.625, + 7.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 8, + 5.25, + 8.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 7.5, + 8.625, + 8.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 4.625, + 9, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 9, + 5, + 9.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.63551, + 8.12145, + 8.55493 + ], + "to": [ + 6.85877, + 9.28473, + 9.09327 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 6.74699, + 8.85226, + 8.82386 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 8.5, + 8.125, + 9.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 8, + 5.75, + 8.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 8.5, + 8.625, + 9.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 5.5, + 8.25, + 6.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.125, + 5.25, + 9, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.625, + 9, + 5.5, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.65215, + 9.28473, + 8.5952 + ], + "to": [ + 6.84191, + 9.70473, + 9.05279 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.74699, + 8.85226, + 8.82386 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 5.5, + 9.125, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 0.5, + 9.25, + 0.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 9, + 6.125, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 1, + 9.25, + 1.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.125, + 6.25, + 9, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.625, + 9, + 6.5, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.51796, + 9.28473, + 8.72884 + ], + "to": [ + 6.97555, + 9.70473, + 8.91861 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.74699, + 8.85226, + 8.82386 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 1.5, + 9.25, + 1.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 6.5, + 9.125, + 6.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 2, + 9.25, + 2.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 9, + 7.125, + 9.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 7.125, + 9, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 9, + 7.5, + 9.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.51805, + 9.28473, + 8.72891 + ], + "to": [ + 6.97564, + 9.70473, + 8.91867 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 6.74699, + 8.85226, + 8.82386 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 2.5, + 9.25, + 2.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 7.5, + 9.125, + 7.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 9, + 3.25, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 8, + 9.125, + 8.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 8.625, + 9, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 9, + 9, + 9.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.65223, + 9.28473, + 8.59527 + ], + "to": [ + 6.842, + 9.70473, + 9.05286 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 6.74699, + 8.85226, + 8.82386 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 9.5, + 0.125, + 9.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 3, + 9.25, + 3.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0.5, + 9.5, + 0.625, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 9, + 3.75, + 9.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.625, + 0.75, + 9.5, + 0.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.125, + 9.5, + 1, + 9.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.43541, + 8.53558, + 7.95485 + ], + "to": [ + 5.65867, + 9.69886, + 8.49319 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 5.54699, + 8.96805, + 8.22386 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 3.125, + 8.625, + 2.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 8.625, + 3.25, + 8 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 4.125, + 8.625, + 3.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 8.625, + 3.75, + 8 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.125, + 9.25, + 4, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.125, + 3.5, + 9, + 3.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.27754, + 8.53558, + 8.11207 + ], + "to": [ + 5.81589, + 9.69886, + 8.33533 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 5.54699, + 8.96805, + 8.22386 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 8.625, + 4.25, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 5.125, + 8.625, + 4.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 8.625, + 4.75, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 6.125, + 8.625, + 5.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 9.125, + 4.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 4, + 9, + 4.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.27764, + 8.53558, + 8.11215 + ], + "to": [ + 5.81599, + 9.69886, + 8.33541 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 5.54699, + 8.96805, + 8.22386 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 5.125, + 8.25, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 7.125, + 8.625, + 6.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 8.625, + 5.25, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 8.125, + 8.625, + 7.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 9.125, + 5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 4.5, + 9, + 4.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.43551, + 8.53558, + 7.95493 + ], + "to": [ + 5.65877, + 9.69886, + 8.49327 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 5.54699, + 8.96805, + 8.22386 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 9.125, + 8.125, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 8.625, + 5.75, + 8 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 9.125, + 8.625, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 6.125, + 8.25, + 5.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.625, + 9.25, + 5.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.125, + 5, + 9, + 5.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.49388, + 9.51558, + 8.09581 + ], + "to": [ + 5.60015, + 9.70546, + 8.35206 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 5.54699, + 8.96805, + 8.22386 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 1.125, + 9.625, + 1 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 9.625, + 1.625, + 9.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 1.625, + 9.625, + 1.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 2.125, + 9.625, + 2 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.125, + 9.625, + 3, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.625, + 2.5, + 9.5, + 2.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.41873, + 9.51558, + 8.17065 + ], + "to": [ + 5.67498, + 9.70546, + 8.27692 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 5.54699, + 8.96805, + 8.22386 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 3.125, + 9.625, + 3 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 9.625, + 3.625, + 9.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 3.625, + 9.625, + 3.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 9.625, + 4.125, + 9.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.625, + 9.625, + 4.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.625, + 4, + 9.5, + 4.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.41878, + 9.51558, + 8.17069 + ], + "to": [ + 5.67503, + 9.70546, + 8.27696 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 5.54699, + 8.96805, + 8.22386 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 4.625, + 9.625, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 9.625, + 5.125, + 9.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 5.125, + 9.625, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 9.625, + 5.625, + 9.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.125, + 9.625, + 6, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.625, + 5.5, + 9.5, + 5.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.49393, + 9.51558, + 8.09585 + ], + "to": [ + 5.6002, + 9.70546, + 8.3521 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 5.54699, + 8.96805, + 8.22386 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 6.125, + 9.625, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 9.625, + 6.625, + 9.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 6.625, + 9.625, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 9.625, + 7.125, + 9.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.625, + 9.625, + 7.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.625, + 7, + 9.5, + 7.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.63541, + 8.53558, + 7.95485 + ], + "to": [ + 6.85867, + 9.69886, + 8.49319 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.74699, + 8.96805, + 8.22386 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 3.125, + 8.625, + 2.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 8.625, + 3.25, + 8 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 4.125, + 8.625, + 3.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 8.625, + 3.75, + 8 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.125, + 9.25, + 4, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.125, + 3.5, + 9, + 3.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.47754, + 8.53558, + 8.11207 + ], + "to": [ + 7.01589, + 9.69886, + 8.33533 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.74699, + 8.96805, + 8.22386 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 8.625, + 4.25, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 5.125, + 8.625, + 4.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 8.625, + 4.75, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 6.125, + 8.625, + 5.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 9.125, + 4.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 4, + 9, + 4.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.47764, + 8.53558, + 8.11215 + ], + "to": [ + 7.01599, + 9.69886, + 8.33541 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 6.74699, + 8.96805, + 8.22386 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 5.125, + 8.25, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 7.125, + 8.625, + 6.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 8.625, + 5.25, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 8.125, + 8.625, + 7.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 9.125, + 5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 4.5, + 9, + 4.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.63551, + 8.53558, + 7.95493 + ], + "to": [ + 6.85877, + 9.69886, + 8.49327 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 6.74699, + 8.96805, + 8.22386 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 9.125, + 8.125, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 8.625, + 5.75, + 8 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 9.125, + 8.625, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 6.125, + 8.25, + 5.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.625, + 9.25, + 5.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.125, + 5, + 9, + 5.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.69388, + 9.51558, + 8.09581 + ], + "to": [ + 6.80015, + 9.70546, + 8.35206 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.74699, + 8.96805, + 8.22386 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 1.125, + 9.625, + 1 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 9.625, + 1.625, + 9.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 1.625, + 9.625, + 1.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 2.125, + 9.625, + 2 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.125, + 9.625, + 3, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.625, + 2.5, + 9.5, + 2.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.61873, + 9.51558, + 8.17065 + ], + "to": [ + 6.87498, + 9.70546, + 8.27692 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.74699, + 8.96805, + 8.22386 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 3.125, + 9.625, + 3 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 9.625, + 3.625, + 9.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 3.625, + 9.625, + 3.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 9.625, + 4.125, + 9.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.625, + 9.625, + 4.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.625, + 4, + 9.5, + 4.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.61878, + 9.51558, + 8.17069 + ], + "to": [ + 6.87503, + 9.70546, + 8.27696 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 6.74699, + 8.96805, + 8.22386 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 4.625, + 9.625, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 9.625, + 5.125, + 9.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 5.125, + 9.625, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 9.625, + 5.625, + 9.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.125, + 9.625, + 6, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.625, + 5.5, + 9.5, + 5.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.69393, + 9.51558, + 8.09585 + ], + "to": [ + 6.8002, + 9.70546, + 8.3521 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 6.74699, + 8.96805, + 8.22386 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 6.125, + 9.625, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 9.625, + 6.625, + 9.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 6.625, + 9.625, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 9.625, + 7.125, + 9.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.625, + 9.625, + 7.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.625, + 7, + 9.5, + 7.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.43541, + 8.53558, + 6.75485 + ], + "to": [ + 5.65867, + 9.69886, + 7.29319 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 5.54699, + 8.96805, + 7.02386 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 3.125, + 8.625, + 2.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 8.625, + 3.25, + 8 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 4.125, + 8.625, + 3.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 8.625, + 3.75, + 8 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.125, + 9.25, + 4, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.125, + 3.5, + 9, + 3.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.27754, + 8.53558, + 6.91207 + ], + "to": [ + 5.81589, + 9.69886, + 7.13533 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 5.54699, + 8.96805, + 7.02386 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 8.625, + 4.25, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 5.125, + 8.625, + 4.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 8.625, + 4.75, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 6.125, + 8.625, + 5.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 9.125, + 4.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 4, + 9, + 4.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.27764, + 8.53558, + 6.91215 + ], + "to": [ + 5.81599, + 9.69886, + 7.13541 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 5.54699, + 8.96805, + 7.02386 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 5.125, + 8.25, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 7.125, + 8.625, + 6.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 8.625, + 5.25, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 8.125, + 8.625, + 7.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 9.125, + 5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 4.5, + 9, + 4.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.43551, + 8.53558, + 6.75493 + ], + "to": [ + 5.65877, + 9.69886, + 7.29327 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 5.54699, + 8.96805, + 7.02386 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 9.125, + 8.125, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 8.625, + 5.75, + 8 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 9.125, + 8.625, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 6.125, + 8.25, + 5.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.625, + 9.25, + 5.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.125, + 5, + 9, + 5.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.49388, + 9.51558, + 6.89581 + ], + "to": [ + 5.60015, + 9.70546, + 7.15206 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 5.54699, + 8.96805, + 7.02386 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 1.125, + 9.625, + 1 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 9.625, + 1.625, + 9.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 1.625, + 9.625, + 1.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 2.125, + 9.625, + 2 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.125, + 9.625, + 3, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.625, + 2.5, + 9.5, + 2.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.41873, + 9.51558, + 6.97065 + ], + "to": [ + 5.67498, + 9.70546, + 7.07692 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 5.54699, + 8.96805, + 7.02386 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 3.125, + 9.625, + 3 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 9.625, + 3.625, + 9.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 3.625, + 9.625, + 3.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 9.625, + 4.125, + 9.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.625, + 9.625, + 4.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.625, + 4, + 9.5, + 4.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.41878, + 9.51558, + 6.97069 + ], + "to": [ + 5.67503, + 9.70546, + 7.07696 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 5.54699, + 8.96805, + 7.02386 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 4.625, + 9.625, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 9.625, + 5.125, + 9.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 5.125, + 9.625, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 9.625, + 5.625, + 9.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.125, + 9.625, + 6, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.625, + 5.5, + 9.5, + 5.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.49393, + 9.51558, + 6.89585 + ], + "to": [ + 5.6002, + 9.70546, + 7.1521 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 5.54699, + 8.96805, + 7.02386 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 6.125, + 9.625, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 9.625, + 6.625, + 9.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 6.625, + 9.625, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 9.625, + 7.125, + 9.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.625, + 9.625, + 7.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.625, + 7, + 9.5, + 7.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.63541, + 8.53558, + 6.75485 + ], + "to": [ + 6.85867, + 9.69886, + 7.29319 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.74699, + 8.96805, + 7.02386 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 3.125, + 8.625, + 2.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 8.625, + 3.25, + 8 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 4.125, + 8.625, + 3.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 8.625, + 3.75, + 8 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.125, + 9.25, + 4, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.125, + 3.5, + 9, + 3.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.47754, + 8.53558, + 6.91207 + ], + "to": [ + 7.01589, + 9.69886, + 7.13533 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.74699, + 8.96805, + 7.02386 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 8.625, + 4.25, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 5.125, + 8.625, + 4.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 8.625, + 4.75, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 6.125, + 8.625, + 5.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 9.125, + 4.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 4, + 9, + 4.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.47764, + 8.53558, + 6.91215 + ], + "to": [ + 7.01599, + 9.69886, + 7.13541 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 6.74699, + 8.96805, + 7.02386 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 5.125, + 8.25, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 7.125, + 8.625, + 6.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 8.625, + 5.25, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 8.125, + 8.625, + 7.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 9.125, + 5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 4.5, + 9, + 4.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.63551, + 8.53558, + 6.75493 + ], + "to": [ + 6.85877, + 9.69886, + 7.29327 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 6.74699, + 8.96805, + 7.02386 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 9.125, + 8.125, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 8.625, + 5.75, + 8 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 9.125, + 8.625, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 6.125, + 8.25, + 5.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.625, + 9.25, + 5.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.125, + 5, + 9, + 5.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.69388, + 9.51558, + 6.89581 + ], + "to": [ + 6.80015, + 9.70546, + 7.15206 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.74699, + 8.96805, + 7.02386 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 1.125, + 9.625, + 1 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 9.625, + 1.625, + 9.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 1.625, + 9.625, + 1.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 2.125, + 9.625, + 2 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.125, + 9.625, + 3, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.625, + 2.5, + 9.5, + 2.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.61873, + 9.51558, + 6.97065 + ], + "to": [ + 6.87498, + 9.70546, + 7.07692 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.74699, + 8.96805, + 7.02386 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 3.125, + 9.625, + 3 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 9.625, + 3.625, + 9.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 3.625, + 9.625, + 3.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 9.625, + 4.125, + 9.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.625, + 9.625, + 4.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.625, + 4, + 9.5, + 4.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.61878, + 9.51558, + 6.97069 + ], + "to": [ + 6.87503, + 9.70546, + 7.07696 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 6.74699, + 8.96805, + 7.02386 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 4.625, + 9.625, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 9.625, + 5.125, + 9.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 5.125, + 9.625, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 9.625, + 5.625, + 9.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.125, + 9.625, + 6, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.625, + 5.5, + 9.5, + 5.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.69393, + 9.51558, + 6.89585 + ], + "to": [ + 6.8002, + 9.70546, + 7.1521 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 6.74699, + 8.96805, + 7.02386 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 6.125, + 9.625, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 9.625, + 6.625, + 9.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 6.625, + 9.625, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 9.625, + 7.125, + 9.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.625, + 9.625, + 7.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.625, + 7, + 9.5, + 7.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.03541, + 8.53558, + 7.35485 + ], + "to": [ + 6.25867, + 9.69886, + 7.89319 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.14699, + 8.96805, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 3.125, + 8.625, + 2.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 8.625, + 3.25, + 8 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 4.125, + 8.625, + 3.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 8.625, + 3.75, + 8 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.125, + 9.25, + 4, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.125, + 3.5, + 9, + 3.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.87754, + 8.53558, + 7.51207 + ], + "to": [ + 6.41589, + 9.69886, + 7.73533 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.14699, + 8.96805, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 8.625, + 4.25, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 5.125, + 8.625, + 4.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 8.625, + 4.75, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 6.125, + 8.625, + 5.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 9.125, + 4.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 4, + 9, + 4.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.87764, + 8.53558, + 7.51215 + ], + "to": [ + 6.41599, + 9.69886, + 7.73541 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 6.14699, + 8.96805, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 5.125, + 8.25, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 7.125, + 8.625, + 6.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 8.625, + 5.25, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 8.125, + 8.625, + 7.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 9.125, + 5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 4.5, + 9, + 4.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.03551, + 8.53558, + 7.35493 + ], + "to": [ + 6.25877, + 9.69886, + 7.89327 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 6.14699, + 8.96805, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 9.125, + 8.125, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 8.625, + 5.75, + 8 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 9.125, + 8.625, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 6.125, + 8.25, + 5.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.625, + 9.25, + 5.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.125, + 5, + 9, + 5.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.09388, + 9.51558, + 7.49581 + ], + "to": [ + 6.20015, + 9.70546, + 7.75206 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.14699, + 8.96805, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 1.125, + 9.625, + 1 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 9.625, + 1.625, + 9.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 1.625, + 9.625, + 1.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 2.125, + 9.625, + 2 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.125, + 9.625, + 3, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.625, + 2.5, + 9.5, + 2.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.01873, + 9.51558, + 7.57065 + ], + "to": [ + 6.27498, + 9.70546, + 7.67692 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.14699, + 8.96805, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 3.125, + 9.625, + 3 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 9.625, + 3.625, + 9.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 3.625, + 9.625, + 3.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 9.625, + 4.125, + 9.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.625, + 9.625, + 4.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.625, + 4, + 9.5, + 4.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.01878, + 9.51558, + 7.57069 + ], + "to": [ + 6.27503, + 9.70546, + 7.67696 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 6.14699, + 8.96805, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 4.625, + 9.625, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 9.625, + 5.125, + 9.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 5.125, + 9.625, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 9.625, + 5.625, + 9.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.125, + 9.625, + 6, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.625, + 5.5, + 9.5, + 5.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.09393, + 9.51558, + 7.49585 + ], + "to": [ + 6.2002, + 9.70546, + 7.7521 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 6.14699, + 8.96805, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 6.125, + 9.625, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 9.625, + 6.625, + 9.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 6.625, + 9.625, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 9.625, + 7.125, + 9.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.625, + 9.625, + 7.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.625, + 7, + 9.5, + 7.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.03541, + 8.53558, + 6.15485 + ], + "to": [ + 6.25867, + 9.69886, + 6.69319 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.14699, + 8.96805, + 6.42386 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 3.125, + 8.625, + 2.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 8.625, + 3.25, + 8 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 4.125, + 8.625, + 3.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 8.625, + 3.75, + 8 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.125, + 9.25, + 4, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.125, + 3.5, + 9, + 3.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.87754, + 8.53558, + 6.31207 + ], + "to": [ + 6.41589, + 9.69886, + 6.53533 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.14699, + 8.96805, + 6.42386 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 8.625, + 4.25, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 5.125, + 8.625, + 4.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 8.625, + 4.75, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 6.125, + 8.625, + 5.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 9.125, + 4.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 4, + 9, + 4.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.87764, + 8.53558, + 6.31215 + ], + "to": [ + 6.41599, + 9.69886, + 6.53541 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 6.14699, + 8.96805, + 6.42386 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 5.125, + 8.25, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 7.125, + 8.625, + 6.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 8.625, + 5.25, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 8.125, + 8.625, + 7.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 9.125, + 5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 4.5, + 9, + 4.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.03551, + 8.53558, + 6.15493 + ], + "to": [ + 6.25877, + 9.69886, + 6.69327 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 6.14699, + 8.96805, + 6.42386 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 9.125, + 8.125, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 8.625, + 5.75, + 8 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 9.125, + 8.625, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 6.125, + 8.25, + 5.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.625, + 9.25, + 5.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.125, + 5, + 9, + 5.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.09388, + 9.51558, + 6.29581 + ], + "to": [ + 6.20015, + 9.70546, + 6.55206 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.14699, + 8.96805, + 6.42386 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 1.125, + 9.625, + 1 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 9.625, + 1.625, + 9.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 1.625, + 9.625, + 1.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 2.125, + 9.625, + 2 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.125, + 9.625, + 3, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.625, + 2.5, + 9.5, + 2.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.01873, + 9.51558, + 6.37065 + ], + "to": [ + 6.27498, + 9.70546, + 6.47692 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.14699, + 8.96805, + 6.42386 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 3.125, + 9.625, + 3 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 9.625, + 3.625, + 9.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 3.625, + 9.625, + 3.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 9.625, + 4.125, + 9.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.625, + 9.625, + 4.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.625, + 4, + 9.5, + 4.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.01878, + 9.51558, + 6.37069 + ], + "to": [ + 6.27503, + 9.70546, + 6.47696 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 6.14699, + 8.96805, + 6.42386 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 4.625, + 9.625, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 9.625, + 5.125, + 9.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 5.125, + 9.625, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 9.625, + 5.625, + 9.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.125, + 9.625, + 6, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.625, + 5.5, + 9.5, + 5.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.09393, + 9.51558, + 6.29585 + ], + "to": [ + 6.2002, + 9.70546, + 6.5521 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 6.14699, + 8.96805, + 6.42386 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 6.125, + 9.625, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 9.625, + 6.625, + 9.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 6.625, + 9.625, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 9.625, + 7.125, + 9.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.625, + 9.625, + 7.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.625, + 7, + 9.5, + 7.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.03541, + 8.53558, + 8.55485 + ], + "to": [ + 6.25867, + 9.69886, + 9.09319 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.14699, + 8.96805, + 8.82386 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 3.125, + 8.625, + 2.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 8.625, + 3.25, + 8 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 4.125, + 8.625, + 3.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 8.625, + 3.75, + 8 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.125, + 9.25, + 4, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.125, + 3.5, + 9, + 3.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.87754, + 8.53558, + 8.71207 + ], + "to": [ + 6.41589, + 9.69886, + 8.93533 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.14699, + 8.96805, + 8.82386 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 8.625, + 4.25, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 5.125, + 8.625, + 4.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 8.625, + 4.75, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 6.125, + 8.625, + 5.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 9.125, + 4.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 4, + 9, + 4.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.87764, + 8.53558, + 8.71215 + ], + "to": [ + 6.41599, + 9.69886, + 8.93541 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 6.14699, + 8.96805, + 8.82386 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 5.125, + 8.25, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 7.125, + 8.625, + 6.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 8.625, + 5.25, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 8.125, + 8.625, + 7.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 9.125, + 5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 4.5, + 9, + 4.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.03551, + 8.53558, + 8.55493 + ], + "to": [ + 6.25877, + 9.69886, + 9.09327 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 6.14699, + 8.96805, + 8.82386 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 9.125, + 8.125, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 8.625, + 5.75, + 8 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 9.125, + 8.625, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 6.125, + 8.25, + 5.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.625, + 9.25, + 5.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.125, + 5, + 9, + 5.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.09388, + 9.51558, + 8.69581 + ], + "to": [ + 6.20015, + 9.70546, + 8.95206 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.14699, + 8.96805, + 8.82386 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 1.125, + 9.625, + 1 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 9.625, + 1.625, + 9.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 1.625, + 9.625, + 1.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 2.125, + 9.625, + 2 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.125, + 9.625, + 3, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.625, + 2.5, + 9.5, + 2.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.01873, + 9.51558, + 8.77065 + ], + "to": [ + 6.27498, + 9.70546, + 8.87692 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.14699, + 8.96805, + 8.82386 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 3.125, + 9.625, + 3 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 9.625, + 3.625, + 9.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 3.625, + 9.625, + 3.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 9.625, + 4.125, + 9.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.625, + 9.625, + 4.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.625, + 4, + 9.5, + 4.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.01878, + 9.51558, + 8.77069 + ], + "to": [ + 6.27503, + 9.70546, + 8.87696 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 6.14699, + 8.96805, + 8.82386 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 4.625, + 9.625, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 9.625, + 5.125, + 9.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 5.125, + 9.625, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 9.625, + 5.625, + 9.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.125, + 9.625, + 6, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.625, + 5.5, + 9.5, + 5.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.09393, + 9.51558, + 8.69585 + ], + "to": [ + 6.2002, + 9.70546, + 8.9521 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 6.14699, + 8.96805, + 8.82386 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 6.125, + 9.625, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 9.625, + 6.625, + 9.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 6.625, + 9.625, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 9.625, + 7.125, + 9.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.625, + 9.625, + 7.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.625, + 7, + 9.5, + 7.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.25, + 8, + 6.1 + ], + "to": [ + 8.85, + 9.1, + 9.15 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.05, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1.75, + 0 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 1.5, + 0 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 1.75, + 0 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0, + 1.5, + 0 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 5.5, + 0, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 0, + 4, + 1.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.75, + 7.95, + 6 + ], + "to": [ + 10.85, + 8, + 9.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.05, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 6, + 5, + 8, + 5.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 7.5, + 5.625, + 7.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 5.5, + 8, + 5.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 7.5, + 7.625, + 7.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 1.625, + 0, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 2, + 0, + 3.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.75, + 9.7, + 6 + ], + "to": [ + 10.85, + 9.75, + 9.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.05, + 7.65, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 6, + 6, + 8, + 6.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 8, + 1.625, + 8.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 6.5, + 2, + 6.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 0, + 9.625, + 0.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 1.625, + 2, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 2, + 2, + 3.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.75, + 7.95, + 9.25 + ], + "to": [ + 10.85, + 9.75, + 9.3 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.05, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 1.5, + 6, + 2.375 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 8, + 6.125, + 8.875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 4, + 4, + 4.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 8, + 6.625, + 8.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 6.625, + 4, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 6.5, + 6, + 6.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.75, + 7.95, + 5.95 + ], + "to": [ + 10.85, + 9.75, + 6 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.05, + 8, + 8.7 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 2.5, + 6, + 3.375 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 6.5, + 8.125, + 7.375 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 3.5, + 6, + 4.375 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 8, + 7.125, + 8.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 7.125, + 0, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 7, + 2, + 7.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.05, + 8, + 6.1 + ], + "to": [ + 8.85, + 9.7, + 9.15 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.05, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 8, + 7.625, + 8.875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 0, + 7.625, + 0.875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 7.5, + 8.125, + 8.375 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 1, + 7.625, + 1.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.125, + 2.125, + 8, + 0.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.125, + 8, + 2, + 9.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 10.85, + 8, + 6 + ], + "to": [ + 10.85, + 9.7, + 9.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.05, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 0, + 0.875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 6, + 3.625, + 6.875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 0, + 0.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 2, + 7.625, + 2.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 1.625, + 0, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 0, + 1.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.15, + 8, + 6 + ], + "to": [ + 5.25, + 9.7, + 9.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.05, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 8.5, + 0.125, + 9.375 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 3, + 7.625, + 3.875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0.5, + 8.5, + 0.625, + 9.375 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 4, + 7.625, + 4.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.625, + 9.625, + 2.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.125, + 2.5, + 8, + 4.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.25, + 8, + 9.15 + ], + "to": [ + 8.85, + 9.7, + 9.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.05, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 4.5, + 5.75, + 5.375 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 0.5, + 8.625, + 1.375 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 5, + 3.75, + 5.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 8.5, + 1.125, + 9.375 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 7.125, + 4, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 7, + 6, + 7.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.25, + 8, + 6 + ], + "to": [ + 8.85, + 9.7, + 6.1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.05, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 5.5, + 1.75, + 6.375 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 8.5, + 1.625, + 9.375 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 5.5, + 5.75, + 6.375 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 1.5, + 8.625, + 2.375 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 7.625, + 0, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 7.5, + 2, + 7.625 + ], + "texture": "#0" + } + } + } + ], + "gui_light": "front", + "display": { + "firstperson_righthand": { + "rotation": [ + -174.72, + -59.12, + 111.9 + ], + "translation": [ + 0.25, + 2.25, + 0.25 + ] + }, + "firstperson_lefthand": { + "rotation": [ + 0, + 42.5, + 66.5 + ], + "translation": [ + 0.25, + 2.25, + 0.5 + ] + }, + "ground": { + "translation": [ + 0, + -2, + 0 + ], + "scale": [ + 0.8, + 0.8, + 0.8 + ] + }, + "gui": { + "rotation": [ + 45, + 35, + 0 + ], + "translation": [ + 0.5, + -2, + 0 + ], + "scale": [ + 2.2, + 2.2, + 2.2 + ] + }, + "head": { + "translation": [ + 0, + 6.25, + 0 + ] + }, + "fixed": { + "rotation": [ + 90, + 0, + -180 + ], + "translation": [ + 0, + -1.25, + 0 + ], + "scale": [ + 2.5, + 2.5, + 2.5 + ] + } + }, + "groups": [ + { + "name": "group", + "origin": [ + 8, + 0, + 8 + ], + "color": 0, + "children": [ + { + "name": "ammo", + "origin": [ + 8, + 0, + 8 + ], + "color": 0, + "children": [ + { + "name": "ammo", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15 + ] + }, + { + "name": "ammo", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "children": [ + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31 + ] + }, + { + "name": "ammo", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "children": [ + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39 + ] + }, + { + "name": "ammo", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "children": [ + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47 + ] + }, + { + "name": "ammo", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "children": [ + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63 + ] + }, + { + "name": "ammo", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "children": [ + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79 + ] + }, + { + "name": "ammo", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "children": [ + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95 + ] + }, + { + "name": "ammo", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "children": [ + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103 + ] + }, + { + "name": "ammo", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "children": [ + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111 + ] + }, + { + "name": "ammo", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "children": [ + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119 + ] + } + ] + }, + { + "name": "group", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "children": [ + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129 + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/custom/rifleammobox.json b/src/main/resources/assets/superbwarfare/models/custom/rifleammobox.json new file mode 100644 index 000000000..9be1b3f6c --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/custom/rifleammobox.json @@ -0,0 +1,5929 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 32, + 32 + ], + "elements": [ + { + "from": [ + 5.43541, + 9.18293, + 6.19305 + ], + "to": [ + 5.65867, + 9.72127, + 8.05633 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 5.54699, + 9.45226, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 4, + 10.625, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 6.5, + 5.875, + 6.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 10.5, + 4.625, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 9, + 3.875, + 9.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.625, + 10.375, + 1.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.125, + 9.5, + 2, + 10.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.27764, + 9.34072, + 6.19305 + ], + "to": [ + 5.81599, + 9.56397, + 8.05633 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 5.54699, + 9.45226, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 5, + 10.75, + 5.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 3.5, + 10.375, + 3.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 10.5, + 5.75, + 10.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 4, + 10.375, + 4.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 9.875, + 4.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 9, + 5, + 9.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.43551, + 9.18285, + 6.19305 + ], + "to": [ + 5.65877, + 9.72119, + 8.05633 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 5.54699, + 9.45226, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 5.5, + 10.625, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 5, + 9.875, + 5.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 10.5, + 6.125, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 9, + 6.375, + 9.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.625, + 10.375, + 3.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.625, + 9.5, + 5.5, + 10.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.27754, + 9.3408, + 6.19305 + ], + "to": [ + 5.81589, + 9.56405, + 8.05633 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 5.54699, + 9.45226, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 4.5, + 10.75, + 4.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 9.5, + 3.375, + 9.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 10.5, + 5.25, + 10.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 3, + 10.375, + 3.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 3.875, + 9, + 3 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 9, + 4, + 9.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.45223, + 9.22326, + 8.05633 + ], + "to": [ + 5.642, + 9.68085, + 8.87633 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 5.54699, + 9.45226, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 10.5, + 8.625, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 5, + 10.375, + 5.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 10.5, + 9.125, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 9.5, + 10.375, + 9.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.625, + 3.875, + 10.5, + 3.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.125, + 10.5, + 4, + 10.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.31805, + 9.35745, + 8.05633 + ], + "to": [ + 5.77564, + 9.54722, + 8.87633 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 5.54699, + 9.45226, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 7.5, + 10.75, + 7.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 3, + 10.875, + 3.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 10.5, + 8.25, + 10.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 10.5, + 3.875, + 10.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 4.875, + 10, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 10, + 5, + 10.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.31796, + 9.35752, + 8.05633 + ], + "to": [ + 5.77555, + 9.54728, + 8.87633 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 5.54699, + 9.45226, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 7, + 10.75, + 7.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 10.5, + 2.375, + 10.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 10.5, + 7.75, + 10.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 10.5, + 3.375, + 10.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 10.375, + 4, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 10, + 4.5, + 10.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.45215, + 9.22333, + 8.05633 + ], + "to": [ + 5.64191, + 9.68092, + 8.87633 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 5.54699, + 9.45226, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 6.5, + 10.5, + 6.625, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 4.5, + 9.875, + 4.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 10.5, + 7.125, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 10, + 3.375, + 10.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.125, + 10.375, + 10, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.625, + 10.5, + 1.5, + 10.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.55215, + 9.22333, + 8.05633 + ], + "to": [ + 6.74191, + 9.68092, + 8.87633 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.64699, + 9.45226, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 6.5, + 10.5, + 6.625, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 4.5, + 9.875, + 4.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 10.5, + 7.125, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 10, + 3.375, + 10.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.125, + 10.375, + 10, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.625, + 10.5, + 1.5, + 10.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.41796, + 9.35752, + 8.05633 + ], + "to": [ + 6.87555, + 9.54728, + 8.87633 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.64699, + 9.45226, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 7, + 10.75, + 7.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 10.5, + 2.375, + 10.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 10.5, + 7.75, + 10.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 10.5, + 3.375, + 10.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 10.375, + 4, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 10, + 4.5, + 10.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.41805, + 9.35745, + 8.05633 + ], + "to": [ + 6.87564, + 9.54722, + 8.87633 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 6.64699, + 9.45226, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 7.5, + 10.75, + 7.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 3, + 10.875, + 3.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 10.5, + 8.25, + 10.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 10.5, + 3.875, + 10.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 4.875, + 10, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 10, + 5, + 10.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.55223, + 9.22326, + 8.05633 + ], + "to": [ + 6.742, + 9.68085, + 8.87633 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 6.64699, + 9.45226, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 10.5, + 8.625, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 5, + 10.375, + 5.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 10.5, + 9.125, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 9.5, + 10.375, + 9.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.625, + 3.875, + 10.5, + 3.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.125, + 10.5, + 4, + 10.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.37754, + 9.3408, + 6.19305 + ], + "to": [ + 6.91589, + 9.56405, + 8.05633 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.64699, + 9.45226, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 4.5, + 10.75, + 4.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 9.5, + 3.375, + 9.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 10.5, + 5.25, + 10.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 3, + 10.375, + 3.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 3.875, + 9, + 3 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 9, + 4, + 9.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.53551, + 9.18285, + 6.19305 + ], + "to": [ + 6.75877, + 9.72119, + 8.05633 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 6.64699, + 9.45226, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 5.5, + 10.625, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 5, + 9.875, + 5.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 10.5, + 6.125, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 9, + 6.375, + 9.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.625, + 10.375, + 3.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.625, + 9.5, + 5.5, + 10.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.37764, + 9.34072, + 6.19305 + ], + "to": [ + 6.91599, + 9.56397, + 8.05633 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 6.64699, + 9.45226, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 5, + 10.75, + 5.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 3.5, + 10.375, + 3.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 10.5, + 5.75, + 10.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 4, + 10.375, + 4.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 9.875, + 4.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 9, + 5, + 9.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.53541, + 9.18293, + 6.19305 + ], + "to": [ + 6.75867, + 9.72127, + 8.05633 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.64699, + 9.45226, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 4, + 10.625, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 6.5, + 5.875, + 6.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 10.5, + 4.625, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 9, + 3.875, + 9.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.625, + 10.375, + 1.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.125, + 9.5, + 2, + 10.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.43541, + 8.63293, + 7.01398 + ], + "to": [ + 5.65867, + 9.17127, + 8.87726 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 5.54699, + 8.90226, + 7.44645 + ] + }, + "faces": { + "north": { + "uv": [ + 4.625, + 10.5, + 4.5, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.875, + 6.5, + 5, + 6.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.625, + 4, + 10.5, + 4.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.875, + 9, + 3, + 9.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.625, + 9.5, + 1.5, + 10.375 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.125, + 10.375, + 2, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.27764, + 8.79072, + 7.01398 + ], + "to": [ + 5.81599, + 9.01397, + 8.87726 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 5.54699, + 8.90226, + 7.44645 + ] + }, + "faces": { + "north": { + "uv": [ + 5.75, + 10.5, + 5.5, + 10.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.375, + 3.5, + 9.5, + 3.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 5, + 10.5, + 5.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.375, + 4, + 9.5, + 4.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 9, + 4.5, + 9.875 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 9.875, + 5, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.43551, + 8.63285, + 7.01398 + ], + "to": [ + 5.65877, + 9.17119, + 8.87726 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 5.54699, + 8.90226, + 7.44645 + ] + }, + "faces": { + "north": { + "uv": [ + 6.125, + 10.5, + 6, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.875, + 5, + 9, + 5.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.625, + 5.5, + 10.5, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.375, + 9, + 5.5, + 9.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.625, + 9.5, + 3.5, + 10.375 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.625, + 10.375, + 5.5, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.27754, + 8.7908, + 7.01398 + ], + "to": [ + 5.81589, + 9.01405, + 8.87726 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 5.54699, + 8.90226, + 7.44645 + ] + }, + "faces": { + "north": { + "uv": [ + 5.25, + 10.5, + 5, + 10.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.375, + 9.5, + 2.5, + 9.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 4.5, + 10.5, + 4.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.375, + 3, + 9.5, + 3.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 3, + 9, + 3.875 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 9.875, + 4, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.45223, + 8.67326, + 6.19398 + ], + "to": [ + 5.642, + 9.13085, + 7.01398 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 5.54699, + 8.90226, + 7.44645 + ] + }, + "faces": { + "north": { + "uv": [ + 9.125, + 10.5, + 9, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.375, + 5, + 10, + 5.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.625, + 10.5, + 8.5, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.375, + 9.5, + 10, + 9.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.625, + 3.5, + 10.5, + 3.875 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.125, + 10.875, + 4, + 10.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.31805, + 8.80745, + 6.19398 + ], + "to": [ + 5.77564, + 8.99722, + 7.01398 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 5.54699, + 8.90226, + 7.44645 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 10.5, + 8, + 10.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.875, + 3, + 10.5, + 3.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 7.5, + 10.5, + 7.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.875, + 10.5, + 3.5, + 10.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 4.5, + 10, + 4.875 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 10.375, + 5, + 10 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.31796, + 8.80752, + 6.19398 + ], + "to": [ + 5.77555, + 8.99728, + 7.01398 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 5.54699, + 8.90226, + 7.44645 + ] + }, + "faces": { + "north": { + "uv": [ + 7.75, + 10.5, + 7.5, + 10.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.375, + 10.5, + 2, + 10.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 7, + 10.5, + 7.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.375, + 10.5, + 3, + 10.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 10, + 4, + 10.375 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 10.375, + 4.5, + 10 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.45215, + 8.67333, + 6.19398 + ], + "to": [ + 5.64191, + 9.13092, + 7.01398 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 5.54699, + 8.90226, + 7.44645 + ] + }, + "faces": { + "north": { + "uv": [ + 7.125, + 10.5, + 7, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.875, + 4.5, + 9.5, + 4.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.625, + 10.5, + 6.5, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.375, + 10, + 3, + 10.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.125, + 10, + 10, + 10.375 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.625, + 10.875, + 1.5, + 10.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.55215, + 8.67333, + 6.19398 + ], + "to": [ + 6.74191, + 9.13092, + 7.01398 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.64699, + 8.90226, + 7.44645 + ] + }, + "faces": { + "north": { + "uv": [ + 7.125, + 10.5, + 7, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.875, + 4.5, + 9.5, + 4.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.625, + 10.5, + 6.5, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.375, + 10, + 3, + 10.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.125, + 10, + 10, + 10.375 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.625, + 10.875, + 1.5, + 10.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.41796, + 8.80752, + 6.19398 + ], + "to": [ + 6.87555, + 8.99728, + 7.01398 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.64699, + 8.90226, + 7.44645 + ] + }, + "faces": { + "north": { + "uv": [ + 7.75, + 10.5, + 7.5, + 10.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.375, + 10.5, + 2, + 10.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 7, + 10.5, + 7.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.375, + 10.5, + 3, + 10.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 10, + 4, + 10.375 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 10.375, + 4.5, + 10 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.41805, + 8.80745, + 6.19398 + ], + "to": [ + 6.87564, + 8.99722, + 7.01398 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 6.64699, + 8.90226, + 7.44645 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 10.5, + 8, + 10.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.875, + 3, + 10.5, + 3.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 7.5, + 10.5, + 7.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.875, + 10.5, + 3.5, + 10.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 4.5, + 10, + 4.875 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 10.375, + 5, + 10 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.55223, + 8.67326, + 6.19398 + ], + "to": [ + 6.742, + 9.13085, + 7.01398 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 6.64699, + 8.90226, + 7.44645 + ] + }, + "faces": { + "north": { + "uv": [ + 9.125, + 10.5, + 9, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.375, + 5, + 10, + 5.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.625, + 10.5, + 8.5, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.375, + 9.5, + 10, + 9.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.625, + 3.5, + 10.5, + 3.875 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.125, + 10.875, + 4, + 10.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.37754, + 8.7908, + 7.01398 + ], + "to": [ + 6.91589, + 9.01405, + 8.87726 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.64699, + 8.90226, + 7.44645 + ] + }, + "faces": { + "north": { + "uv": [ + 5.25, + 10.5, + 5, + 10.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.375, + 9.5, + 2.5, + 9.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 4.5, + 10.5, + 4.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.375, + 3, + 9.5, + 3.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 3, + 9, + 3.875 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 9.875, + 4, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.53551, + 8.63285, + 7.01398 + ], + "to": [ + 6.75877, + 9.17119, + 8.87726 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 6.64699, + 8.90226, + 7.44645 + ] + }, + "faces": { + "north": { + "uv": [ + 6.125, + 10.5, + 6, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.875, + 5, + 9, + 5.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.625, + 5.5, + 10.5, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.375, + 9, + 5.5, + 9.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.625, + 9.5, + 3.5, + 10.375 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.625, + 10.375, + 5.5, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.37764, + 8.79072, + 7.01398 + ], + "to": [ + 6.91599, + 9.01397, + 8.87726 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 6.64699, + 8.90226, + 7.44645 + ] + }, + "faces": { + "north": { + "uv": [ + 5.75, + 10.5, + 5.5, + 10.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.375, + 3.5, + 9.5, + 3.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 5, + 10.5, + 5.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.375, + 4, + 9.5, + 4.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 9, + 4.5, + 9.875 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 9.875, + 5, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.53541, + 8.63293, + 7.01398 + ], + "to": [ + 6.75867, + 9.17127, + 8.87726 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.64699, + 8.90226, + 7.44645 + ] + }, + "faces": { + "north": { + "uv": [ + 4.625, + 10.5, + 4.5, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.875, + 6.5, + 5, + 6.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.625, + 4, + 10.5, + 4.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.875, + 9, + 3, + 9.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.625, + 9.5, + 1.5, + 10.375 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.125, + 10.375, + 2, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.98541, + 9.18293, + 6.19305 + ], + "to": [ + 6.20867, + 9.72127, + 8.05633 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.09699, + 9.45226, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 4, + 10.625, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 6.5, + 5.875, + 6.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 10.5, + 4.625, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 9, + 3.875, + 9.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.625, + 10.375, + 1.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.125, + 9.5, + 2, + 10.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.82754, + 9.3408, + 6.19305 + ], + "to": [ + 6.36589, + 9.56405, + 8.05633 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.09699, + 9.45226, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 4.5, + 10.75, + 4.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 9.5, + 3.375, + 9.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 10.5, + 5.25, + 10.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 3, + 10.375, + 3.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 3.875, + 9, + 3 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 9, + 4, + 9.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.82764, + 9.34072, + 6.19305 + ], + "to": [ + 6.36599, + 9.56397, + 8.05633 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 6.09699, + 9.45226, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 5, + 10.75, + 5.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 3.5, + 10.375, + 3.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 10.5, + 5.75, + 10.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 4, + 10.375, + 4.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 9.875, + 4.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 9, + 5, + 9.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.98551, + 9.18285, + 6.19305 + ], + "to": [ + 6.20877, + 9.72119, + 8.05633 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 6.09699, + 9.45226, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 5.5, + 10.625, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 5, + 9.875, + 5.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 10.5, + 6.125, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 9, + 6.375, + 9.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.625, + 10.375, + 3.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.625, + 9.5, + 5.5, + 10.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.00215, + 9.22333, + 8.05633 + ], + "to": [ + 6.19191, + 9.68092, + 8.87633 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.09699, + 9.45226, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 6.5, + 10.5, + 6.625, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 4.5, + 9.875, + 4.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 10.5, + 7.125, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 10, + 3.375, + 10.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.125, + 10.375, + 10, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.625, + 10.5, + 1.5, + 10.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.86796, + 9.35752, + 8.05633 + ], + "to": [ + 6.32555, + 9.54728, + 8.87633 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.09699, + 9.45226, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 7, + 10.75, + 7.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 10.5, + 2.375, + 10.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 10.5, + 7.75, + 10.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 10.5, + 3.375, + 10.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 10.375, + 4, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 10, + 4.5, + 10.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.86805, + 9.35745, + 8.05633 + ], + "to": [ + 6.32564, + 9.54722, + 8.87633 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 6.09699, + 9.45226, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 7.5, + 10.75, + 7.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 3, + 10.875, + 3.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 10.5, + 8.25, + 10.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 10.5, + 3.875, + 10.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 4.875, + 10, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 10, + 5, + 10.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.00223, + 9.22326, + 8.05633 + ], + "to": [ + 6.192, + 9.68085, + 8.87633 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 6.09699, + 9.45226, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 10.5, + 8.625, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 5, + 10.375, + 5.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 10.5, + 9.125, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 9.5, + 10.375, + 9.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.625, + 3.875, + 10.5, + 3.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.125, + 10.5, + 4, + 10.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.10223, + 9.22326, + 8.05633 + ], + "to": [ + 7.292, + 9.68085, + 8.87633 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.19699, + 9.45226, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 10.5, + 8.625, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 5, + 10.375, + 5.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 10.5, + 9.125, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 9.5, + 10.375, + 9.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.625, + 3.875, + 10.5, + 3.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.125, + 10.5, + 4, + 10.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.96805, + 9.35745, + 8.05633 + ], + "to": [ + 7.42564, + 9.54722, + 8.87633 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.19699, + 9.45226, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 7.5, + 10.75, + 7.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 3, + 10.875, + 3.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 10.5, + 8.25, + 10.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 10.5, + 3.875, + 10.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 4.875, + 10, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 10, + 5, + 10.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.96796, + 9.35752, + 8.05633 + ], + "to": [ + 7.42555, + 9.54728, + 8.87633 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 7.19699, + 9.45226, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 7, + 10.75, + 7.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 10.5, + 2.375, + 10.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 10.5, + 7.75, + 10.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 10.5, + 3.375, + 10.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 10.375, + 4, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 10, + 4.5, + 10.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.10215, + 9.22333, + 8.05633 + ], + "to": [ + 7.29191, + 9.68092, + 8.87633 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 7.19699, + 9.45226, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 6.5, + 10.5, + 6.625, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 4.5, + 9.875, + 4.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 10.5, + 7.125, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 10, + 3.375, + 10.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.125, + 10.375, + 10, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.625, + 10.5, + 1.5, + 10.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.08551, + 9.18285, + 6.19305 + ], + "to": [ + 7.30877, + 9.72119, + 8.05633 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.19699, + 9.45226, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 5.5, + 10.625, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 5, + 9.875, + 5.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 10.5, + 6.125, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 9, + 6.375, + 9.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.625, + 10.375, + 3.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.625, + 9.5, + 5.5, + 10.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.92764, + 9.34072, + 6.19305 + ], + "to": [ + 7.46599, + 9.56397, + 8.05633 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.19699, + 9.45226, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 5, + 10.75, + 5.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 3.5, + 10.375, + 3.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 10.5, + 5.75, + 10.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 4, + 10.375, + 4.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 9.875, + 4.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 9, + 5, + 9.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.92754, + 9.3408, + 6.19305 + ], + "to": [ + 7.46589, + 9.56405, + 8.05633 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 7.19699, + 9.45226, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 4.5, + 10.75, + 4.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 9.5, + 3.375, + 9.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 10.5, + 5.25, + 10.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 3, + 10.375, + 3.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 3.875, + 9, + 3 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 9, + 4, + 9.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.08541, + 9.18293, + 6.19305 + ], + "to": [ + 7.30867, + 9.72127, + 8.05633 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 7.19699, + 9.45226, + 7.62386 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 4, + 10.625, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 6.5, + 5.875, + 6.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 10.5, + 4.625, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 9, + 3.875, + 9.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.625, + 10.375, + 1.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.125, + 9.5, + 2, + 10.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.98541, + 8.63293, + 7.01398 + ], + "to": [ + 6.20867, + 9.17127, + 8.87726 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.09699, + 8.90226, + 7.44645 + ] + }, + "faces": { + "north": { + "uv": [ + 4.625, + 10.5, + 4.5, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.875, + 6.5, + 5, + 6.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.625, + 4, + 10.5, + 4.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.875, + 9, + 3, + 9.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.625, + 9.5, + 1.5, + 10.375 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.125, + 10.375, + 2, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.82754, + 8.7908, + 7.01398 + ], + "to": [ + 6.36589, + 9.01405, + 8.87726 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.09699, + 8.90226, + 7.44645 + ] + }, + "faces": { + "north": { + "uv": [ + 5.25, + 10.5, + 5, + 10.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.375, + 9.5, + 2.5, + 9.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 4.5, + 10.5, + 4.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.375, + 3, + 9.5, + 3.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 3, + 9, + 3.875 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 9.875, + 4, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.82764, + 8.79072, + 7.01398 + ], + "to": [ + 6.36599, + 9.01397, + 8.87726 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 6.09699, + 8.90226, + 7.44645 + ] + }, + "faces": { + "north": { + "uv": [ + 5.75, + 10.5, + 5.5, + 10.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.375, + 3.5, + 9.5, + 3.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 5, + 10.5, + 5.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.375, + 4, + 9.5, + 4.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 9, + 4.5, + 9.875 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 9.875, + 5, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.98551, + 8.63285, + 7.01398 + ], + "to": [ + 6.20877, + 9.17119, + 8.87726 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 6.09699, + 8.90226, + 7.44645 + ] + }, + "faces": { + "north": { + "uv": [ + 6.125, + 10.5, + 6, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.875, + 5, + 9, + 5.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.625, + 5.5, + 10.5, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.375, + 9, + 5.5, + 9.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.625, + 9.5, + 3.5, + 10.375 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.625, + 10.375, + 5.5, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.00215, + 8.67333, + 6.19398 + ], + "to": [ + 6.19191, + 9.13092, + 7.01398 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.09699, + 8.90226, + 7.44645 + ] + }, + "faces": { + "north": { + "uv": [ + 7.125, + 10.5, + 7, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.875, + 4.5, + 9.5, + 4.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.625, + 10.5, + 6.5, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.375, + 10, + 3, + 10.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.125, + 10, + 10, + 10.375 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.625, + 10.875, + 1.5, + 10.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.86796, + 8.80752, + 6.19398 + ], + "to": [ + 6.32555, + 8.99728, + 7.01398 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.09699, + 8.90226, + 7.44645 + ] + }, + "faces": { + "north": { + "uv": [ + 7.75, + 10.5, + 7.5, + 10.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.375, + 10.5, + 2, + 10.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 7, + 10.5, + 7.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.375, + 10.5, + 3, + 10.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 10, + 4, + 10.375 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 10.375, + 4.5, + 10 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.86805, + 8.80745, + 6.19398 + ], + "to": [ + 6.32564, + 8.99722, + 7.01398 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 6.09699, + 8.90226, + 7.44645 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 10.5, + 8, + 10.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.875, + 3, + 10.5, + 3.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 7.5, + 10.5, + 7.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.875, + 10.5, + 3.5, + 10.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 4.5, + 10, + 4.875 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 10.375, + 5, + 10 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.00223, + 8.67326, + 6.19398 + ], + "to": [ + 6.192, + 9.13085, + 7.01398 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 6.09699, + 8.90226, + 7.44645 + ] + }, + "faces": { + "north": { + "uv": [ + 9.125, + 10.5, + 9, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.375, + 5, + 10, + 5.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.625, + 10.5, + 8.5, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.375, + 9.5, + 10, + 9.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.625, + 3.5, + 10.5, + 3.875 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.125, + 10.875, + 4, + 10.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.10223, + 8.67326, + 6.19398 + ], + "to": [ + 7.292, + 9.13085, + 7.01398 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.19699, + 8.90226, + 7.44645 + ] + }, + "faces": { + "north": { + "uv": [ + 9.125, + 10.5, + 9, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.375, + 5, + 10, + 5.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.625, + 10.5, + 8.5, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.375, + 9.5, + 10, + 9.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.625, + 3.5, + 10.5, + 3.875 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.125, + 10.875, + 4, + 10.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.96805, + 8.80745, + 6.19398 + ], + "to": [ + 7.42564, + 8.99722, + 7.01398 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.19699, + 8.90226, + 7.44645 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 10.5, + 8, + 10.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.875, + 3, + 10.5, + 3.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 7.5, + 10.5, + 7.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.875, + 10.5, + 3.5, + 10.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 4.5, + 10, + 4.875 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 10.375, + 5, + 10 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.96796, + 8.80752, + 6.19398 + ], + "to": [ + 7.42555, + 8.99728, + 7.01398 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 7.19699, + 8.90226, + 7.44645 + ] + }, + "faces": { + "north": { + "uv": [ + 7.75, + 10.5, + 7.5, + 10.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.375, + 10.5, + 2, + 10.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 7, + 10.5, + 7.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.375, + 10.5, + 3, + 10.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 10, + 4, + 10.375 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 10.375, + 4.5, + 10 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.10215, + 8.67333, + 6.19398 + ], + "to": [ + 7.29191, + 9.13092, + 7.01398 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 7.19699, + 8.90226, + 7.44645 + ] + }, + "faces": { + "north": { + "uv": [ + 7.125, + 10.5, + 7, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.875, + 4.5, + 9.5, + 4.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.625, + 10.5, + 6.5, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.375, + 10, + 3, + 10.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.125, + 10, + 10, + 10.375 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.625, + 10.875, + 1.5, + 10.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.08551, + 8.63285, + 7.01398 + ], + "to": [ + 7.30877, + 9.17119, + 8.87726 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.19699, + 8.90226, + 7.44645 + ] + }, + "faces": { + "north": { + "uv": [ + 6.125, + 10.5, + 6, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.875, + 5, + 9, + 5.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.625, + 5.5, + 10.5, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.375, + 9, + 5.5, + 9.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.625, + 9.5, + 3.5, + 10.375 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.625, + 10.375, + 5.5, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.92764, + 8.79072, + 7.01398 + ], + "to": [ + 7.46599, + 9.01397, + 8.87726 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.19699, + 8.90226, + 7.44645 + ] + }, + "faces": { + "north": { + "uv": [ + 5.75, + 10.5, + 5.5, + 10.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.375, + 3.5, + 9.5, + 3.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 5, + 10.5, + 5.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.375, + 4, + 9.5, + 4.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 9, + 4.5, + 9.875 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 9.875, + 5, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.92754, + 8.7908, + 7.01398 + ], + "to": [ + 7.46589, + 9.01405, + 8.87726 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 7.19699, + 8.90226, + 7.44645 + ] + }, + "faces": { + "north": { + "uv": [ + 5.25, + 10.5, + 5, + 10.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.375, + 9.5, + 2.5, + 9.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 4.5, + 10.5, + 4.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.375, + 3, + 9.5, + 3.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 3, + 9, + 3.875 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 9.875, + 4, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.08541, + 8.63293, + 7.01398 + ], + "to": [ + 7.30867, + 9.17127, + 8.87726 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 7.19699, + 8.90226, + 7.44645 + ] + }, + "faces": { + "north": { + "uv": [ + 4.625, + 10.5, + 4.5, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.875, + 6.5, + 5, + 6.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.625, + 4, + 10.5, + 4.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.875, + 9, + 3, + 9.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.625, + 9.5, + 1.5, + 10.375 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.125, + 10.375, + 2, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.15, + 7.95, + 6 + ], + "to": [ + 12.95, + 8, + 9.05 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.05, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 5.5, + 8, + 8.375, + 8.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 5.5, + 10.5, + 5.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 6, + 10.875, + 6.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 9, + 8, + 9.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.875, + 1.5, + 0, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.875, + 1.5, + 0, + 3 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.15, + 7.95, + 9.05 + ], + "to": [ + 12.95, + 9.75, + 9.1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.05, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 4.5, + 2.875, + 5.375 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 9.5, + 6.125, + 10.375 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 4.5, + 5.875, + 5.375 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 9.5, + 6.625, + 10.375 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.875, + 6.625, + 8, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.875, + 8.5, + 0, + 8.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.15, + 7.95, + 5.95 + ], + "to": [ + 12.95, + 9.75, + 6 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.05, + 8, + 8.7 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 5.5, + 2.875, + 6.375 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 9.5, + 7.125, + 10.375 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 5.5, + 5.875, + 6.375 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 9.5, + 7.625, + 10.375 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.375, + 8.625, + 5.5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.375, + 8, + 8.5, + 8.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.15, + 9.7, + 6 + ], + "to": [ + 12.95, + 9.75, + 9.05 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.05, + 7.65, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 8.5, + 11.375, + 8.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 7, + 10.5, + 7.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 9, + 2.875, + 9.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 7.5, + 10.5, + 7.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.875, + 4.5, + 0, + 3 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.875, + 0, + 3, + 1.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 11.25, + 8, + 6 + ], + "to": [ + 12.95, + 9.7, + 9.05 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.05, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 4.5, + 8, + 5.375, + 8.875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 6.5, + 1.5, + 7.375 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 5, + 8.875, + 5.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 6.5, + 3, + 7.375 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.875, + 8, + 3, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.875, + 6.5, + 4, + 8 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.25, + 8, + 6.1 + ], + "to": [ + 10.9, + 8.1, + 8.95 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.05, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 0, + 11.875, + 0.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 9, + 10.375, + 9.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 0.5, + 11.875, + 0.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 9.5, + 1.375, + 9.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.875, + 2.875, + 3, + 1.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.875, + 3, + 3, + 4.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 8.1, + 6.1 + ], + "to": [ + 10.9, + 9.7, + 8.95 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.05, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 7, + 6.75, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 8, + 4.375, + 8.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 7, + 8.75, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 4, + 9.375, + 4.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 5.375, + 6, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 5.5, + 6, + 6.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.15, + 8, + 6 + ], + "to": [ + 5.25, + 9.7, + 9.05 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.05, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 9.5, + 9.125, + 10.375 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 7.5, + 1.5, + 8.375 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 9.5, + 9.625, + 10.375 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 7.5, + 3, + 8.375 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.125, + 10.5, + 8, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.625, + 9, + 8.5, + 10.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.25, + 8, + 8.95 + ], + "to": [ + 10.9, + 9.7, + 9.05 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.05, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 6, + 0, + 8.875, + 0.875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 10, + 0.125, + 10.875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 1, + 8.875, + 1.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.5, + 10, + 0.625, + 10.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 11.875, + 1.125, + 9, + 1 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.875, + 1.5, + 9, + 1.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.25, + 8, + 6 + ], + "to": [ + 10.9, + 9.7, + 6.1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.05, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 6, + 2, + 8.875, + 2.875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 10, + 1.125, + 10.875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 3, + 8.875, + 3.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 10, + 2.625, + 10.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 11.875, + 2.125, + 9, + 2 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.875, + 2.5, + 9, + 2.625 + ], + "texture": "#0" + } + } + } + ], + "gui_light": "front", + "display": { + "firstperson_righthand": { + "rotation": [ + -176.93, + -29.4, + 108.89 + ], + "translation": [ + 0.25, + 2.25, + 0.25 + ] + }, + "firstperson_lefthand": { + "rotation": [ + 0, + 27.75, + 66.5 + ], + "translation": [ + 0.25, + 2.25, + 0.5 + ] + }, + "ground": { + "translation": [ + 0, + -2, + 0 + ], + "scale": [ + 0.9, + 0.9, + 0.9 + ] + }, + "gui": { + "rotation": [ + -135, + 145, + -180 + ], + "translation": [ + -1, + -2.5, + 0 + ], + "scale": [ + 1.8, + 1.8, + 1.8 + ] + }, + "head": { + "translation": [ + 0, + 6.25, + 0 + ] + }, + "fixed": { + "rotation": [ + -90, + 0, + 0 + ], + "translation": [ + -2.75, + 0.75, + 0 + ], + "scale": [ + 2.5, + 2.5, + 2.5 + ] + } + }, + "groups": [ + { + "name": "group", + "origin": [ + 8, + 0, + 8 + ], + "color": 0, + "children": [ + { + "name": "ammo", + "origin": [ + 8, + 0, + 8 + ], + "color": 0, + "children": [ + { + "name": "ammo", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "children": [ + 0, + 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, + 31 + ] + }, + { + "name": "ammo", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "children": [ + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63 + ] + } + ] + }, + { + "name": "group", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "children": [ + { + "name": "group", + "origin": [ + 7.05, + 8, + 8 + ], + "color": 0, + "children": [ + 64, + 65, + 66, + 67, + 68 + ] + }, + 69, + 70, + 71, + 72, + 73 + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/custom/rpg7_rocket.json b/src/main/resources/assets/superbwarfare/models/custom/rpg7_rocket.json new file mode 100644 index 000000000..86fb2afa1 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/custom/rpg7_rocket.json @@ -0,0 +1,2803 @@ +{ + "credit": "Made with Blockbench", + "ambientocclusion": false, + "texture_size": [ + 128, + 128 + ], + "elements": [ + { + "name": "octagon", + "from": [ + 7.81216, + 5.00038, + 9.03998 + ], + "to": [ + 8.18784, + 5.90732, + 19.03998 + ], + "rotation": { + "angle": 22.5, + "axis": "z", + "origin": [ + 8, + 5.45385, + 4.59919 + ] + }, + "faces": { + "south": { + "uv": [ + 0.75, + 8.25, + 0.8125, + 8.375 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2.9375, + 5, + 2.875, + 3.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.1875, + 3.75, + 3.125, + 5 + ], + "texture": "#1" + } + } + }, + { + "name": "octagon", + "from": [ + 7.81216, + 5.00038, + 9.03998 + ], + "to": [ + 8.18784, + 5.90732, + 19.03998 + ], + "rotation": { + "angle": -22.5, + "axis": "z", + "origin": [ + 8, + 5.45385, + 4.59919 + ] + }, + "faces": { + "south": { + "uv": [ + 8.25, + 1.5, + 8.3125, + 1.625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 3.8125, + 4.5, + 3.75, + 3.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.8125, + 3.875, + 1.75, + 5.125 + ], + "texture": "#1" + } + } + }, + { + "name": "octagon", + "from": [ + 7.54653, + 5.26601, + 9.03998 + ], + "to": [ + 8.45347, + 5.64168, + 19.03998 + ], + "rotation": { + "angle": 22.5, + "axis": "z", + "origin": [ + 8, + 5.45385, + 4.59919 + ] + }, + "faces": { + "east": { + "uv": [ + 3.625, + 1.375, + 4.875, + 1.4375 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.25, + 2.125, + 8.375, + 2.1875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.875, + 2.75, + 5.125, + 2.8125 + ], + "texture": "#1" + } + } + }, + { + "name": "octagon", + "from": [ + 7.54653, + 5.26601, + 9.03998 + ], + "to": [ + 8.45347, + 5.64168, + 19.03998 + ], + "rotation": { + "angle": -22.5, + "axis": "z", + "origin": [ + 8, + 5.45385, + 4.59919 + ] + }, + "faces": { + "east": { + "uv": [ + 3.875, + 3, + 5.125, + 3.0625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.25, + 2.375, + 8.375, + 2.4375 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4, + 0, + 5.25, + 0.0625 + ], + "texture": "#1" + } + } + }, + { + "name": "octagon", + "from": [ + 7.6921, + 4.71044, + -6.84912 + ], + "to": [ + 8.30796, + 6.19724, + -1.10878 + ], + "rotation": { + "angle": 22.5, + "axis": "z", + "origin": [ + 8, + 5.45376, + -8.64272 + ] + }, + "faces": { + "south": { + "uv": [ + 2.875, + 8, + 2.9375, + 8.1875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.375, + 0.75, + 2.0625, + 0.9375 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0.3125, + 6.5625, + 0.25, + 5.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.5625, + 5.875, + 0.5, + 6.5625 + ], + "texture": "#1" + } + } + }, + { + "name": "octagon", + "from": [ + 7.69204, + 4.71044, + -6.84912 + ], + "to": [ + 8.3079, + 6.19724, + -1.10878 + ], + "rotation": { + "angle": -22.5, + "axis": "z", + "origin": [ + 8, + 5.45376, + -8.64272 + ] + }, + "faces": { + "east": { + "uv": [ + 1.375, + 1.125, + 2.0625, + 1.3125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3.125, + 8, + 3.1875, + 8.1875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0.8125, + 6.5625, + 0.75, + 5.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.0625, + 5.875, + 1, + 6.5625 + ], + "texture": "#1" + } + } + }, + { + "name": "octagon", + "from": [ + 7.25663, + 5.14591, + -6.84912 + ], + "to": [ + 8.74343, + 5.76176, + -1.10878 + ], + "rotation": { + "angle": 22.5, + "axis": "z", + "origin": [ + 8, + 5.45376, + -8.64272 + ] + }, + "faces": { + "east": { + "uv": [ + 5.75, + 4, + 6.4375, + 4.0625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 2.625, + 8.1875, + 2.6875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.875, + 0, + 6.5625, + 0.0625 + ], + "texture": "#1" + } + } + }, + { + "name": "octagon", + "from": [ + 7.25657, + 5.14591, + -6.84912 + ], + "to": [ + 8.74337, + 5.76176, + -1.10878 + ], + "rotation": { + "angle": -22.5, + "axis": "z", + "origin": [ + 8, + 5.45376, + -8.64272 + ] + }, + "faces": { + "east": { + "uv": [ + 1.25, + 5.875, + 1.9375, + 5.9375 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 3.125, + 8.1875, + 3.1875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.875, + 1.75, + 6.5625, + 1.8125 + ], + "texture": "#1" + } + } + }, + { + "name": "octagon", + "from": [ + 7.40975, + 4.02876, + -7.90958 + ], + "to": [ + 8.59025, + 6.87876, + -6.71958 + ], + "rotation": { + "angle": 22.5, + "axis": "z", + "origin": [ + 8, + 5.45376, + -8.64272 + ] + }, + "faces": { + "north": { + "uv": [ + 2.25, + 5.25, + 2.375, + 5.625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4, + 5.375, + 4.125, + 5.75 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5.5, + 3.25, + 5.625, + 3.625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.5, + 5.5, + 3.625, + 5.875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4.875, + 7.5, + 4.75, + 7.375 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.125, + 7.375, + 5, + 7.5 + ], + "texture": "#1" + } + } + }, + { + "name": "octagon", + "from": [ + 7.81216, + 5.00038, + -1.99788 + ], + "to": [ + 8.18784, + 5.90732, + 9.03998 + ], + "rotation": { + "angle": 22.5, + "axis": "z", + "origin": [ + 8, + 5.45385, + 4.62383 + ] + }, + "faces": { + "south": { + "uv": [ + 4.875, + 8.625, + 4.9375, + 8.75 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2.0625, + 5.125, + 2, + 3.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.3125, + 3.75, + 2.25, + 5.125 + ], + "texture": "#1" + } + } + }, + { + "name": "octagon", + "from": [ + 7.81216, + 5.00038, + -1.99788 + ], + "to": [ + 8.18784, + 5.90732, + 9.03998 + ], + "rotation": { + "angle": -22.5, + "axis": "z", + "origin": [ + 8, + 5.45385, + 4.62383 + ] + }, + "faces": { + "south": { + "uv": [ + 8.625, + 4.625, + 8.6875, + 4.75 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0.8125, + 4.625, + 0.75, + 3.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.5625, + 3.25, + 3.5, + 4.625 + ], + "texture": "#1" + } + } + }, + { + "name": "octagon", + "from": [ + 7.54653, + 5.26601, + -1.99788 + ], + "to": [ + 8.45347, + 5.64168, + 9.03998 + ], + "rotation": { + "angle": 22.5, + "axis": "z", + "origin": [ + 8, + 5.45385, + 4.62383 + ] + }, + "faces": { + "east": { + "uv": [ + 3.375, + 1.75, + 4.75, + 1.8125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.625, + 4.375, + 8.75, + 4.4375 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2, + 3.5, + 3.375, + 3.5625 + ], + "texture": "#1" + } + } + }, + { + "name": "octagon", + "from": [ + 7.54653, + 5.26601, + -1.99788 + ], + "to": [ + 8.45347, + 5.64168, + 9.03998 + ], + "rotation": { + "angle": -22.5, + "axis": "z", + "origin": [ + 8, + 5.45385, + 4.62383 + ] + }, + "faces": { + "east": { + "uv": [ + 3.125, + 0.5, + 4.5, + 0.5625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 4.375, + 8.625, + 4.5, + 8.6875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2, + 3.25, + 3.375, + 3.3125 + ], + "texture": "#1" + } + } + }, + { + "name": "octagon", + "from": [ + 7.40975, + 4.02876, + -7.90958 + ], + "to": [ + 8.59025, + 6.87876, + -6.71958 + ], + "rotation": { + "angle": -22.5, + "axis": "z", + "origin": [ + 8, + 5.45376, + -8.64272 + ] + }, + "faces": { + "north": { + "uv": [ + 4.25, + 5.625, + 4.375, + 6 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.625, + 4.25, + 5.75, + 4.625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 4.5, + 5.625, + 4.625, + 6 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.625, + 4.75, + 5.75, + 5.125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.5, + 5.75, + 7.375, + 5.625 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.5, + 5.875, + 7.375, + 6 + ], + "texture": "#1" + } + } + }, + { + "name": "octagon", + "from": [ + 6.575, + 4.8635, + -7.90958 + ], + "to": [ + 9.425, + 6.04401, + -6.71958 + ], + "rotation": { + "angle": 22.5, + "axis": "z", + "origin": [ + 8, + 5.45376, + -8.64272 + ] + }, + "faces": { + "north": { + "uv": [ + 5.375, + 0, + 5.75, + 0.125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.375, + 6.125, + 7.5, + 6.25 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5.375, + 1.75, + 5.75, + 1.875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.25, + 7.5, + 2.375, + 7.625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5.875, + 3.875, + 5.5, + 3.75 + ], + "texture": "#1" + } + } + }, + { + "name": "octagon", + "from": [ + 6.575, + 4.8635, + -7.90958 + ], + "to": [ + 9.425, + 6.04401, + -6.71958 + ], + "rotation": { + "angle": -22.5, + "axis": "z", + "origin": [ + 8, + 5.45376, + -8.64272 + ] + }, + "faces": { + "north": { + "uv": [ + 5.125, + 5.625, + 5.5, + 5.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.5, + 7.5, + 2.625, + 7.625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5.625, + 5.25, + 6, + 5.375 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.5, + 4, + 7.625, + 4.125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6, + 5.625, + 5.625, + 5.5 + ], + "texture": "#1" + } + } + }, + { + "name": "octagon", + "from": [ + 7.48058, + 4.19976, + -8.93558 + ], + "to": [ + 8.51942, + 6.70776, + -5.80758 + ], + "rotation": { + "angle": 22.5, + "axis": "z", + "origin": [ + 8, + 5.45376, + -8.64272 + ] + }, + "faces": { + "north": { + "uv": [ + 1.75, + 6.125, + 1.875, + 6.4375 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 2, + 6.125, + 2.125, + 6.4375 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5.875, + 1.625, + 5.75, + 1.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.375, + 5.75, + 2.25, + 6.125 + ], + "texture": "#1" + } + } + }, + { + "name": "octagon", + "from": [ + 7.48058, + 4.19976, + -8.93558 + ], + "to": [ + 8.51942, + 6.70776, + -5.80758 + ], + "rotation": { + "angle": -22.5, + "axis": "z", + "origin": [ + 8, + 5.45376, + -8.64272 + ] + }, + "faces": { + "north": { + "uv": [ + 4.25, + 6.125, + 4.375, + 6.4375 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 4.5, + 6.125, + 4.625, + 6.4375 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5.875, + 2.625, + 5.75, + 2.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.625, + 5.75, + 2.5, + 6.125 + ], + "texture": "#1" + } + } + }, + { + "name": "octagon", + "from": [ + 6.746, + 4.93433, + -8.93558 + ], + "to": [ + 9.254, + 5.97318, + -5.80758 + ], + "rotation": { + "angle": 22.5, + "axis": "z", + "origin": [ + 8, + 5.45376, + -8.64272 + ] + }, + "faces": { + "north": { + "uv": [ + 6.125, + 2, + 6.4375, + 2.125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.75, + 2.75, + 6.125, + 2.875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 6.125, + 4.75, + 6.4375, + 4.875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.75, + 3, + 6.125, + 3.125 + ], + "texture": "#1" + } + } + }, + { + "name": "octagon", + "from": [ + 6.746, + 4.93433, + -8.93558 + ], + "to": [ + 9.254, + 5.97318, + -5.80758 + ], + "rotation": { + "angle": -22.5, + "axis": "z", + "origin": [ + 8, + 5.45376, + -8.64272 + ] + }, + "faces": { + "north": { + "uv": [ + 6.125, + 5, + 6.4375, + 5.125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.75, + 3.25, + 6.125, + 3.375 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 6.125, + 5.25, + 6.4375, + 5.375 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.75, + 3.5, + 6.125, + 3.625 + ], + "texture": "#1" + } + } + }, + { + "name": "octagon", + "from": [ + 7.55141, + 4.37076, + -9.96158 + ], + "to": [ + 8.44859, + 6.53676, + -4.89558 + ], + "rotation": { + "angle": 22.5, + "axis": "z", + "origin": [ + 8, + 5.45376, + -8.64272 + ] + }, + "faces": { + "north": { + "uv": [ + 6.75, + 0.75, + 6.875, + 1 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 1, + 6.75, + 1.125, + 7 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 1.125, + 4.625, + 1, + 4 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.375, + 4, + 1.25, + 4.625 + ], + "texture": "#1" + } + } + }, + { + "name": "octagon", + "from": [ + 6.917, + 5.00516, + -9.96158 + ], + "to": [ + 9.083, + 5.90235, + -4.89558 + ], + "rotation": { + "angle": -22.5, + "axis": "z", + "origin": [ + 8, + 5.45376, + -8.64272 + ] + }, + "faces": { + "north": { + "uv": [ + 6.75, + 1.125, + 7, + 1.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4, + 0.25, + 4.625, + 0.375 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 1.25, + 6.75, + 1.5, + 6.875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4, + 0.75, + 4.625, + 0.875 + ], + "texture": "#1" + } + } + }, + { + "name": "octagon", + "from": [ + 6.917, + 5.00516, + -9.96158 + ], + "to": [ + 9.083, + 5.90235, + -4.89558 + ], + "rotation": { + "angle": 22.5, + "axis": "z", + "origin": [ + 8, + 5.45376, + -8.64272 + ] + }, + "faces": { + "north": { + "uv": [ + 6.75, + 1.75, + 7, + 1.875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4, + 1, + 4.625, + 1.125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 2.125, + 6.75, + 2.375, + 6.875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4, + 2, + 4.625, + 2.125 + ], + "texture": "#1" + } + } + }, + { + "name": "octagon", + "from": [ + 7.55141, + 4.37076, + -9.96158 + ], + "to": [ + 8.44859, + 6.53676, + -4.89558 + ], + "rotation": { + "angle": -22.5, + "axis": "z", + "origin": [ + 8, + 5.45376, + -8.64272 + ] + }, + "faces": { + "north": { + "uv": [ + 6.75, + 2.25, + 6.875, + 2.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 2.5, + 6.75, + 2.625, + 7 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 1.625, + 4.625, + 1.5, + 4 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.125, + 3.25, + 4, + 3.875 + ], + "texture": "#1" + } + } + }, + { + "name": "octagon", + "from": [ + 7.62224, + 4.54176, + -10.98758 + ], + "to": [ + 8.37776, + 6.36576, + -3.96108 + ], + "rotation": { + "angle": 22.5, + "axis": "z", + "origin": [ + 8, + 5.45376, + -8.64272 + ] + }, + "faces": { + "north": { + "uv": [ + 6.75, + 2.625, + 6.875, + 2.875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 2.75, + 6.75, + 2.875, + 7 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2.875, + 3.125, + 2.75, + 2.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.125, + 3, + 1, + 3.875 + ], + "texture": "#1" + } + } + }, + { + "name": "octagon", + "from": [ + 7.62224, + 4.54176, + -10.98758 + ], + "to": [ + 8.37776, + 6.36576, + -3.96108 + ], + "rotation": { + "angle": -22.5, + "axis": "z", + "origin": [ + 8, + 5.45376, + -8.64272 + ] + }, + "faces": { + "north": { + "uv": [ + 6.75, + 3, + 6.875, + 3.25 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 6.75, + 3.375, + 6.875, + 3.625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 1.375, + 3.875, + 1.25, + 3 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.625, + 3, + 1.5, + 3.875 + ], + "texture": "#1" + } + } + }, + { + "name": "octagon", + "from": [ + 7.088, + 5.07599, + -10.98758 + ], + "to": [ + 8.912, + 5.83152, + -3.96108 + ], + "rotation": { + "angle": 22.5, + "axis": "z", + "origin": [ + 8, + 5.45376, + -8.64272 + ] + }, + "faces": { + "north": { + "uv": [ + 3.875, + 6.75, + 4.125, + 6.875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.625, + 1.5, + 3.5, + 1.625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 6.75, + 4.25, + 7, + 4.375 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3, + 2, + 3.875, + 2.125 + ], + "texture": "#1" + } + } + }, + { + "name": "octagon", + "from": [ + 7.088, + 5.07599, + -10.98758 + ], + "to": [ + 8.912, + 5.83152, + -3.96108 + ], + "rotation": { + "angle": -22.5, + "axis": "z", + "origin": [ + 8, + 5.45376, + -8.64272 + ] + }, + "faces": { + "north": { + "uv": [ + 6.75, + 4.5, + 7, + 4.625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3, + 2.25, + 3.875, + 2.375 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 4.75, + 6.75, + 5, + 6.875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3, + 2.5, + 3.875, + 2.625 + ], + "texture": "#1" + } + } + }, + { + "name": "octagon", + "from": [ + 7.69307, + 4.71276, + -12.12758 + ], + "to": [ + 8.30693, + 6.19476, + -10.30358 + ], + "rotation": { + "angle": 22.5, + "axis": "z", + "origin": [ + 8, + 5.45376, + -8.64272 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 3.375, + 8.0625, + 3.5625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.5625, + 4.75, + 7.5, + 4.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.5625, + 4.875, + 7.5, + 5.125 + ], + "texture": "#1" + } + } + }, + { + "name": "octagon", + "from": [ + 7.69307, + 4.71276, + -12.12758 + ], + "to": [ + 8.30693, + 6.19476, + -10.30358 + ], + "rotation": { + "angle": -22.5, + "axis": "z", + "origin": [ + 8, + 5.45376, + -8.64272 + ] + }, + "faces": { + "north": { + "uv": [ + 4.375, + 8, + 4.4375, + 8.1875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5.3125, + 7.75, + 5.25, + 7.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.5625, + 5.25, + 7.5, + 5.5 + ], + "texture": "#1" + } + } + }, + { + "name": "octagon", + "from": [ + 7.259, + 5.14682, + -12.12758 + ], + "to": [ + 8.741, + 5.76069, + -10.30358 + ], + "rotation": { + "angle": 22.5, + "axis": "z", + "origin": [ + 8, + 5.45376, + -8.64272 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 4.375, + 8.1875, + 4.4375 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.5, + 7.5, + 5.75, + 7.5625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.875, + 7.5, + 6.125, + 7.5625 + ], + "texture": "#1" + } + } + }, + { + "name": "octagon", + "from": [ + 7.259, + 5.14682, + -12.12758 + ], + "to": [ + 8.741, + 5.76069, + -10.30358 + ], + "rotation": { + "angle": -22.5, + "axis": "z", + "origin": [ + 8, + 5.45376, + -8.64272 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 4.625, + 8.1875, + 4.6875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.25, + 7.5, + 6.5, + 7.5625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.625, + 7.5, + 6.875, + 7.5625 + ], + "texture": "#1" + } + } + }, + { + "name": "octagon", + "from": [ + 7.7639, + 4.88376, + -12.81158 + ], + "to": [ + 8.2361, + 6.02376, + -9.96158 + ], + "rotation": { + "angle": 22.5, + "axis": "z", + "origin": [ + 8, + 5.45376, + -8.64272 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 3.375, + 8.3125, + 3.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.0625, + 5.5, + 7, + 5.125 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.3125, + 7, + 5.25, + 7.375 + ], + "texture": "#1" + } + } + }, + { + "name": "octagon", + "from": [ + 7.7639, + 4.88376, + -12.81158 + ], + "to": [ + 8.2361, + 6.02376, + -9.96158 + ], + "rotation": { + "angle": -22.5, + "axis": "z", + "origin": [ + 8, + 5.45376, + -8.64272 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 5.375, + 8.3125, + 5.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6.5625, + 7.375, + 6.5, + 7 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.8125, + 7, + 6.75, + 7.375 + ], + "texture": "#1" + } + } + }, + { + "name": "octagon", + "from": [ + 7.43, + 5.21766, + -12.81158 + ], + "to": [ + 8.57, + 5.68986, + -9.96158 + ], + "rotation": { + "angle": 22.5, + "axis": "z", + "origin": [ + 8, + 5.45376, + -8.64272 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 5.625, + 8.375, + 5.6875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7, + 4, + 7.375, + 4.0625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7, + 7, + 7.375, + 7.0625 + ], + "texture": "#1" + } + } + }, + { + "name": "octagon", + "from": [ + 7.43, + 5.21766, + -12.81158 + ], + "to": [ + 8.57, + 5.68986, + -9.96158 + ], + "rotation": { + "angle": -22.5, + "axis": "z", + "origin": [ + 8, + 5.45376, + -8.64272 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 5.875, + 8.375, + 5.9375 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.125, + 0, + 7.5, + 0.0625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.25, + 7.125, + 0.625, + 7.1875 + ], + "texture": "#1" + } + } + }, + { + "name": "octagon", + "from": [ + 7.75985, + 6.08076, + -2.58308 + ], + "to": [ + 8.24015, + 6.76476, + -0.94758 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 5.45376, + -1.17558 + ] + }, + "faces": { + "north": { + "uv": [ + 6.875, + 8.625, + 6.9375, + 8.6875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8, + 4.875, + 8.1875, + 4.9375 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.125, + 8.625, + 7.1875, + 8.6875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8, + 5.125, + 8.1875, + 5.1875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6.5625, + 8.1875, + 6.5, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.0625, + 6.5, + 8, + 6.6875 + ], + "texture": "#1" + } + } + }, + { + "name": "octagon", + "from": [ + 7.75985, + 4.14276, + -2.58308 + ], + "to": [ + 8.24015, + 4.82676, + -0.94758 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 5.45376, + -1.17558 + ] + }, + "faces": { + "north": { + "uv": [ + 8.625, + 7.125, + 8.6875, + 7.1875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.75, + 8, + 6.9375, + 8.0625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.375, + 8.625, + 7.4375, + 8.6875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8, + 7.375, + 8.1875, + 7.4375 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.6875, + 8.1875, + 7.625, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.0625, + 7.625, + 8, + 7.8125 + ], + "texture": "#1" + } + } + }, + { + "name": "octagon", + "from": [ + 8.43617, + 5.21004, + -3.44972 + ], + "to": [ + 9.18267, + 5.69034, + -1.68922 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 9.80967, + 5.45019, + -1.91722 + ] + }, + "faces": { + "north": { + "uv": [ + 8.625, + 7.375, + 8.6875, + 7.4375 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.5, + 6.875, + 7.75, + 6.9375 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.625, + 8.625, + 7.6875, + 8.6875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7, + 7.5, + 7.25, + 7.5625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.5625, + 7.375, + 7.5, + 7.125 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.4375, + 7.5, + 7.375, + 7.75 + ], + "texture": "#1" + } + } + }, + { + "name": "octagon", + "from": [ + 6.81733, + 5.21004, + -3.44972 + ], + "to": [ + 7.56383, + 5.69034, + -1.68922 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 6.19033, + 5.45019, + -1.91722 + ] + }, + "faces": { + "north": { + "uv": [ + 8.625, + 7.875, + 8.6875, + 7.9375 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.625, + 0, + 7.875, + 0.0625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.625, + 8.125, + 8.6875, + 8.1875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.25, + 7.625, + 0.5, + 7.6875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0.6875, + 7.875, + 0.625, + 7.625 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.6875, + 0.75, + 7.625, + 1 + ], + "texture": "#1" + } + } + }, + { + "name": "octagon", + "from": [ + 7.62608, + 5.29887, + -13.54768 + ], + "to": [ + 8.37392, + 5.60864, + -12.39548 + ], + "rotation": { + "angle": 22.5, + "axis": "z", + "origin": [ + 8, + 5.45376, + -8.64272 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 8.625, + 8.3125, + 8.6875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.25, + 6.125, + 8.375, + 6.1875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.25, + 6.375, + 8.375, + 6.4375 + ], + "texture": "#1" + } + } + }, + { + "name": "octagon", + "from": [ + 7.84511, + 5.07984, + -13.54768 + ], + "to": [ + 8.15488, + 5.82768, + -12.39548 + ], + "rotation": { + "angle": 22.5, + "axis": "z", + "origin": [ + 8, + 5.45376, + -8.64272 + ] + }, + "faces": { + "north": { + "uv": [ + 8.625, + 8.375, + 8.6875, + 8.4375 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.3125, + 6.75, + 8.25, + 6.625 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.8125, + 8.25, + 6.75, + 8.375 + ], + "texture": "#1" + } + } + }, + { + "name": "octagon", + "from": [ + 7.62608, + 5.29887, + -13.54768 + ], + "to": [ + 8.37392, + 5.60864, + -12.39548 + ], + "rotation": { + "angle": -22.5, + "axis": "z", + "origin": [ + 8, + 5.45376, + -8.64272 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 8.625, + 8.5625, + 8.6875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.25, + 6.875, + 8.375, + 6.9375 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.25, + 7.625, + 8.375, + 7.6875 + ], + "texture": "#1" + } + } + }, + { + "name": "octagon", + "from": [ + 7.84512, + 5.07984, + -13.54768 + ], + "to": [ + 8.15489, + 5.82768, + -12.39548 + ], + "rotation": { + "angle": -22.5, + "axis": "z", + "origin": [ + 8, + 5.45376, + -8.64272 + ] + }, + "faces": { + "north": { + "uv": [ + 8.75, + 0, + 8.8125, + 0.0625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.1875, + 8.375, + 8.125, + 8.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.0625, + 8.375, + 0, + 8.5 + ], + "texture": "#1" + } + } + } + ], + "gui_light": "front", + "display": { + "thirdperson_righthand": { + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 1.25, + 3 + ], + "scale": [ + 0.75, + 0.75, + 0.75 + ] + }, + "thirdperson_lefthand": { + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 1.25, + 3 + ], + "scale": [ + 0.75, + 0.75, + 0.75 + ] + }, + "firstperson_righthand": { + "rotation": [ + 101.66, + -5.85, + -4.39 + ], + "translation": [ + 0.25, + 0.75, + 1 + ], + "scale": [ + 1, + 1, + 0.75 + ] + }, + "firstperson_lefthand": { + "rotation": [ + 101.66, + -5.85, + -4.39 + ], + "translation": [ + 0.25, + 0.75, + 1 + ], + "scale": [ + 1, + 1, + 0.75 + ] + }, + "ground": { + "translation": [ + 0, + 1.25, + 1.75 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] + }, + "gui": { + "rotation": [ + 90, + -45, + -90 + ], + "translation": [ + -1.25, + -3.25, + 0.75 + ], + "scale": [ + 0.6, + 0.6, + 0.6 + ] + }, + "head": { + "translation": [ + 0, + 9.25, + 3 + ] + }, + "fixed": { + "rotation": [ + 90, + 45, + -90 + ], + "translation": [ + 4.25, + -1.25, + 0.75 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + } + }, + "groups": [ + { + "name": "Rockets", + "origin": [ + 8, + 8, + 8 + ], + "color": 4, + "children": [ + { + "name": "group", + "origin": [ + 8, + 11.45385, + 4.59919 + ], + "color": 0, + "children": [ + 0, + 1, + 2, + 3 + ] + }, + { + "name": "group", + "origin": [ + 8, + 15.25072, + 1.00614 + ], + "color": 4, + "children": [ + 4, + 5, + 6, + 7 + ] + }, + 8, + { + "name": "group", + "origin": [ + 8, + 15.25072, + 1.00614 + ], + "color": 4, + "children": [ + 9, + 10, + 11, + 12 + ] + }, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + { + "name": "group", + "origin": [ + 8, + 5.25063, + -12.81158 + ], + "color": 0, + "children": [ + 40, + 41, + 42, + 43 + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/custom/shotgunammobox.json b/src/main/resources/assets/superbwarfare/models/custom/shotgunammobox.json new file mode 100644 index 000000000..6162eeda9 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/custom/shotgunammobox.json @@ -0,0 +1,8313 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 32, + 32 + ], + "elements": [ + { + "from": [ + 5.38915, + 8.12543, + 6.19769 + ], + "to": [ + 5.78782, + 8.78988, + 9.27497 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 5.58848, + 8.60666, + 6.08897 + ] + }, + "faces": { + "north": { + "uv": [ + 9.6875, + 9.5, + 9.5, + 9.8125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.875, + 6, + 6, + 6.3125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 9.1875, + 9.5, + 9, + 9.8125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.875, + 6.5, + 6, + 6.8125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.1875, + 0, + 8, + 1.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.1875, + 3.875, + 8, + 2 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 5.38915, + 8.12543, + 6.19769 + ], + "to": [ + 5.78782, + 8.78988, + 9.27497 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 5.58848, + 8.60666, + 6.08897 + ] + }, + "faces": { + "north": { + "uv": [ + 10.1875, + 4.5, + 10, + 4.8125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.875, + 7, + 0, + 7.3125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 10.1875, + 4, + 10, + 4.3125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.875, + 7, + 2, + 7.3125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6.1875, + 8, + 6, + 9.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.1875, + 7.875, + 8, + 6 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 5.40527, + 8.40733, + 6.19769 + ], + "to": [ + 6.06972, + 8.806, + 9.27497 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 5.58848, + 8.60666, + 6.08897 + ] + }, + "faces": { + "north": { + "uv": [ + 7.3125, + 10, + 7, + 10.1875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9.875, + 4, + 8, + 4.1875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 6.3125, + 10, + 6, + 10.1875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9.875, + 4.5, + 8, + 4.6875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4.3125, + 7, + 4, + 8.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.8125, + 8.875, + 4.5, + 7 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 5.40527, + 8.40733, + 6.19769 + ], + "to": [ + 6.06972, + 8.806, + 9.27497 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 5.58848, + 8.60666, + 6.08897 + ] + }, + "faces": { + "north": { + "uv": [ + 8.3125, + 10, + 8, + 10.1875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 8, + 6.5, + 8.1875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.8125, + 10, + 7.5, + 10.1875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.875, + 8.5, + 0, + 8.6875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5.3125, + 7, + 5, + 8.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.8125, + 8.875, + 5.5, + 7 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 5.38915, + 8.42345, + 6.19769 + ], + "to": [ + 5.78782, + 9.0879, + 9.27497 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 5.58848, + 8.60666, + 6.08897 + ] + }, + "faces": { + "north": { + "uv": [ + 9.6875, + 10, + 9.5, + 10.3125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.875, + 7, + 6, + 7.3125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 9.1875, + 10, + 9, + 10.3125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.875, + 7.5, + 0, + 7.8125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.6875, + 0, + 8.5, + 1.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.6875, + 3.875, + 8.5, + 2 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 5.10724, + 8.40733, + 6.19769 + ], + "to": [ + 5.77169, + 8.806, + 9.27497 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 5.58848, + 8.60666, + 6.08897 + ] + }, + "faces": { + "north": { + "uv": [ + 10.3125, + 10, + 10, + 10.1875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10.375, + 6, + 8.5, + 6.1875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 10.3125, + 9.5, + 10, + 9.6875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.375, + 8.5, + 6.5, + 8.6875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2.3125, + 7.5, + 2, + 9.375 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.8125, + 9.375, + 2.5, + 7.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 5.10724, + 8.40733, + 6.19769 + ], + "to": [ + 5.77169, + 8.806, + 9.27497 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 5.58848, + 8.60666, + 6.08897 + ] + }, + "faces": { + "north": { + "uv": [ + 2.8125, + 10.5, + 2.5, + 10.6875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10.375, + 6.5, + 8.5, + 6.6875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 2.3125, + 10.5, + 2, + 10.6875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10.375, + 7, + 8.5, + 7.1875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 3.3125, + 7.5, + 3, + 9.375 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.8125, + 9.375, + 3.5, + 7.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 5.38915, + 8.12543, + 6.19769 + ], + "to": [ + 5.78782, + 8.78988, + 9.27497 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 5.58848, + 8.60666, + 6.08897 + ] + }, + "faces": { + "north": { + "uv": [ + 3.6875, + 10.5, + 3.5, + 10.8125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.875, + 7.5, + 6, + 7.8125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3.1875, + 10.5, + 3, + 10.8125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.875, + 8, + 0, + 8.3125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.6875, + 7.5, + 8.5, + 9.375 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.1875, + 10.875, + 0, + 9 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.31409, + 8.12543, + 6.19769 + ], + "to": [ + 7.71276, + 8.78988, + 9.27497 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.51343, + 8.60666, + 6.08897 + ] + }, + "faces": { + "north": { + "uv": [ + 9.6875, + 9.5, + 9.5, + 9.8125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.875, + 6, + 6, + 6.3125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 9.1875, + 9.5, + 9, + 9.8125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.875, + 6.5, + 6, + 6.8125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.1875, + 0, + 8, + 1.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.1875, + 3.875, + 8, + 2 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.31409, + 8.12543, + 6.19769 + ], + "to": [ + 7.71276, + 8.78988, + 9.27497 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.51343, + 8.60666, + 6.08897 + ] + }, + "faces": { + "north": { + "uv": [ + 10.1875, + 4.5, + 10, + 4.8125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.875, + 7, + 0, + 7.3125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 10.1875, + 4, + 10, + 4.3125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.875, + 7, + 2, + 7.3125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6.1875, + 8, + 6, + 9.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.1875, + 7.875, + 8, + 6 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.33022, + 8.40733, + 6.19769 + ], + "to": [ + 7.99467, + 8.806, + 9.27497 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 7.51343, + 8.60666, + 6.08897 + ] + }, + "faces": { + "north": { + "uv": [ + 7.3125, + 10, + 7, + 10.1875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9.875, + 4, + 8, + 4.1875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 6.3125, + 10, + 6, + 10.1875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9.875, + 4.5, + 8, + 4.6875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4.3125, + 7, + 4, + 8.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.8125, + 8.875, + 4.5, + 7 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.33022, + 8.40733, + 6.19769 + ], + "to": [ + 7.99467, + 8.806, + 9.27497 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.51343, + 8.60666, + 6.08897 + ] + }, + "faces": { + "north": { + "uv": [ + 8.3125, + 10, + 8, + 10.1875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 8, + 6.5, + 8.1875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.8125, + 10, + 7.5, + 10.1875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.875, + 8.5, + 0, + 8.6875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5.3125, + 7, + 5, + 8.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.8125, + 8.875, + 5.5, + 7 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.3141, + 8.42345, + 6.19769 + ], + "to": [ + 7.71277, + 9.0879, + 9.27497 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 7.51343, + 8.60666, + 6.08897 + ] + }, + "faces": { + "north": { + "uv": [ + 9.6875, + 10, + 9.5, + 10.3125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.875, + 7, + 6, + 7.3125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 9.1875, + 10, + 9, + 10.3125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.875, + 7.5, + 0, + 7.8125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.6875, + 0, + 8.5, + 1.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.6875, + 3.875, + 8.5, + 2 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.03219, + 8.40733, + 6.19769 + ], + "to": [ + 7.69664, + 8.806, + 9.27497 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 7.51343, + 8.60666, + 6.08897 + ] + }, + "faces": { + "north": { + "uv": [ + 10.3125, + 10, + 10, + 10.1875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10.375, + 6, + 8.5, + 6.1875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 10.3125, + 9.5, + 10, + 9.6875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.375, + 8.5, + 6.5, + 8.6875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2.3125, + 7.5, + 2, + 9.375 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.8125, + 9.375, + 2.5, + 7.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.03219, + 8.40733, + 6.19769 + ], + "to": [ + 7.69664, + 8.806, + 9.27497 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 7.51343, + 8.60666, + 6.08897 + ] + }, + "faces": { + "north": { + "uv": [ + 2.8125, + 10.5, + 2.5, + 10.6875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10.375, + 6.5, + 8.5, + 6.6875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 2.3125, + 10.5, + 2, + 10.6875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10.375, + 7, + 8.5, + 7.1875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 3.3125, + 7.5, + 3, + 9.375 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.8125, + 9.375, + 3.5, + 7.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.31409, + 8.12543, + 6.19769 + ], + "to": [ + 7.71276, + 8.78988, + 9.27497 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 7.51343, + 8.60666, + 6.08897 + ] + }, + "faces": { + "north": { + "uv": [ + 3.6875, + 10.5, + 3.5, + 10.8125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.875, + 7.5, + 6, + 7.8125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3.1875, + 10.5, + 3, + 10.8125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.875, + 8, + 0, + 8.3125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.6875, + 7.5, + 8.5, + 9.375 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.1875, + 10.875, + 0, + 9 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 9.23904, + 8.12543, + 6.19769 + ], + "to": [ + 9.63771, + 8.78988, + 9.27497 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.43838, + 8.60666, + 6.08897 + ] + }, + "faces": { + "north": { + "uv": [ + 9.6875, + 9.5, + 9.5, + 9.8125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.875, + 6, + 6, + 6.3125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 9.1875, + 9.5, + 9, + 9.8125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.875, + 6.5, + 6, + 6.8125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.1875, + 0, + 8, + 1.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.1875, + 3.875, + 8, + 2 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 9.23904, + 8.12543, + 6.19769 + ], + "to": [ + 9.63771, + 8.78988, + 9.27497 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 9.43838, + 8.60666, + 6.08897 + ] + }, + "faces": { + "north": { + "uv": [ + 10.1875, + 4.5, + 10, + 4.8125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.875, + 7, + 0, + 7.3125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 10.1875, + 4, + 10, + 4.3125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.875, + 7, + 2, + 7.3125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6.1875, + 8, + 6, + 9.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.1875, + 7.875, + 8, + 6 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 9.25517, + 8.40733, + 6.19769 + ], + "to": [ + 9.91962, + 8.806, + 9.27497 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 9.43838, + 8.60666, + 6.08897 + ] + }, + "faces": { + "north": { + "uv": [ + 7.3125, + 10, + 7, + 10.1875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9.875, + 4, + 8, + 4.1875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 6.3125, + 10, + 6, + 10.1875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9.875, + 4.5, + 8, + 4.6875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4.3125, + 7, + 4, + 8.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.8125, + 8.875, + 4.5, + 7 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 9.25517, + 8.40733, + 6.19769 + ], + "to": [ + 9.91962, + 8.806, + 9.27497 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 9.43838, + 8.60666, + 6.08897 + ] + }, + "faces": { + "north": { + "uv": [ + 8.3125, + 10, + 8, + 10.1875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 8, + 6.5, + 8.1875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.8125, + 10, + 7.5, + 10.1875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.875, + 8.5, + 0, + 8.6875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5.3125, + 7, + 5, + 8.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.8125, + 8.875, + 5.5, + 7 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 9.23904, + 8.42345, + 6.19769 + ], + "to": [ + 9.63771, + 9.0879, + 9.27497 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 9.43838, + 8.60666, + 6.08897 + ] + }, + "faces": { + "north": { + "uv": [ + 9.6875, + 10, + 9.5, + 10.3125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.875, + 7, + 6, + 7.3125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 9.1875, + 10, + 9, + 10.3125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.875, + 7.5, + 0, + 7.8125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.6875, + 0, + 8.5, + 1.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.6875, + 3.875, + 8.5, + 2 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.95714, + 8.40733, + 6.19769 + ], + "to": [ + 9.62159, + 8.806, + 9.27497 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 9.43838, + 8.60666, + 6.08897 + ] + }, + "faces": { + "north": { + "uv": [ + 10.3125, + 10, + 10, + 10.1875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10.375, + 6, + 8.5, + 6.1875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 10.3125, + 9.5, + 10, + 9.6875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.375, + 8.5, + 6.5, + 8.6875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2.3125, + 7.5, + 2, + 9.375 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.8125, + 9.375, + 2.5, + 7.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.95714, + 8.40733, + 6.19769 + ], + "to": [ + 9.62159, + 8.806, + 9.27497 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 9.43838, + 8.60666, + 6.08897 + ] + }, + "faces": { + "north": { + "uv": [ + 2.8125, + 10.5, + 2.5, + 10.6875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10.375, + 6.5, + 8.5, + 6.6875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 2.3125, + 10.5, + 2, + 10.6875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10.375, + 7, + 8.5, + 7.1875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 3.3125, + 7.5, + 3, + 9.375 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.8125, + 9.375, + 3.5, + 7.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 9.23904, + 8.12543, + 6.19769 + ], + "to": [ + 9.63771, + 8.78988, + 9.27497 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 9.43838, + 8.60666, + 6.08897 + ] + }, + "faces": { + "north": { + "uv": [ + 3.6875, + 10.5, + 3.5, + 10.8125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.875, + 7.5, + 6, + 7.8125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3.1875, + 10.5, + 3, + 10.8125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.875, + 8, + 0, + 8.3125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.6875, + 7.5, + 8.5, + 9.375 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.1875, + 10.875, + 0, + 9 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 10.20152, + 9.0879, + 6.19769 + ], + "to": [ + 10.60019, + 9.75235, + 9.27497 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 10.40085, + 9.56914, + 6.08897 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 9.5, + 9.6875, + 9.8125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6, + 6.5, + 7.875, + 6.8125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 9, + 9.5, + 9.1875, + 9.8125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6, + 6, + 7.875, + 6.3125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8, + 0, + 8.1875, + 1.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8, + 3.875, + 8.1875, + 2 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 10.20152, + 9.0879, + 6.19769 + ], + "to": [ + 10.60019, + 9.75235, + 9.27497 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 10.40085, + 9.56914, + 6.08897 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 4.5, + 10.1875, + 4.8125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2, + 7, + 3.875, + 7.3125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 10, + 4, + 10.1875, + 4.3125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 7, + 1.875, + 7.3125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6, + 8, + 6.1875, + 9.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8, + 7.875, + 8.1875, + 6 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 9.91962, + 9.3698, + 6.19769 + ], + "to": [ + 10.58407, + 9.76847, + 9.27497 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 10.40085, + 9.56914, + 6.08897 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 10, + 7.3125, + 10.1875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8, + 4.5, + 9.875, + 4.6875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 6, + 10, + 6.3125, + 10.1875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8, + 4, + 9.875, + 4.1875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4, + 7, + 4.3125, + 8.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.5, + 8.875, + 4.8125, + 7 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 9.91962, + 9.3698, + 6.19769 + ], + "to": [ + 10.58407, + 9.76847, + 9.27497 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 10.40085, + 9.56914, + 6.08897 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 10, + 8.3125, + 10.1875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 8.5, + 1.875, + 8.6875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.5, + 10, + 7.8125, + 10.1875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.5, + 8, + 8.375, + 8.1875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5, + 7, + 5.3125, + 8.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.5, + 8.875, + 5.8125, + 7 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 10.20152, + 9.38593, + 6.19769 + ], + "to": [ + 10.60019, + 10.05038, + 9.27497 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 10.40085, + 9.56914, + 6.08897 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 10, + 9.6875, + 10.3125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 7.5, + 1.875, + 7.8125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 9, + 10, + 9.1875, + 10.3125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6, + 7, + 7.875, + 7.3125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.5, + 0, + 8.6875, + 1.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.5, + 3.875, + 8.6875, + 2 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 10.21764, + 9.3698, + 6.19769 + ], + "to": [ + 10.88209, + 9.76847, + 9.27497 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 10.40085, + 9.56914, + 6.08897 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 10, + 10.3125, + 10.1875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.5, + 8.5, + 8.375, + 8.6875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 10, + 9.5, + 10.3125, + 9.6875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 6, + 10.375, + 6.1875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2, + 7.5, + 2.3125, + 9.375 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.5, + 9.375, + 2.8125, + 7.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 10.21764, + 9.3698, + 6.19769 + ], + "to": [ + 10.88209, + 9.76847, + 9.27497 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 10.40085, + 9.56914, + 6.08897 + ] + }, + "faces": { + "north": { + "uv": [ + 2.5, + 10.5, + 2.8125, + 10.6875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.5, + 7, + 10.375, + 7.1875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 2, + 10.5, + 2.3125, + 10.6875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 6.5, + 10.375, + 6.6875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 3, + 7.5, + 3.3125, + 9.375 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.5, + 9.375, + 3.8125, + 7.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 10.20152, + 9.0879, + 6.19769 + ], + "to": [ + 10.60019, + 9.75235, + 9.27497 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 10.40085, + 9.56914, + 6.08897 + ] + }, + "faces": { + "north": { + "uv": [ + 3.5, + 10.5, + 3.6875, + 10.8125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 8, + 1.875, + 8.3125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3, + 10.5, + 3.1875, + 10.8125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6, + 7.5, + 7.875, + 7.8125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.5, + 7.5, + 8.6875, + 9.375 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 10.875, + 0.1875, + 9 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.27657, + 9.0879, + 6.19769 + ], + "to": [ + 8.67524, + 9.75235, + 9.27497 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.4759, + 9.56914, + 6.08897 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 9.5, + 9.6875, + 9.8125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6, + 6.5, + 7.875, + 6.8125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 9, + 9.5, + 9.1875, + 9.8125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6, + 6, + 7.875, + 6.3125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8, + 0, + 8.1875, + 1.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8, + 3.875, + 8.1875, + 2 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.27657, + 9.0879, + 6.19769 + ], + "to": [ + 8.67524, + 9.75235, + 9.27497 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.4759, + 9.56914, + 6.08897 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 4.5, + 10.1875, + 4.8125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2, + 7, + 3.875, + 7.3125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 10, + 4, + 10.1875, + 4.3125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 7, + 1.875, + 7.3125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6, + 8, + 6.1875, + 9.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8, + 7.875, + 8.1875, + 6 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.99467, + 9.3698, + 6.19769 + ], + "to": [ + 8.65912, + 9.76847, + 9.27497 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.4759, + 9.56914, + 6.08897 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 10, + 7.3125, + 10.1875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8, + 4.5, + 9.875, + 4.6875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 6, + 10, + 6.3125, + 10.1875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8, + 4, + 9.875, + 4.1875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4, + 7, + 4.3125, + 8.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.5, + 8.875, + 4.8125, + 7 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.99467, + 9.3698, + 6.19769 + ], + "to": [ + 8.65912, + 9.76847, + 9.27497 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.4759, + 9.56914, + 6.08897 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 10, + 8.3125, + 10.1875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 8.5, + 1.875, + 8.6875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.5, + 10, + 7.8125, + 10.1875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.5, + 8, + 8.375, + 8.1875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5, + 7, + 5.3125, + 8.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.5, + 8.875, + 5.8125, + 7 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.27657, + 9.38593, + 6.19769 + ], + "to": [ + 8.67524, + 10.05038, + 9.27497 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.4759, + 9.56914, + 6.08897 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 10, + 9.6875, + 10.3125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 7.5, + 1.875, + 7.8125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 9, + 10, + 9.1875, + 10.3125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6, + 7, + 7.875, + 7.3125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.5, + 0, + 8.6875, + 1.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.5, + 3.875, + 8.6875, + 2 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.29269, + 9.3698, + 6.19769 + ], + "to": [ + 8.95714, + 9.76847, + 9.27497 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 8.4759, + 9.56914, + 6.08897 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 10, + 10.3125, + 10.1875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.5, + 8.5, + 8.375, + 8.6875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 10, + 9.5, + 10.3125, + 9.6875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 6, + 10.375, + 6.1875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2, + 7.5, + 2.3125, + 9.375 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.5, + 9.375, + 2.8125, + 7.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.29269, + 9.3698, + 6.19769 + ], + "to": [ + 8.95714, + 9.76847, + 9.27497 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.4759, + 9.56914, + 6.08897 + ] + }, + "faces": { + "north": { + "uv": [ + 2.5, + 10.5, + 2.8125, + 10.6875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.5, + 7, + 10.375, + 7.1875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 2, + 10.5, + 2.3125, + 10.6875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 6.5, + 10.375, + 6.6875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 3, + 7.5, + 3.3125, + 9.375 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.5, + 9.375, + 3.8125, + 7.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.27657, + 9.0879, + 6.19769 + ], + "to": [ + 8.67524, + 9.75235, + 9.27497 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 8.4759, + 9.56914, + 6.08897 + ] + }, + "faces": { + "north": { + "uv": [ + 3.5, + 10.5, + 3.6875, + 10.8125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 8, + 1.875, + 8.3125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3, + 10.5, + 3.1875, + 10.8125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6, + 7.5, + 7.875, + 7.8125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.5, + 7.5, + 8.6875, + 9.375 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 10.875, + 0.1875, + 9 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.35162, + 9.0879, + 6.19769 + ], + "to": [ + 6.75029, + 9.75235, + 9.27497 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 6.55096, + 9.56914, + 6.08897 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 9.5, + 9.6875, + 9.8125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6, + 6.5, + 7.875, + 6.8125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 9, + 9.5, + 9.1875, + 9.8125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6, + 6, + 7.875, + 6.3125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8, + 0, + 8.1875, + 1.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8, + 3.875, + 8.1875, + 2 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.35162, + 9.0879, + 6.19769 + ], + "to": [ + 6.75029, + 9.75235, + 9.27497 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 6.55096, + 9.56914, + 6.08897 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 4.5, + 10.1875, + 4.8125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2, + 7, + 3.875, + 7.3125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 10, + 4, + 10.1875, + 4.3125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 7, + 1.875, + 7.3125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6, + 8, + 6.1875, + 9.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8, + 7.875, + 8.1875, + 6 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.06972, + 9.3698, + 6.19769 + ], + "to": [ + 6.73417, + 9.76847, + 9.27497 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 6.55096, + 9.56914, + 6.08897 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 10, + 7.3125, + 10.1875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8, + 4.5, + 9.875, + 4.6875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 6, + 10, + 6.3125, + 10.1875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8, + 4, + 9.875, + 4.1875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4, + 7, + 4.3125, + 8.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.5, + 8.875, + 4.8125, + 7 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.06972, + 9.3698, + 6.19769 + ], + "to": [ + 6.73417, + 9.76847, + 9.27497 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 6.55096, + 9.56914, + 6.08897 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 10, + 8.3125, + 10.1875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 8.5, + 1.875, + 8.6875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.5, + 10, + 7.8125, + 10.1875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.5, + 8, + 8.375, + 8.1875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5, + 7, + 5.3125, + 8.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.5, + 8.875, + 5.8125, + 7 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.35162, + 9.38593, + 6.19769 + ], + "to": [ + 6.75029, + 10.05038, + 9.27497 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 6.55096, + 9.56914, + 6.08897 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 10, + 9.6875, + 10.3125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 7.5, + 1.875, + 7.8125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 9, + 10, + 9.1875, + 10.3125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6, + 7, + 7.875, + 7.3125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.5, + 0, + 8.6875, + 1.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.5, + 3.875, + 8.6875, + 2 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.36774, + 9.3698, + 6.19769 + ], + "to": [ + 7.03219, + 9.76847, + 9.27497 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 6.55096, + 9.56914, + 6.08897 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 10, + 10.3125, + 10.1875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.5, + 8.5, + 8.375, + 8.6875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 10, + 9.5, + 10.3125, + 9.6875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 6, + 10.375, + 6.1875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2, + 7.5, + 2.3125, + 9.375 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.5, + 9.375, + 2.8125, + 7.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.36774, + 9.3698, + 6.19769 + ], + "to": [ + 7.03219, + 9.76847, + 9.27497 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 6.55096, + 9.56914, + 6.08897 + ] + }, + "faces": { + "north": { + "uv": [ + 2.5, + 10.5, + 2.8125, + 10.6875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.5, + 7, + 10.375, + 7.1875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 2, + 10.5, + 2.3125, + 10.6875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 6.5, + 10.375, + 6.6875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 3, + 7.5, + 3.3125, + 9.375 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.5, + 9.375, + 3.8125, + 7.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.35162, + 9.0879, + 6.19769 + ], + "to": [ + 6.75029, + 9.75235, + 9.27497 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 6.55096, + 9.56914, + 6.08897 + ] + }, + "faces": { + "north": { + "uv": [ + 3.5, + 10.5, + 3.6875, + 10.8125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 8, + 1.875, + 8.3125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3, + 10.5, + 3.1875, + 10.8125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6, + 7.5, + 7.875, + 7.8125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.5, + 7.5, + 8.6875, + 9.375 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 10.875, + 0.1875, + 9 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.35162, + 8.12543, + 6.19769 + ], + "to": [ + 6.75029, + 8.78988, + 9.27497 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 6.55096, + 8.60666, + 9.87197 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 9.5, + 9.1875, + 9.8125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6, + 6, + 7.875, + 6.3125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 9.5, + 9.5, + 9.6875, + 9.8125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6, + 6.5, + 7.875, + 6.8125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.1875, + 1.875, + 8, + 0 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.1875, + 2, + 8, + 3.875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.35162, + 8.12543, + 6.19769 + ], + "to": [ + 6.75029, + 8.78988, + 9.27497 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 6.55096, + 8.60666, + 9.87197 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 4, + 10.1875, + 4.3125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 7, + 1.875, + 7.3125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 10, + 4.5, + 10.1875, + 4.8125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2, + 7, + 3.875, + 7.3125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6.1875, + 9.875, + 6, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.1875, + 6, + 8, + 7.875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.36774, + 8.40733, + 6.19769 + ], + "to": [ + 7.03219, + 8.806, + 9.27497 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 6.55096, + 8.60666, + 9.87197 + ] + }, + "faces": { + "north": { + "uv": [ + 6, + 10, + 6.3125, + 10.1875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8, + 4, + 9.875, + 4.1875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 10, + 7.3125, + 10.1875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8, + 4.5, + 9.875, + 4.6875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4.3125, + 8.875, + 4, + 7 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.8125, + 7, + 4.5, + 8.875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.36774, + 8.40733, + 6.19769 + ], + "to": [ + 7.03219, + 8.806, + 9.27497 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 6.55096, + 8.60666, + 9.87197 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 10, + 7.8125, + 10.1875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.5, + 8, + 8.375, + 8.1875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 10, + 8.3125, + 10.1875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 8.5, + 1.875, + 8.6875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5.3125, + 8.875, + 5, + 7 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.8125, + 7, + 5.5, + 8.875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.35162, + 8.42345, + 6.19769 + ], + "to": [ + 6.75029, + 9.0879, + 9.27497 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 6.55096, + 8.60666, + 9.87197 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 10, + 9.1875, + 10.3125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6, + 7, + 7.875, + 7.3125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 9.5, + 10, + 9.6875, + 10.3125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 7.5, + 1.875, + 7.8125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.6875, + 1.875, + 8.5, + 0 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.6875, + 2, + 8.5, + 3.875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.06972, + 8.40733, + 6.19769 + ], + "to": [ + 6.73417, + 8.806, + 9.27497 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 6.55096, + 8.60666, + 9.87197 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 9.5, + 10.3125, + 9.6875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.5, + 6, + 10.375, + 6.1875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 10, + 10, + 10.3125, + 10.1875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.5, + 8.5, + 8.375, + 8.6875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2.3125, + 9.375, + 2, + 7.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.8125, + 7.5, + 2.5, + 9.375 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.06972, + 8.40733, + 6.19769 + ], + "to": [ + 6.73417, + 8.806, + 9.27497 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 6.55096, + 8.60666, + 9.87197 + ] + }, + "faces": { + "north": { + "uv": [ + 2, + 10.5, + 2.3125, + 10.6875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.5, + 6.5, + 10.375, + 6.6875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 2.5, + 10.5, + 2.8125, + 10.6875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 7, + 10.375, + 7.1875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 3.3125, + 9.375, + 3, + 7.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.8125, + 7.5, + 3.5, + 9.375 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.35162, + 8.12543, + 6.19769 + ], + "to": [ + 6.75029, + 8.78988, + 9.27497 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 6.55096, + 8.60666, + 9.87197 + ] + }, + "faces": { + "north": { + "uv": [ + 3, + 10.5, + 3.1875, + 10.8125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6, + 7.5, + 7.875, + 7.8125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3.5, + 10.5, + 3.6875, + 10.8125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 8, + 1.875, + 8.3125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.6875, + 9.375, + 8.5, + 7.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.1875, + 9, + 0, + 10.875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.27657, + 8.12543, + 6.19769 + ], + "to": [ + 8.67524, + 8.78988, + 9.27497 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.4759, + 8.60666, + 9.87197 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 9.5, + 9.1875, + 9.8125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6, + 6, + 7.875, + 6.3125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 9.5, + 9.5, + 9.6875, + 9.8125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6, + 6.5, + 7.875, + 6.8125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.1875, + 1.875, + 8, + 0 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.1875, + 2, + 8, + 3.875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.27657, + 8.12543, + 6.19769 + ], + "to": [ + 8.67524, + 8.78988, + 9.27497 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 8.4759, + 8.60666, + 9.87197 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 4, + 10.1875, + 4.3125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 7, + 1.875, + 7.3125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 10, + 4.5, + 10.1875, + 4.8125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2, + 7, + 3.875, + 7.3125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6.1875, + 9.875, + 6, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.1875, + 6, + 8, + 7.875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.29269, + 8.40733, + 6.19769 + ], + "to": [ + 8.95714, + 8.806, + 9.27497 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.4759, + 8.60666, + 9.87197 + ] + }, + "faces": { + "north": { + "uv": [ + 6, + 10, + 6.3125, + 10.1875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8, + 4, + 9.875, + 4.1875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 10, + 7.3125, + 10.1875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8, + 4.5, + 9.875, + 4.6875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4.3125, + 8.875, + 4, + 7 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.8125, + 7, + 4.5, + 8.875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.29269, + 8.40733, + 6.19769 + ], + "to": [ + 8.95714, + 8.806, + 9.27497 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 8.4759, + 8.60666, + 9.87197 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 10, + 7.8125, + 10.1875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.5, + 8, + 8.375, + 8.1875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 10, + 8.3125, + 10.1875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 8.5, + 1.875, + 8.6875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5.3125, + 8.875, + 5, + 7 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.8125, + 7, + 5.5, + 8.875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.27657, + 8.42345, + 6.19769 + ], + "to": [ + 8.67524, + 9.0879, + 9.27497 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.4759, + 8.60666, + 9.87197 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 10, + 9.1875, + 10.3125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6, + 7, + 7.875, + 7.3125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 9.5, + 10, + 9.6875, + 10.3125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 7.5, + 1.875, + 7.8125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.6875, + 1.875, + 8.5, + 0 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.6875, + 2, + 8.5, + 3.875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.99467, + 8.40733, + 6.19769 + ], + "to": [ + 8.65912, + 8.806, + 9.27497 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.4759, + 8.60666, + 9.87197 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 9.5, + 10.3125, + 9.6875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.5, + 6, + 10.375, + 6.1875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 10, + 10, + 10.3125, + 10.1875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.5, + 8.5, + 8.375, + 8.6875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2.3125, + 9.375, + 2, + 7.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.8125, + 7.5, + 2.5, + 9.375 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.99467, + 8.40733, + 6.19769 + ], + "to": [ + 8.65912, + 8.806, + 9.27497 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.4759, + 8.60666, + 9.87197 + ] + }, + "faces": { + "north": { + "uv": [ + 2, + 10.5, + 2.3125, + 10.6875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.5, + 6.5, + 10.375, + 6.6875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 2.5, + 10.5, + 2.8125, + 10.6875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 7, + 10.375, + 7.1875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 3.3125, + 9.375, + 3, + 7.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.8125, + 7.5, + 3.5, + 9.375 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.27657, + 8.12543, + 6.19769 + ], + "to": [ + 8.67524, + 8.78988, + 9.27497 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.4759, + 8.60666, + 9.87197 + ] + }, + "faces": { + "north": { + "uv": [ + 3, + 10.5, + 3.1875, + 10.8125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6, + 7.5, + 7.875, + 7.8125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3.5, + 10.5, + 3.6875, + 10.8125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 8, + 1.875, + 8.3125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.6875, + 9.375, + 8.5, + 7.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.1875, + 9, + 0, + 10.875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 10.20152, + 8.12543, + 6.19769 + ], + "to": [ + 10.60019, + 8.78988, + 9.27497 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 10.40085, + 8.60666, + 9.87197 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 9.5, + 9.1875, + 9.8125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6, + 6, + 7.875, + 6.3125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 9.5, + 9.5, + 9.6875, + 9.8125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6, + 6.5, + 7.875, + 6.8125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.1875, + 1.875, + 8, + 0 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.1875, + 2, + 8, + 3.875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 10.20152, + 8.12543, + 6.19769 + ], + "to": [ + 10.60019, + 8.78988, + 9.27497 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 10.40085, + 8.60666, + 9.87197 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 4, + 10.1875, + 4.3125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 7, + 1.875, + 7.3125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 10, + 4.5, + 10.1875, + 4.8125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2, + 7, + 3.875, + 7.3125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6.1875, + 9.875, + 6, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.1875, + 6, + 8, + 7.875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 10.21764, + 8.40733, + 6.19769 + ], + "to": [ + 10.88209, + 8.806, + 9.27497 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 10.40085, + 8.60666, + 9.87197 + ] + }, + "faces": { + "north": { + "uv": [ + 6, + 10, + 6.3125, + 10.1875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8, + 4, + 9.875, + 4.1875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 10, + 7.3125, + 10.1875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8, + 4.5, + 9.875, + 4.6875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4.3125, + 8.875, + 4, + 7 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.8125, + 7, + 4.5, + 8.875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 10.21764, + 8.40733, + 6.19769 + ], + "to": [ + 10.88209, + 8.806, + 9.27497 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 10.40085, + 8.60666, + 9.87197 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 10, + 7.8125, + 10.1875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.5, + 8, + 8.375, + 8.1875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 10, + 8.3125, + 10.1875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 8.5, + 1.875, + 8.6875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5.3125, + 8.875, + 5, + 7 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.8125, + 7, + 5.5, + 8.875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 10.20152, + 8.42345, + 6.19769 + ], + "to": [ + 10.60019, + 9.0879, + 9.27497 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 10.40085, + 8.60666, + 9.87197 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 10, + 9.1875, + 10.3125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6, + 7, + 7.875, + 7.3125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 9.5, + 10, + 9.6875, + 10.3125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 7.5, + 1.875, + 7.8125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.6875, + 1.875, + 8.5, + 0 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.6875, + 2, + 8.5, + 3.875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 9.91962, + 8.40733, + 6.19769 + ], + "to": [ + 10.58407, + 8.806, + 9.27497 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 10.40085, + 8.60666, + 9.87197 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 9.5, + 10.3125, + 9.6875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.5, + 6, + 10.375, + 6.1875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 10, + 10, + 10.3125, + 10.1875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.5, + 8.5, + 8.375, + 8.6875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2.3125, + 9.375, + 2, + 7.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.8125, + 7.5, + 2.5, + 9.375 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 9.91962, + 8.40733, + 6.19769 + ], + "to": [ + 10.58407, + 8.806, + 9.27497 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 10.40085, + 8.60666, + 9.87197 + ] + }, + "faces": { + "north": { + "uv": [ + 2, + 10.5, + 2.3125, + 10.6875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.5, + 6.5, + 10.375, + 6.6875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 2.5, + 10.5, + 2.8125, + 10.6875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 7, + 10.375, + 7.1875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 3.3125, + 9.375, + 3, + 7.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.8125, + 7.5, + 3.5, + 9.375 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 10.20152, + 8.12543, + 6.19769 + ], + "to": [ + 10.60019, + 8.78988, + 9.27497 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 10.40085, + 8.60666, + 9.87197 + ] + }, + "faces": { + "north": { + "uv": [ + 3, + 10.5, + 3.1875, + 10.8125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6, + 7.5, + 7.875, + 7.8125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3.5, + 10.5, + 3.6875, + 10.8125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 8, + 1.875, + 8.3125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.6875, + 9.375, + 8.5, + 7.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.1875, + 9, + 0, + 10.875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 9.23904, + 9.0879, + 6.19769 + ], + "to": [ + 9.63771, + 9.75235, + 9.27497 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.43838, + 9.56914, + 9.87197 + ] + }, + "faces": { + "north": { + "uv": [ + 9.1875, + 9.5, + 9, + 9.8125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.875, + 6.5, + 6, + 6.8125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 9.6875, + 9.5, + 9.5, + 9.8125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.875, + 6, + 6, + 6.3125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8, + 1.875, + 8.1875, + 0 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8, + 2, + 8.1875, + 3.875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 9.23904, + 9.0879, + 6.19769 + ], + "to": [ + 9.63771, + 9.75235, + 9.27497 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 9.43838, + 9.56914, + 9.87197 + ] + }, + "faces": { + "north": { + "uv": [ + 10.1875, + 4, + 10, + 4.3125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.875, + 7, + 2, + 7.3125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 10.1875, + 4.5, + 10, + 4.8125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.875, + 7, + 0, + 7.3125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6, + 9.875, + 6.1875, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8, + 6, + 8.1875, + 7.875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.95714, + 9.3698, + 6.19769 + ], + "to": [ + 9.62159, + 9.76847, + 9.27497 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 9.43838, + 9.56914, + 9.87197 + ] + }, + "faces": { + "north": { + "uv": [ + 6.3125, + 10, + 6, + 10.1875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9.875, + 4.5, + 8, + 4.6875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.3125, + 10, + 7, + 10.1875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9.875, + 4, + 8, + 4.1875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4, + 8.875, + 4.3125, + 7 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.5, + 7, + 4.8125, + 8.875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.95714, + 9.3698, + 6.19769 + ], + "to": [ + 9.62159, + 9.76847, + 9.27497 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 9.43838, + 9.56914, + 9.87197 + ] + }, + "faces": { + "north": { + "uv": [ + 7.8125, + 10, + 7.5, + 10.1875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.875, + 8.5, + 0, + 8.6875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.3125, + 10, + 8, + 10.1875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.375, + 8, + 6.5, + 8.1875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5, + 8.875, + 5.3125, + 7 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.5, + 7, + 5.8125, + 8.875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 9.23904, + 9.38593, + 6.19769 + ], + "to": [ + 9.63771, + 10.05038, + 9.27497 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 9.43838, + 9.56914, + 9.87197 + ] + }, + "faces": { + "north": { + "uv": [ + 9.1875, + 10, + 9, + 10.3125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.875, + 7.5, + 0, + 7.8125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 9.6875, + 10, + 9.5, + 10.3125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.875, + 7, + 6, + 7.3125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.5, + 1.875, + 8.6875, + 0 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.5, + 2, + 8.6875, + 3.875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 9.25517, + 9.3698, + 6.19769 + ], + "to": [ + 9.91962, + 9.76847, + 9.27497 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 9.43838, + 9.56914, + 9.87197 + ] + }, + "faces": { + "north": { + "uv": [ + 10.3125, + 9.5, + 10, + 9.6875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 8.5, + 6.5, + 8.6875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 10.3125, + 10, + 10, + 10.1875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10.375, + 6, + 8.5, + 6.1875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2, + 9.375, + 2.3125, + 7.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.5, + 7.5, + 2.8125, + 9.375 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 9.25517, + 9.3698, + 6.19769 + ], + "to": [ + 9.91962, + 9.76847, + 9.27497 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 9.43838, + 9.56914, + 9.87197 + ] + }, + "faces": { + "north": { + "uv": [ + 2.3125, + 10.5, + 2, + 10.6875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10.375, + 7, + 8.5, + 7.1875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 2.8125, + 10.5, + 2.5, + 10.6875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10.375, + 6.5, + 8.5, + 6.6875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 3, + 9.375, + 3.3125, + 7.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.5, + 7.5, + 3.8125, + 9.375 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 9.23904, + 9.0879, + 6.19769 + ], + "to": [ + 9.63771, + 9.75235, + 9.27497 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 9.43838, + 9.56914, + 9.87197 + ] + }, + "faces": { + "north": { + "uv": [ + 3.1875, + 10.5, + 3, + 10.8125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.875, + 8, + 0, + 8.3125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3.6875, + 10.5, + 3.5, + 10.8125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.875, + 7.5, + 6, + 7.8125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.5, + 9.375, + 8.6875, + 7.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 9, + 0.1875, + 10.875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.3141, + 9.0879, + 6.19769 + ], + "to": [ + 7.71277, + 9.75235, + 9.27497 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.51343, + 9.56914, + 9.87197 + ] + }, + "faces": { + "north": { + "uv": [ + 9.1875, + 9.5, + 9, + 9.8125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.875, + 6.5, + 6, + 6.8125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 9.6875, + 9.5, + 9.5, + 9.8125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.875, + 6, + 6, + 6.3125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8, + 1.875, + 8.1875, + 0 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8, + 2, + 8.1875, + 3.875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.3141, + 9.0879, + 6.19769 + ], + "to": [ + 7.71277, + 9.75235, + 9.27497 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 7.51343, + 9.56914, + 9.87197 + ] + }, + "faces": { + "north": { + "uv": [ + 10.1875, + 4, + 10, + 4.3125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.875, + 7, + 2, + 7.3125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 10.1875, + 4.5, + 10, + 4.8125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.875, + 7, + 0, + 7.3125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6, + 9.875, + 6.1875, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8, + 6, + 8.1875, + 7.875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.03219, + 9.3698, + 6.19769 + ], + "to": [ + 7.69664, + 9.76847, + 9.27497 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 7.51343, + 9.56914, + 9.87197 + ] + }, + "faces": { + "north": { + "uv": [ + 6.3125, + 10, + 6, + 10.1875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9.875, + 4.5, + 8, + 4.6875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.3125, + 10, + 7, + 10.1875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9.875, + 4, + 8, + 4.1875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4, + 8.875, + 4.3125, + 7 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.5, + 7, + 4.8125, + 8.875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.03219, + 9.3698, + 6.19769 + ], + "to": [ + 7.69664, + 9.76847, + 9.27497 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 7.51343, + 9.56914, + 9.87197 + ] + }, + "faces": { + "north": { + "uv": [ + 7.8125, + 10, + 7.5, + 10.1875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.875, + 8.5, + 0, + 8.6875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.3125, + 10, + 8, + 10.1875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.375, + 8, + 6.5, + 8.1875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5, + 8.875, + 5.3125, + 7 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.5, + 7, + 5.8125, + 8.875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.31409, + 9.38593, + 6.19769 + ], + "to": [ + 7.71276, + 10.05038, + 9.27497 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 7.51343, + 9.56914, + 9.87197 + ] + }, + "faces": { + "north": { + "uv": [ + 9.1875, + 10, + 9, + 10.3125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.875, + 7.5, + 0, + 7.8125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 9.6875, + 10, + 9.5, + 10.3125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.875, + 7, + 6, + 7.3125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.5, + 1.875, + 8.6875, + 0 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.5, + 2, + 8.6875, + 3.875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.33022, + 9.3698, + 6.19769 + ], + "to": [ + 7.99467, + 9.76847, + 9.27497 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.51343, + 9.56914, + 9.87197 + ] + }, + "faces": { + "north": { + "uv": [ + 10.3125, + 9.5, + 10, + 9.6875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 8.5, + 6.5, + 8.6875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 10.3125, + 10, + 10, + 10.1875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10.375, + 6, + 8.5, + 6.1875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2, + 9.375, + 2.3125, + 7.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.5, + 7.5, + 2.8125, + 9.375 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.33022, + 9.3698, + 6.19769 + ], + "to": [ + 7.99467, + 9.76847, + 9.27497 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 7.51343, + 9.56914, + 9.87197 + ] + }, + "faces": { + "north": { + "uv": [ + 2.3125, + 10.5, + 2, + 10.6875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10.375, + 7, + 8.5, + 7.1875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 2.8125, + 10.5, + 2.5, + 10.6875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10.375, + 6.5, + 8.5, + 6.6875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 3, + 9.375, + 3.3125, + 7.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.5, + 7.5, + 3.8125, + 9.375 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.31409, + 9.0879, + 6.19769 + ], + "to": [ + 7.71276, + 9.75235, + 9.27497 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.51343, + 9.56914, + 9.87197 + ] + }, + "faces": { + "north": { + "uv": [ + 3.1875, + 10.5, + 3, + 10.8125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.875, + 8, + 0, + 8.3125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3.6875, + 10.5, + 3.5, + 10.8125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.875, + 7.5, + 6, + 7.8125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.5, + 9.375, + 8.6875, + 7.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 9, + 0.1875, + 10.875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 5.38915, + 9.0879, + 6.19769 + ], + "to": [ + 5.78782, + 9.75235, + 9.27497 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 5.58848, + 9.56914, + 9.87197 + ] + }, + "faces": { + "north": { + "uv": [ + 9.1875, + 9.5, + 9, + 9.8125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.875, + 6.5, + 6, + 6.8125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 9.6875, + 9.5, + 9.5, + 9.8125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.875, + 6, + 6, + 6.3125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8, + 1.875, + 8.1875, + 0 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8, + 2, + 8.1875, + 3.875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 5.38915, + 9.0879, + 6.19769 + ], + "to": [ + 5.78782, + 9.75235, + 9.27497 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 5.58848, + 9.56914, + 9.87197 + ] + }, + "faces": { + "north": { + "uv": [ + 10.1875, + 4, + 10, + 4.3125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.875, + 7, + 2, + 7.3125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 10.1875, + 4.5, + 10, + 4.8125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.875, + 7, + 0, + 7.3125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6, + 9.875, + 6.1875, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8, + 6, + 8.1875, + 7.875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 5.10724, + 9.3698, + 6.19769 + ], + "to": [ + 5.77169, + 9.76847, + 9.27497 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 5.58848, + 9.56914, + 9.87197 + ] + }, + "faces": { + "north": { + "uv": [ + 6.3125, + 10, + 6, + 10.1875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9.875, + 4.5, + 8, + 4.6875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.3125, + 10, + 7, + 10.1875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9.875, + 4, + 8, + 4.1875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4, + 8.875, + 4.3125, + 7 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.5, + 7, + 4.8125, + 8.875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 5.10724, + 9.3698, + 6.19769 + ], + "to": [ + 5.77169, + 9.76847, + 9.27497 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 5.58848, + 9.56914, + 9.87197 + ] + }, + "faces": { + "north": { + "uv": [ + 7.8125, + 10, + 7.5, + 10.1875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.875, + 8.5, + 0, + 8.6875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.3125, + 10, + 8, + 10.1875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.375, + 8, + 6.5, + 8.1875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5, + 8.875, + 5.3125, + 7 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.5, + 7, + 5.8125, + 8.875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 5.38915, + 9.38593, + 6.19769 + ], + "to": [ + 5.78782, + 10.05038, + 9.27497 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 5.58848, + 9.56914, + 9.87197 + ] + }, + "faces": { + "north": { + "uv": [ + 9.1875, + 10, + 9, + 10.3125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.875, + 7.5, + 0, + 7.8125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 9.6875, + 10, + 9.5, + 10.3125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.875, + 7, + 6, + 7.3125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.5, + 1.875, + 8.6875, + 0 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.5, + 2, + 8.6875, + 3.875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 5.40527, + 9.3698, + 6.19769 + ], + "to": [ + 6.06972, + 9.76847, + 9.27497 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 5.58848, + 9.56914, + 9.87197 + ] + }, + "faces": { + "north": { + "uv": [ + 10.3125, + 9.5, + 10, + 9.6875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 8.5, + 6.5, + 8.6875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 10.3125, + 10, + 10, + 10.1875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10.375, + 6, + 8.5, + 6.1875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2, + 9.375, + 2.3125, + 7.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.5, + 7.5, + 2.8125, + 9.375 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 5.40527, + 9.3698, + 6.19769 + ], + "to": [ + 6.06972, + 9.76847, + 9.27497 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 5.58848, + 9.56914, + 9.87197 + ] + }, + "faces": { + "north": { + "uv": [ + 2.3125, + 10.5, + 2, + 10.6875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10.375, + 7, + 8.5, + 7.1875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 2.8125, + 10.5, + 2.5, + 10.6875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10.375, + 6.5, + 8.5, + 6.6875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 3, + 9.375, + 3.3125, + 7.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.5, + 7.5, + 3.8125, + 9.375 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 5.38915, + 9.0879, + 6.19769 + ], + "to": [ + 5.78782, + 9.75235, + 9.27497 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 5.58848, + 9.56914, + 9.87197 + ] + }, + "faces": { + "north": { + "uv": [ + 3.1875, + 10.5, + 3, + 10.8125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.875, + 8, + 0, + 8.3125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3.6875, + 10.5, + 3.5, + 10.8125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.875, + 7.5, + 6, + 7.8125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.5, + 9.375, + 8.6875, + 7.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 9, + 0.1875, + 10.875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 5.1, + 8, + 6.1 + ], + "to": [ + 10.9, + 8.1, + 9.4 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 11.875, + 2.5, + 9, + 2.5625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10.875, + 8.5, + 9, + 8.5625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 11.875, + 2, + 9, + 2.0625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10.875, + 9, + 9, + 9.0625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5.875, + 0, + 3, + 1.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.875, + 3.875, + 3, + 2 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 10.9, + 8, + 6 + ], + "to": [ + 11, + 10, + 9.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5625, + 9, + 7.5, + 10 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2, + 6, + 0, + 7 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.0625, + 9, + 7, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8, + 0, + 6, + 1 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0.5625, + 9, + 0.5, + 11 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.0625, + 11, + 1, + 9 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 5, + 8, + 6 + ], + "to": [ + 5.1, + 10, + 9.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 2.0625, + 9.5, + 2, + 10.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8, + 1, + 6, + 2 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.0625, + 9, + 8, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4, + 6, + 2, + 7 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 1.5625, + 9, + 1.5, + 11 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.0625, + 11, + 4, + 9 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 5, + 10, + 6 + ], + "to": [ + 5.1, + 11.5, + 9.5 + ], + "rotation": { + "angle": -22.5, + "axis": "z", + "origin": [ + 5, + 10, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 6.0625, + 10.5, + 6, + 11.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8, + 2, + 6, + 2.75 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 10.5625, + 4, + 10.5, + 4.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8, + 3, + 6, + 3.75 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4.5625, + 9, + 4.5, + 11 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.0625, + 11, + 5, + 9 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 10.9, + 10, + 6 + ], + "to": [ + 11, + 11.5, + 9.5 + ], + "rotation": { + "angle": 22.5, + "axis": "z", + "origin": [ + 11, + 10, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 7.0625, + 10.5, + 7, + 11.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6, + 6, + 4, + 6.75 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 10.5625, + 6, + 10.5, + 6.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8, + 4, + 6, + 4.75 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5.5625, + 9, + 5.5, + 11 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.5625, + 11, + 6.5, + 9 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 5.1, + 8, + 9.4 + ], + "to": [ + 10.9, + 10, + 9.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 5.875, + 4, + 3, + 5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.5625, + 9.5, + 2.5, + 10.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 2.875, + 4, + 0, + 5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.0625, + 9.5, + 3, + 10.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 11.875, + 3, + 9, + 3.0625 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11.875, + 3.5625, + 9, + 3.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 5.1, + 8, + 6 + ], + "to": [ + 10.9, + 10, + 6.1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 5.875, + 5, + 3, + 6 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.5625, + 9.5, + 3.5, + 10.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 2.875, + 5, + 0, + 6 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5625, + 9.5, + 8.5, + 10.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 11.875, + 5, + 9, + 5.0625 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11.875, + 5.5625, + 9, + 5.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 5, + 9.9, + 2 + ], + "to": [ + 11, + 10, + 6 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 10, + 6 + ] + }, + "faces": { + "north": { + "uv": [ + 12, + 0.5, + 9, + 0.5625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11, + 7.5, + 9, + 7.5625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 12, + 0, + 9, + 0.0625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11, + 8, + 9, + 8.0625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 3, + 0, + 0, + 2 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3, + 4, + 0, + 2 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 5, + 8.44759, + 2.31346 + ], + "to": [ + 11, + 9.44759, + 2.41346 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 8, + 8.44759, + 2.41346 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 5.5, + 6, + 6 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10.5625, + 7, + 10.5, + 7.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 9, + 5, + 6, + 5.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.5625, + 10.5, + 7.5, + 11 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 12, + 1, + 9, + 1.0625 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 12, + 1.5625, + 9, + 1.5 + ], + "texture": "#1" + } + } + } + ], + "gui_light": "front", + "display": { + "firstperson_righthand": { + "rotation": [ + 26.62, + -0.78, + 11.37 + ], + "translation": [ + 0.25, + 1.25, + 0 + ] + }, + "firstperson_lefthand": { + "rotation": [ + 26.62, + -0.78, + 11.37 + ], + "translation": [ + 0.25, + 1.25, + 0 + ] + }, + "gui": { + "rotation": [ + 45, + 35, + 0 + ], + "translation": [ + 2.25, + -3, + 0 + ], + "scale": [ + 1.6, + 1.6, + 1.6 + ] + }, + "head": { + "translation": [ + 0, + 6.25, + 0 + ] + }, + "fixed": { + "rotation": [ + 90, + 0, + -180 + ], + "translation": [ + 0, + -5.5, + 0 + ], + "scale": [ + 2, + 2, + 2 + ] + } + }, + "groups": [ + { + "name": "group", + "origin": [ + 8, + 0, + 8 + ], + "color": 0, + "children": [ + { + "name": "ammo", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "children": [ + 0, + 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, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + { + "name": "ammo", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "children": [ + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95 + ] + } + ] + }, + { + "name": "group", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "children": [ + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104 + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/custom/sniperammobox.json b/src/main/resources/assets/superbwarfare/models/custom/sniperammobox.json new file mode 100644 index 000000000..d23ee1c53 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/custom/sniperammobox.json @@ -0,0 +1,8447 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 32, + 32 + ], + "elements": [ + { + "from": [ + 5.43541, + 8.63293, + 7.01398 + ], + "to": [ + 5.65867, + 9.17127, + 8.87726 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 5.54699, + 8.90226, + 7.44645 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 5.5, + 10.125, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 8.5, + 4.875, + 8.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 6, + 10.125, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 4, + 9.375, + 4.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.125, + 9.875, + 9, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.125, + 9.5, + 0, + 10.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.27764, + 8.79072, + 7.01398 + ], + "to": [ + 5.81599, + 9.01397, + 8.87726 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 5.54699, + 8.90226, + 7.44645 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 6.5, + 10.25, + 6.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.5, + 9.5, + 1.375, + 9.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 7, + 10.25, + 7.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 1, + 10.375, + 1.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 5.375, + 8.5, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 8.5, + 5, + 9.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.43551, + 8.63285, + 7.01398 + ], + "to": [ + 5.65877, + 9.17119, + 8.87726 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 5.54699, + 8.90226, + 7.44645 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 10, + 7.625, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 8.5, + 6.375, + 8.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 7.5, + 10.125, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 5.5, + 9.375, + 5.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.625, + 10.375, + 1.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.625, + 1.5, + 9.5, + 2.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.27754, + 8.7908, + 7.01398 + ], + "to": [ + 5.81589, + 9.01405, + 8.87726 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 5.54699, + 8.90226, + 7.44645 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 10, + 8.25, + 10.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 9.5, + 3.375, + 9.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 8, + 10.25, + 8.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 2.5, + 10.375, + 2.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 9.375, + 6.5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 8.5, + 7, + 9.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.44086, + 8.64578, + 6.51398 + ], + "to": [ + 5.6534, + 9.15828, + 7.01398 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 5.54699, + 8.90226, + 7.49835 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 10, + 8.625, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 4, + 9.75, + 4.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 8.5, + 10.125, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 9.5, + 7.75, + 9.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.125, + 10.25, + 9, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.125, + 9, + 10, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.29057, + 8.79607, + 6.51398 + ], + "to": [ + 5.80307, + 9.00861, + 7.01398 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 5.54699, + 8.90226, + 7.49835 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 10, + 9.75, + 10.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 9.5, + 10.25, + 9.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 10, + 10.25, + 10.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 10.5, + 0.25, + 10.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 9.75, + 8, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 8, + 9.5, + 8.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.29048, + 8.79615, + 6.51398 + ], + "to": [ + 5.80298, + 9.00869, + 7.01398 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 5.54699, + 8.90226, + 7.49835 + ] + }, + "faces": { + "north": { + "uv": [ + 0.5, + 10.5, + 0.75, + 10.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 10.5, + 1.25, + 10.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 1, + 10.75, + 1.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 10.5, + 1.75, + 10.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 9.75, + 8.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 8.5, + 9.5, + 8.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.44077, + 8.64586, + 6.51398 + ], + "to": [ + 5.6533, + 9.15836, + 7.01398 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 5.54699, + 8.90226, + 7.49835 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 1.5, + 10.625, + 1.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 9, + 9.75, + 9.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 2, + 10.625, + 2.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 9.5, + 9.75, + 9.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.625, + 10.75, + 2.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.625, + 2.5, + 10.5, + 2.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.45882, + 8.68945, + 5.61398 + ], + "to": [ + 5.63523, + 9.11482, + 6.51398 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 5.54699, + 8.90226, + 7.33101 + ] + }, + "faces": { + "north": { + "uv": [ + 3, + 10.5, + 3.125, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 9, + 5, + 9.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 3, + 10.625, + 3.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 5, + 9.5, + 5.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0.625, + 10.5, + 0.5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.125, + 10, + 1, + 10.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.33409, + 8.81419, + 5.61398 + ], + "to": [ + 5.75946, + 8.99059, + 6.51398 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 5.54699, + 8.90226, + 7.33101 + ] + }, + "faces": { + "north": { + "uv": [ + 3.5, + 10.5, + 3.75, + 10.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 1.5, + 10.5, + 1.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 3.5, + 10.75, + 3.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 2, + 10.5, + 2.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 9.5, + 5.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 9, + 6, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.33416, + 8.81412, + 5.61398 + ], + "to": [ + 5.75954, + 8.99053, + 6.51398 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 5.54699, + 8.90226, + 7.33101 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 10.5, + 4.25, + 10.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 10, + 3, + 10.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 4, + 10.75, + 4.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 10, + 3.5, + 10.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 9.5, + 7.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 9, + 8, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.4589, + 8.68938, + 5.61398 + ], + "to": [ + 5.63531, + 9.11476, + 6.51398 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 5.54699, + 8.90226, + 7.33101 + ] + }, + "faces": { + "north": { + "uv": [ + 4.5, + 10.5, + 4.625, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 8, + 9.5, + 8.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 10.5, + 5.125, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 9, + 9, + 9.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.125, + 4.5, + 10, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.125, + 5, + 10, + 5.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.71733, + 9.11383, + 7.48602 + ], + "to": [ + 5.92987, + 9.62633, + 7.98602 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 5.82355, + 9.37023, + 7.00165 + ] + }, + "faces": { + "north": { + "uv": [ + 10.625, + 2, + 10.5, + 2.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 9, + 9.5, + 9.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.625, + 1.5, + 10.5, + 1.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 9.5, + 9.5, + 9.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.625, + 10.5, + 2.5, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.625, + 2.75, + 10.5, + 2.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.56704, + 9.26412, + 7.48602 + ], + "to": [ + 6.07954, + 9.47665, + 7.98602 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 5.82355, + 9.37023, + 7.00165 + ] + }, + "faces": { + "north": { + "uv": [ + 10.75, + 1, + 10.5, + 1.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.25, + 10.5, + 1, + 10.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0.75, + 10.5, + 0.5, + 10.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 10.5, + 1.5, + 10.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 9.5, + 8.5, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 8.75, + 9.5, + 8.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.56714, + 9.26404, + 7.48602 + ], + "to": [ + 6.07964, + 9.47658, + 7.98602 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 5.82355, + 9.37023, + 7.00165 + ] + }, + "faces": { + "north": { + "uv": [ + 10.25, + 10, + 10, + 10.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 9.5, + 10, + 9.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 10, + 9.5, + 10.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.25, + 10.5, + 0, + 10.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 9.5, + 8, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 8.25, + 9.5, + 8 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.71742, + 9.11375, + 7.48602 + ], + "to": [ + 5.92996, + 9.62625, + 7.98602 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 5.82355, + 9.37023, + 7.00165 + ] + }, + "faces": { + "north": { + "uv": [ + 10.125, + 8.5, + 10, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 4, + 9.5, + 4.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.625, + 10, + 8.5, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 9.5, + 7.5, + 9.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.125, + 10, + 9, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.125, + 9.25, + 10, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.55411, + 9.25877, + 5.62274 + ], + "to": [ + 6.09245, + 9.48202, + 7.48602 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 5.82355, + 9.37023, + 7.05355 + ] + }, + "faces": { + "north": { + "uv": [ + 10.25, + 8, + 10, + 8.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.375, + 9.5, + 2.5, + 9.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 10, + 8, + 10.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.375, + 2.5, + 9.5, + 2.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 8.5, + 6.5, + 9.375 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 9.375, + 7, + 8.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.71207, + 9.10082, + 5.62274 + ], + "to": [ + 5.93533, + 9.63916, + 7.48602 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 5.82355, + 9.37023, + 7.05355 + ] + }, + "faces": { + "north": { + "uv": [ + 10.125, + 7.5, + 10, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.375, + 8.5, + 5.5, + 8.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.625, + 10, + 7.5, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.375, + 5.5, + 8.5, + 5.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.625, + 9.5, + 1.5, + 10.375 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.625, + 2.375, + 9.5, + 1.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.55421, + 9.25869, + 5.62274 + ], + "to": [ + 6.09255, + 9.48194, + 7.48602 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 5.82355, + 9.37023, + 7.05355 + ] + }, + "faces": { + "north": { + "uv": [ + 10.25, + 7, + 10, + 7.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.375, + 9.5, + 0.5, + 9.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.25, + 6.5, + 10, + 6.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.375, + 1, + 9.5, + 1.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 4.5, + 8.5, + 5.375 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 9.375, + 5, + 8.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.71197, + 9.1009, + 5.62274 + ], + "to": [ + 5.93523, + 9.63924, + 7.48602 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 5.82355, + 9.37023, + 7.05355 + ] + }, + "faces": { + "north": { + "uv": [ + 10.125, + 6, + 10, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.875, + 8.5, + 4, + 8.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.125, + 5.5, + 10, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.375, + 4, + 8.5, + 4.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.125, + 9, + 9, + 9.875 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.125, + 10.375, + 0, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.73547, + 9.15735, + 7.98602 + ], + "to": [ + 5.91187, + 9.58273, + 8.88602 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 5.82355, + 9.37023, + 7.16899 + ] + }, + "faces": { + "north": { + "uv": [ + 5.125, + 10.5, + 5, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 8, + 9, + 8.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.625, + 10.5, + 4.5, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 9, + 8.5, + 9.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.125, + 4, + 10, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.125, + 5.5, + 10, + 5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.61073, + 9.28209, + 7.98602 + ], + "to": [ + 6.0361, + 9.4585, + 8.88602 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 5.82355, + 9.37023, + 7.16899 + ] + }, + "faces": { + "north": { + "uv": [ + 10.75, + 4, + 10.5, + 4.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 10, + 2.5, + 10.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 10.5, + 4, + 10.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 10, + 3, + 10.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 9, + 7.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 9.5, + 8, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.61065, + 9.28216, + 7.98602 + ], + "to": [ + 6.03602, + 9.45856, + 8.88602 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 5.82355, + 9.37023, + 7.16899 + ] + }, + "faces": { + "north": { + "uv": [ + 10.75, + 3.5, + 10.5, + 3.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 1.5, + 10, + 1.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 10.5, + 3.5, + 10.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 2, + 10, + 2.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 9, + 5.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 9.5, + 6, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.73539, + 9.15742, + 7.98602 + ], + "to": [ + 5.91179, + 9.58279, + 8.88602 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 5.82355, + 9.37023, + 7.16899 + ] + }, + "faces": { + "north": { + "uv": [ + 10.625, + 3, + 10.5, + 3.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 9, + 4.5, + 9.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3.125, + 10.5, + 3, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 5, + 9, + 5.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0.625, + 10, + 0.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.125, + 10.5, + 1, + 10 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.98541, + 8.63293, + 7.01398 + ], + "to": [ + 6.20867, + 9.17127, + 8.87726 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.09699, + 8.90226, + 7.44645 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 5.5, + 10.125, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 8.5, + 4.875, + 8.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 6, + 10.125, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 4, + 9.375, + 4.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.125, + 9.875, + 9, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.125, + 9.5, + 0, + 10.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.82764, + 8.79072, + 7.01398 + ], + "to": [ + 6.36599, + 9.01397, + 8.87726 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 6.09699, + 8.90226, + 7.44645 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 6.5, + 10.25, + 6.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.5, + 9.5, + 1.375, + 9.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 7, + 10.25, + 7.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 1, + 10.375, + 1.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 5.375, + 8.5, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 8.5, + 5, + 9.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.98551, + 8.63285, + 7.01398 + ], + "to": [ + 6.20877, + 9.17119, + 8.87726 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 6.09699, + 8.90226, + 7.44645 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 10, + 7.625, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 8.5, + 6.375, + 8.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 7.5, + 10.125, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 5.5, + 9.375, + 5.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.625, + 10.375, + 1.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.625, + 1.5, + 9.5, + 2.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.82754, + 8.7908, + 7.01398 + ], + "to": [ + 6.36589, + 9.01405, + 8.87726 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.09699, + 8.90226, + 7.44645 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 10, + 8.25, + 10.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 9.5, + 3.375, + 9.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 8, + 10.25, + 8.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 2.5, + 10.375, + 2.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 9.375, + 6.5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 8.5, + 7, + 9.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.99086, + 8.64578, + 6.51398 + ], + "to": [ + 6.2034, + 9.15828, + 7.01398 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 6.09699, + 8.90226, + 7.49835 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 10, + 8.625, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 4, + 9.75, + 4.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 8.5, + 10.125, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 9.5, + 7.75, + 9.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.125, + 10.25, + 9, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.125, + 9, + 10, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.84057, + 8.79607, + 6.51398 + ], + "to": [ + 6.35307, + 9.00861, + 7.01398 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 6.09699, + 8.90226, + 7.49835 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 10, + 9.75, + 10.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 9.5, + 10.25, + 9.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 10, + 10.25, + 10.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 10.5, + 0.25, + 10.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 9.75, + 8, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 8, + 9.5, + 8.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.84048, + 8.79615, + 6.51398 + ], + "to": [ + 6.35298, + 9.00869, + 7.01398 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.09699, + 8.90226, + 7.49835 + ] + }, + "faces": { + "north": { + "uv": [ + 0.5, + 10.5, + 0.75, + 10.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 10.5, + 1.25, + 10.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 1, + 10.75, + 1.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 10.5, + 1.75, + 10.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 9.75, + 8.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 8.5, + 9.5, + 8.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.99077, + 8.64586, + 6.51398 + ], + "to": [ + 6.2033, + 9.15836, + 7.01398 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.09699, + 8.90226, + 7.49835 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 1.5, + 10.625, + 1.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 9, + 9.75, + 9.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 2, + 10.625, + 2.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 9.5, + 9.75, + 9.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.625, + 10.75, + 2.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.625, + 2.5, + 10.5, + 2.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.00882, + 8.68945, + 5.61398 + ], + "to": [ + 6.18523, + 9.11482, + 6.51398 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.09699, + 8.90226, + 7.33101 + ] + }, + "faces": { + "north": { + "uv": [ + 3, + 10.5, + 3.125, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 9, + 5, + 9.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 3, + 10.625, + 3.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 5, + 9.5, + 5.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0.625, + 10.5, + 0.5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.125, + 10, + 1, + 10.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.88409, + 8.81419, + 5.61398 + ], + "to": [ + 6.30946, + 8.99059, + 6.51398 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.09699, + 8.90226, + 7.33101 + ] + }, + "faces": { + "north": { + "uv": [ + 3.5, + 10.5, + 3.75, + 10.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 1.5, + 10.5, + 1.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 3.5, + 10.75, + 3.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 2, + 10.5, + 2.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 9.5, + 5.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 9, + 6, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.88416, + 8.81412, + 5.61398 + ], + "to": [ + 6.30954, + 8.99053, + 6.51398 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 6.09699, + 8.90226, + 7.33101 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 10.5, + 4.25, + 10.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 10, + 3, + 10.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 4, + 10.75, + 4.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 10, + 3.5, + 10.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 9.5, + 7.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 9, + 8, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.0089, + 8.68938, + 5.61398 + ], + "to": [ + 6.18531, + 9.11476, + 6.51398 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 6.09699, + 8.90226, + 7.33101 + ] + }, + "faces": { + "north": { + "uv": [ + 4.5, + 10.5, + 4.625, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 8, + 9.5, + 8.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 10.5, + 5.125, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 9, + 9, + 9.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.125, + 4.5, + 10, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.125, + 5, + 10, + 5.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.26197, + 9.1009, + 5.62274 + ], + "to": [ + 6.48523, + 9.63924, + 7.48602 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.37355, + 9.37023, + 7.05355 + ] + }, + "faces": { + "north": { + "uv": [ + 10.125, + 6, + 10, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.875, + 8.5, + 4, + 8.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.125, + 5.5, + 10, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.375, + 4, + 8.5, + 4.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.125, + 9, + 9, + 9.875 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.125, + 10.375, + 0, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.10421, + 9.25869, + 5.62274 + ], + "to": [ + 6.64255, + 9.48194, + 7.48602 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 6.37355, + 9.37023, + 7.05355 + ] + }, + "faces": { + "north": { + "uv": [ + 10.25, + 7, + 10, + 7.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.375, + 9.5, + 0.5, + 9.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.25, + 6.5, + 10, + 6.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.375, + 1, + 9.5, + 1.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 4.5, + 8.5, + 5.375 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 9.375, + 5, + 8.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.26207, + 9.10082, + 5.62274 + ], + "to": [ + 6.48533, + 9.63916, + 7.48602 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 6.37355, + 9.37023, + 7.05355 + ] + }, + "faces": { + "north": { + "uv": [ + 10.125, + 7.5, + 10, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.375, + 8.5, + 5.5, + 8.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.625, + 10, + 7.5, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.375, + 5.5, + 8.5, + 5.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.625, + 9.5, + 1.5, + 10.375 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.625, + 2.375, + 9.5, + 1.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.10411, + 9.25877, + 5.62274 + ], + "to": [ + 6.64245, + 9.48202, + 7.48602 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.37355, + 9.37023, + 7.05355 + ] + }, + "faces": { + "north": { + "uv": [ + 10.25, + 8, + 10, + 8.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.375, + 9.5, + 2.5, + 9.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 10, + 8, + 10.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.375, + 2.5, + 9.5, + 2.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 8.5, + 6.5, + 9.375 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 9.375, + 7, + 8.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.26742, + 9.11375, + 7.48602 + ], + "to": [ + 6.47996, + 9.62625, + 7.98602 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 6.37355, + 9.37023, + 7.00165 + ] + }, + "faces": { + "north": { + "uv": [ + 10.125, + 8.5, + 10, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 4, + 9.5, + 4.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.625, + 10, + 8.5, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 9.5, + 7.5, + 9.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.125, + 10, + 9, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.125, + 9.25, + 10, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.11714, + 9.26404, + 7.48602 + ], + "to": [ + 6.62964, + 9.47658, + 7.98602 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 6.37355, + 9.37023, + 7.00165 + ] + }, + "faces": { + "north": { + "uv": [ + 10.25, + 10, + 10, + 10.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 9.5, + 10, + 9.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 10, + 9.5, + 10.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.25, + 10.5, + 0, + 10.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 9.5, + 8, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 8.25, + 9.5, + 8 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.11704, + 9.26412, + 7.48602 + ], + "to": [ + 6.62954, + 9.47665, + 7.98602 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.37355, + 9.37023, + 7.00165 + ] + }, + "faces": { + "north": { + "uv": [ + 10.75, + 1, + 10.5, + 1.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.25, + 10.5, + 1, + 10.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0.75, + 10.5, + 0.5, + 10.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 10.5, + 1.5, + 10.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 9.5, + 8.5, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 8.75, + 9.5, + 8.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.26733, + 9.11383, + 7.48602 + ], + "to": [ + 6.47987, + 9.62633, + 7.98602 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.37355, + 9.37023, + 7.00165 + ] + }, + "faces": { + "north": { + "uv": [ + 10.625, + 2, + 10.5, + 2.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 9, + 9.5, + 9.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.625, + 1.5, + 10.5, + 1.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 9.5, + 9.5, + 9.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.625, + 10.5, + 2.5, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.625, + 2.75, + 10.5, + 2.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.28539, + 9.15742, + 7.98602 + ], + "to": [ + 6.46179, + 9.58279, + 8.88602 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.37355, + 9.37023, + 7.16899 + ] + }, + "faces": { + "north": { + "uv": [ + 10.625, + 3, + 10.5, + 3.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 9, + 4.5, + 9.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3.125, + 10.5, + 3, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 5, + 9, + 5.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0.625, + 10, + 0.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.125, + 10.5, + 1, + 10 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.16065, + 9.28216, + 7.98602 + ], + "to": [ + 6.58602, + 9.45856, + 8.88602 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.37355, + 9.37023, + 7.16899 + ] + }, + "faces": { + "north": { + "uv": [ + 10.75, + 3.5, + 10.5, + 3.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 1.5, + 10, + 1.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 10.5, + 3.5, + 10.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 2, + 10, + 2.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 9, + 5.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 9.5, + 6, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.16073, + 9.28209, + 7.98602 + ], + "to": [ + 6.5861, + 9.4585, + 8.88602 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 6.37355, + 9.37023, + 7.16899 + ] + }, + "faces": { + "north": { + "uv": [ + 10.75, + 4, + 10.5, + 4.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 10, + 2.5, + 10.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 10.5, + 4, + 10.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 10, + 3, + 10.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 9, + 7.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 9.5, + 8, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.28547, + 9.15735, + 7.98602 + ], + "to": [ + 6.46187, + 9.58273, + 8.88602 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 6.37355, + 9.37023, + 7.16899 + ] + }, + "faces": { + "north": { + "uv": [ + 5.125, + 10.5, + 5, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 8, + 9, + 8.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.625, + 10.5, + 4.5, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 9, + 8.5, + 9.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.125, + 4, + 10, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.125, + 5.5, + 10, + 5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.53541, + 8.63293, + 7.01398 + ], + "to": [ + 6.75867, + 9.17127, + 8.87726 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.64699, + 8.90226, + 7.44645 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 5.5, + 10.125, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 8.5, + 4.875, + 8.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 6, + 10.125, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 4, + 9.375, + 4.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.125, + 9.875, + 9, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.125, + 9.5, + 0, + 10.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.37764, + 8.79072, + 7.01398 + ], + "to": [ + 6.91599, + 9.01397, + 8.87726 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 6.64699, + 8.90226, + 7.44645 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 6.5, + 10.25, + 6.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.5, + 9.5, + 1.375, + 9.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 7, + 10.25, + 7.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 1, + 10.375, + 1.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 5.375, + 8.5, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 8.5, + 5, + 9.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.53551, + 8.63285, + 7.01398 + ], + "to": [ + 6.75877, + 9.17119, + 8.87726 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 6.64699, + 8.90226, + 7.44645 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 10, + 7.625, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 8.5, + 6.375, + 8.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 7.5, + 10.125, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 5.5, + 9.375, + 5.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.625, + 10.375, + 1.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.625, + 1.5, + 9.5, + 2.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.37754, + 8.7908, + 7.01398 + ], + "to": [ + 6.91589, + 9.01405, + 8.87726 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.64699, + 8.90226, + 7.44645 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 10, + 8.25, + 10.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 9.5, + 3.375, + 9.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 8, + 10.25, + 8.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 2.5, + 10.375, + 2.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 9.375, + 6.5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 8.5, + 7, + 9.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.54086, + 8.64578, + 6.51398 + ], + "to": [ + 6.7534, + 9.15828, + 7.01398 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 6.64699, + 8.90226, + 7.49835 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 10, + 8.625, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 4, + 9.75, + 4.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 8.5, + 10.125, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 9.5, + 7.75, + 9.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.125, + 10.25, + 9, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.125, + 9, + 10, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.39057, + 8.79607, + 6.51398 + ], + "to": [ + 6.90307, + 9.00861, + 7.01398 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 6.64699, + 8.90226, + 7.49835 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 10, + 9.75, + 10.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 9.5, + 10.25, + 9.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 10, + 10.25, + 10.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 10.5, + 0.25, + 10.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 9.75, + 8, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 8, + 9.5, + 8.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.39048, + 8.79615, + 6.51398 + ], + "to": [ + 6.90298, + 9.00869, + 7.01398 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.64699, + 8.90226, + 7.49835 + ] + }, + "faces": { + "north": { + "uv": [ + 0.5, + 10.5, + 0.75, + 10.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 10.5, + 1.25, + 10.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 1, + 10.75, + 1.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 10.5, + 1.75, + 10.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 9.75, + 8.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 8.5, + 9.5, + 8.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.54077, + 8.64586, + 6.51398 + ], + "to": [ + 6.7533, + 9.15836, + 7.01398 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.64699, + 8.90226, + 7.49835 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 1.5, + 10.625, + 1.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 9, + 9.75, + 9.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 2, + 10.625, + 2.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 9.5, + 9.75, + 9.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.625, + 10.75, + 2.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.625, + 2.5, + 10.5, + 2.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.55882, + 8.68945, + 5.61398 + ], + "to": [ + 6.73523, + 9.11482, + 6.51398 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.64699, + 8.90226, + 7.33101 + ] + }, + "faces": { + "north": { + "uv": [ + 3, + 10.5, + 3.125, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 9, + 5, + 9.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 3, + 10.625, + 3.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 5, + 9.5, + 5.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0.625, + 10.5, + 0.5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.125, + 10, + 1, + 10.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.43409, + 8.81419, + 5.61398 + ], + "to": [ + 6.85946, + 8.99059, + 6.51398 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.64699, + 8.90226, + 7.33101 + ] + }, + "faces": { + "north": { + "uv": [ + 3.5, + 10.5, + 3.75, + 10.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 1.5, + 10.5, + 1.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 3.5, + 10.75, + 3.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 2, + 10.5, + 2.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 9.5, + 5.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 9, + 6, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.43416, + 8.81412, + 5.61398 + ], + "to": [ + 6.85954, + 8.99053, + 6.51398 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 6.64699, + 8.90226, + 7.33101 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 10.5, + 4.25, + 10.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 10, + 3, + 10.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 4, + 10.75, + 4.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 10, + 3.5, + 10.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 9.5, + 7.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 9, + 8, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.5589, + 8.68938, + 5.61398 + ], + "to": [ + 6.73531, + 9.11476, + 6.51398 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 6.64699, + 8.90226, + 7.33101 + ] + }, + "faces": { + "north": { + "uv": [ + 4.5, + 10.5, + 4.625, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 8, + 9.5, + 8.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 10.5, + 5.125, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 9, + 9, + 9.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.125, + 4.5, + 10, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.125, + 5, + 10, + 5.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.81197, + 9.1009, + 5.62274 + ], + "to": [ + 7.03523, + 9.63924, + 7.48602 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.92355, + 9.37023, + 7.05355 + ] + }, + "faces": { + "north": { + "uv": [ + 10.125, + 6, + 10, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.875, + 8.5, + 4, + 8.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.125, + 5.5, + 10, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.375, + 4, + 8.5, + 4.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.125, + 9, + 9, + 9.875 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.125, + 10.375, + 0, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.65421, + 9.25869, + 5.62274 + ], + "to": [ + 7.19255, + 9.48194, + 7.48602 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 6.92355, + 9.37023, + 7.05355 + ] + }, + "faces": { + "north": { + "uv": [ + 10.25, + 7, + 10, + 7.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.375, + 9.5, + 0.5, + 9.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.25, + 6.5, + 10, + 6.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.375, + 1, + 9.5, + 1.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 4.5, + 8.5, + 5.375 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 9.375, + 5, + 8.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.81207, + 9.10082, + 5.62274 + ], + "to": [ + 7.03533, + 9.63916, + 7.48602 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 6.92355, + 9.37023, + 7.05355 + ] + }, + "faces": { + "north": { + "uv": [ + 10.125, + 7.5, + 10, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.375, + 8.5, + 5.5, + 8.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.625, + 10, + 7.5, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.375, + 5.5, + 8.5, + 5.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.625, + 9.5, + 1.5, + 10.375 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.625, + 2.375, + 9.5, + 1.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.65411, + 9.25877, + 5.62274 + ], + "to": [ + 7.19245, + 9.48202, + 7.48602 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.92355, + 9.37023, + 7.05355 + ] + }, + "faces": { + "north": { + "uv": [ + 10.25, + 8, + 10, + 8.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.375, + 9.5, + 2.5, + 9.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 10, + 8, + 10.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.375, + 2.5, + 9.5, + 2.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 8.5, + 6.5, + 9.375 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 9.375, + 7, + 8.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.81742, + 9.11375, + 7.48602 + ], + "to": [ + 7.02996, + 9.62625, + 7.98602 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 6.92355, + 9.37023, + 7.00165 + ] + }, + "faces": { + "north": { + "uv": [ + 10.125, + 8.5, + 10, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 4, + 9.5, + 4.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.625, + 10, + 8.5, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 9.5, + 7.5, + 9.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.125, + 10, + 9, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.125, + 9.25, + 10, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.66714, + 9.26404, + 7.48602 + ], + "to": [ + 7.17964, + 9.47658, + 7.98602 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 6.92355, + 9.37023, + 7.00165 + ] + }, + "faces": { + "north": { + "uv": [ + 10.25, + 10, + 10, + 10.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 9.5, + 10, + 9.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 10, + 9.5, + 10.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.25, + 10.5, + 0, + 10.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 9.5, + 8, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 8.25, + 9.5, + 8 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.66704, + 9.26412, + 7.48602 + ], + "to": [ + 7.17954, + 9.47665, + 7.98602 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.92355, + 9.37023, + 7.00165 + ] + }, + "faces": { + "north": { + "uv": [ + 10.75, + 1, + 10.5, + 1.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.25, + 10.5, + 1, + 10.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0.75, + 10.5, + 0.5, + 10.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 10.5, + 1.5, + 10.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 9.5, + 8.5, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 8.75, + 9.5, + 8.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.81733, + 9.11383, + 7.48602 + ], + "to": [ + 7.02987, + 9.62633, + 7.98602 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.92355, + 9.37023, + 7.00165 + ] + }, + "faces": { + "north": { + "uv": [ + 10.625, + 2, + 10.5, + 2.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 9, + 9.5, + 9.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.625, + 1.5, + 10.5, + 1.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 9.5, + 9.5, + 9.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.625, + 10.5, + 2.5, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.625, + 2.75, + 10.5, + 2.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.83539, + 9.15742, + 7.98602 + ], + "to": [ + 7.01179, + 9.58279, + 8.88602 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.92355, + 9.37023, + 7.16899 + ] + }, + "faces": { + "north": { + "uv": [ + 10.625, + 3, + 10.5, + 3.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 9, + 4.5, + 9.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3.125, + 10.5, + 3, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 5, + 9, + 5.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0.625, + 10, + 0.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.125, + 10.5, + 1, + 10 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.71065, + 9.28216, + 7.98602 + ], + "to": [ + 7.13602, + 9.45856, + 8.88602 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6.92355, + 9.37023, + 7.16899 + ] + }, + "faces": { + "north": { + "uv": [ + 10.75, + 3.5, + 10.5, + 3.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 1.5, + 10, + 1.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 10.5, + 3.5, + 10.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 2, + 10, + 2.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 9, + 5.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 9.5, + 6, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.71073, + 9.28209, + 7.98602 + ], + "to": [ + 7.1361, + 9.4585, + 8.88602 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 6.92355, + 9.37023, + 7.16899 + ] + }, + "faces": { + "north": { + "uv": [ + 10.75, + 4, + 10.5, + 4.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 10, + 2.5, + 10.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 10.5, + 4, + 10.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 10, + 3, + 10.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 9, + 7.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 9.5, + 8, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.83547, + 9.15735, + 7.98602 + ], + "to": [ + 7.01187, + 9.58273, + 8.88602 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 6.92355, + 9.37023, + 7.16899 + ] + }, + "faces": { + "north": { + "uv": [ + 5.125, + 10.5, + 5, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 8, + 9, + 8.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.625, + 10.5, + 4.5, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 9, + 8.5, + 9.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.125, + 4, + 10, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.125, + 5.5, + 10, + 5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.08541, + 8.63293, + 7.01398 + ], + "to": [ + 7.30867, + 9.17127, + 8.87726 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 7.19699, + 8.90226, + 7.44645 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 5.5, + 10.125, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 8.5, + 4.875, + 8.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 6, + 10.125, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 4, + 9.375, + 4.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.125, + 9.875, + 9, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.125, + 9.5, + 0, + 10.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.92764, + 8.79072, + 7.01398 + ], + "to": [ + 7.46599, + 9.01397, + 8.87726 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.19699, + 8.90226, + 7.44645 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 6.5, + 10.25, + 6.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.5, + 9.5, + 1.375, + 9.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 7, + 10.25, + 7.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 1, + 10.375, + 1.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 5.375, + 8.5, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 8.5, + 5, + 9.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.08551, + 8.63285, + 7.01398 + ], + "to": [ + 7.30877, + 9.17119, + 8.87726 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.19699, + 8.90226, + 7.44645 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 10, + 7.625, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 8.5, + 6.375, + 8.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 7.5, + 10.125, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 5.5, + 9.375, + 5.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.625, + 10.375, + 1.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.625, + 1.5, + 9.5, + 2.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.92754, + 8.7908, + 7.01398 + ], + "to": [ + 7.46589, + 9.01405, + 8.87726 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 7.19699, + 8.90226, + 7.44645 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 10, + 8.25, + 10.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 9.5, + 3.375, + 9.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 8, + 10.25, + 8.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 2.5, + 10.375, + 2.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 9.375, + 6.5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 8.5, + 7, + 9.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.09086, + 8.64578, + 6.51398 + ], + "to": [ + 7.3034, + 9.15828, + 7.01398 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.19699, + 8.90226, + 7.49835 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 10, + 8.625, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 4, + 9.75, + 4.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 8.5, + 10.125, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 9.5, + 7.75, + 9.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.125, + 10.25, + 9, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.125, + 9, + 10, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.94057, + 8.79607, + 6.51398 + ], + "to": [ + 7.45307, + 9.00861, + 7.01398 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.19699, + 8.90226, + 7.49835 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 10, + 9.75, + 10.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 9.5, + 10.25, + 9.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 10, + 10.25, + 10.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 10.5, + 0.25, + 10.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 9.75, + 8, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 8, + 9.5, + 8.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.94048, + 8.79615, + 6.51398 + ], + "to": [ + 7.45298, + 9.00869, + 7.01398 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 7.19699, + 8.90226, + 7.49835 + ] + }, + "faces": { + "north": { + "uv": [ + 0.5, + 10.5, + 0.75, + 10.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 10.5, + 1.25, + 10.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 1, + 10.75, + 1.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 10.5, + 1.75, + 10.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 9.75, + 8.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 8.5, + 9.5, + 8.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.09077, + 8.64586, + 6.51398 + ], + "to": [ + 7.3033, + 9.15836, + 7.01398 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 7.19699, + 8.90226, + 7.49835 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 1.5, + 10.625, + 1.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 9, + 9.75, + 9.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 2, + 10.625, + 2.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 9.5, + 9.75, + 9.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.625, + 10.75, + 2.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.625, + 2.5, + 10.5, + 2.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.10882, + 8.68945, + 5.61398 + ], + "to": [ + 7.28523, + 9.11482, + 6.51398 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 7.19699, + 8.90226, + 7.33101 + ] + }, + "faces": { + "north": { + "uv": [ + 3, + 10.5, + 3.125, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 9, + 5, + 9.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 3, + 10.625, + 3.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 5, + 9.5, + 5.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0.625, + 10.5, + 0.5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.125, + 10, + 1, + 10.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.98409, + 8.81419, + 5.61398 + ], + "to": [ + 7.40946, + 8.99059, + 6.51398 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 7.19699, + 8.90226, + 7.33101 + ] + }, + "faces": { + "north": { + "uv": [ + 3.5, + 10.5, + 3.75, + 10.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 1.5, + 10.5, + 1.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 3.5, + 10.75, + 3.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 2, + 10.5, + 2.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 9.5, + 5.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 9, + 6, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.98416, + 8.81412, + 5.61398 + ], + "to": [ + 7.40954, + 8.99053, + 6.51398 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.19699, + 8.90226, + 7.33101 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 10.5, + 4.25, + 10.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 10, + 3, + 10.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 4, + 10.75, + 4.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 10, + 3.5, + 10.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 9.5, + 7.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 9, + 8, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.1089, + 8.68938, + 5.61398 + ], + "to": [ + 7.28531, + 9.11476, + 6.51398 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.19699, + 8.90226, + 7.33101 + ] + }, + "faces": { + "north": { + "uv": [ + 4.5, + 10.5, + 4.625, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 8, + 9.5, + 8.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 10.5, + 5.125, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 9, + 9, + 9.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.125, + 4.5, + 10, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.125, + 5, + 10, + 5.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.36197, + 9.1009, + 5.62274 + ], + "to": [ + 7.58523, + 9.63924, + 7.48602 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 7.47355, + 9.37023, + 7.05355 + ] + }, + "faces": { + "north": { + "uv": [ + 10.125, + 6, + 10, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.875, + 8.5, + 4, + 8.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.125, + 5.5, + 10, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.375, + 4, + 8.5, + 4.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.125, + 9, + 9, + 9.875 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.125, + 10.375, + 0, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.20421, + 9.25869, + 5.62274 + ], + "to": [ + 7.74255, + 9.48194, + 7.48602 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.47355, + 9.37023, + 7.05355 + ] + }, + "faces": { + "north": { + "uv": [ + 10.25, + 7, + 10, + 7.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.375, + 9.5, + 0.5, + 9.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.25, + 6.5, + 10, + 6.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.375, + 1, + 9.5, + 1.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 4.5, + 8.5, + 5.375 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 9.375, + 5, + 8.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.36207, + 9.10082, + 5.62274 + ], + "to": [ + 7.58533, + 9.63916, + 7.48602 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.47355, + 9.37023, + 7.05355 + ] + }, + "faces": { + "north": { + "uv": [ + 10.125, + 7.5, + 10, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.375, + 8.5, + 5.5, + 8.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.625, + 10, + 7.5, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.375, + 5.5, + 8.5, + 5.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.625, + 9.5, + 1.5, + 10.375 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.625, + 2.375, + 9.5, + 1.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.20411, + 9.25877, + 5.62274 + ], + "to": [ + 7.74245, + 9.48202, + 7.48602 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 7.47355, + 9.37023, + 7.05355 + ] + }, + "faces": { + "north": { + "uv": [ + 10.25, + 8, + 10, + 8.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.375, + 9.5, + 2.5, + 9.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 10, + 8, + 10.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.375, + 2.5, + 9.5, + 2.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 8.5, + 6.5, + 9.375 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 9.375, + 7, + 8.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.36742, + 9.11375, + 7.48602 + ], + "to": [ + 7.57996, + 9.62625, + 7.98602 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.47355, + 9.37023, + 7.00165 + ] + }, + "faces": { + "north": { + "uv": [ + 10.125, + 8.5, + 10, + 8.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 4, + 9.5, + 4.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.625, + 10, + 8.5, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 9.5, + 7.5, + 9.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.125, + 10, + 9, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.125, + 9.25, + 10, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.21714, + 9.26404, + 7.48602 + ], + "to": [ + 7.72964, + 9.47658, + 7.98602 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.47355, + 9.37023, + 7.00165 + ] + }, + "faces": { + "north": { + "uv": [ + 10.25, + 10, + 10, + 10.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 9.5, + 10, + 9.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.75, + 10, + 9.5, + 10.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.25, + 10.5, + 0, + 10.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 9.5, + 8, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 8.25, + 9.5, + 8 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.21704, + 9.26412, + 7.48602 + ], + "to": [ + 7.72954, + 9.47665, + 7.98602 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 7.47355, + 9.37023, + 7.00165 + ] + }, + "faces": { + "north": { + "uv": [ + 10.75, + 1, + 10.5, + 1.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.25, + 10.5, + 1, + 10.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0.75, + 10.5, + 0.5, + 10.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 10.5, + 1.5, + 10.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 9.5, + 8.5, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 8.75, + 9.5, + 8.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.36733, + 9.11383, + 7.48602 + ], + "to": [ + 7.57987, + 9.62633, + 7.98602 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 7.47355, + 9.37023, + 7.00165 + ] + }, + "faces": { + "north": { + "uv": [ + 10.625, + 2, + 10.5, + 2.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.75, + 9, + 9.5, + 9.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.625, + 1.5, + 10.5, + 1.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.75, + 9.5, + 9.5, + 9.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.625, + 10.5, + 2.5, + 10.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.625, + 2.75, + 10.5, + 2.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.38539, + 9.15742, + 7.98602 + ], + "to": [ + 7.56179, + 9.58279, + 8.88602 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 7.47355, + 9.37023, + 7.16899 + ] + }, + "faces": { + "north": { + "uv": [ + 10.625, + 3, + 10.5, + 3.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 9, + 4.5, + 9.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3.125, + 10.5, + 3, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 5, + 9, + 5.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0.625, + 10, + 0.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.125, + 10.5, + 1, + 10 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.26065, + 9.28216, + 7.98602 + ], + "to": [ + 7.68602, + 9.45856, + 8.88602 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 7.47355, + 9.37023, + 7.16899 + ] + }, + "faces": { + "north": { + "uv": [ + 10.75, + 3.5, + 10.5, + 3.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 1.5, + 10, + 1.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 10.5, + 3.5, + 10.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 2, + 10, + 2.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 9, + 5.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 9.5, + 6, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.26073, + 9.28209, + 7.98602 + ], + "to": [ + 7.6861, + 9.4585, + 8.88602 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.47355, + 9.37023, + 7.16899 + ] + }, + "faces": { + "north": { + "uv": [ + 10.75, + 4, + 10.5, + 4.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 10, + 2.5, + 10.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 10.5, + 4, + 10.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 10, + 3, + 10.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 9, + 7.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 9.5, + 8, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.38547, + 9.15735, + 7.98602 + ], + "to": [ + 7.56187, + 9.58273, + 8.88602 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.47355, + 9.37023, + 7.16899 + ] + }, + "faces": { + "north": { + "uv": [ + 5.125, + 10.5, + 5, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 8, + 9, + 8.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.625, + 10.5, + 4.5, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 9, + 8.5, + 9.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.125, + 4, + 10, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.125, + 5.5, + 10, + 5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.15, + 7.95, + 5.5 + ], + "to": [ + 10.95, + 8, + 9.05 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.05, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 8, + 6.875, + 8.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 8.5, + 9.25, + 8.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 8, + 8.875, + 8.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 9, + 1.75, + 9.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.375, + 1.75, + 2.5, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.375, + 2, + 2.5, + 3.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.15, + 7.95, + 9.05 + ], + "to": [ + 10.95, + 9.75, + 9.1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.05, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 4.5, + 3, + 6.375, + 3.875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 9.5, + 3.625, + 10.375 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 6, + 1.875, + 6.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 9.5, + 4.125, + 10.375 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.875, + 7.125, + 8, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.875, + 7.5, + 8, + 7.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.15, + 7.95, + 5.45 + ], + "to": [ + 10.95, + 9.75, + 5.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.05, + 8, + 8.7 + ] + }, + "faces": { + "north": { + "uv": [ + 2, + 6, + 3.875, + 6.875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 9.5, + 4.625, + 10.375 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 3, + 8.375, + 3.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 9.5, + 5.125, + 10.375 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.875, + 8.625, + 0, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.875, + 8.5, + 2, + 8.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.15, + 9.7, + 5.5 + ], + "to": [ + 10.95, + 9.75, + 9.05 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.05, + 7.65, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 3, + 10.375, + 3.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 0, + 10.75, + 0.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 3.5, + 10.375, + 3.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 0.5, + 10.75, + 0.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.875, + 5.75, + 0, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.875, + 4, + 2, + 5.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 10.95, + 8, + 5.5 + ], + "to": [ + 10.95, + 9.7, + 9.05 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.05, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 0, + 0.875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 4, + 8.25, + 4.875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 0, + 0, + 0.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 7, + 1.75, + 7.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 1.75, + 0, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 0, + 0, + 1.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.25, + 8, + 5.6 + ], + "to": [ + 9.9, + 8.1, + 8.95 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.05, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 5.5, + 7, + 7.875, + 7.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 9, + 4.125, + 9.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 6, + 9.375, + 6.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 4.5, + 10.625, + 4.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.375, + 1.625, + 0, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.375, + 2, + 0, + 3.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 8.1, + 5.6 + ], + "to": [ + 9.9, + 9.7, + 8.95 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.05, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 7, + 5.25, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 7, + 3.625, + 7.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 5, + 8.25, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 2, + 8.625, + 2.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 6.625, + 4, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 5, + 5.5, + 6.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.15, + 8, + 5.5 + ], + "to": [ + 5.25, + 9.7, + 9.05 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.05, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 5, + 9.625, + 5.875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 0, + 8.75, + 0.875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 9.5, + 5.625, + 10.375 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 1, + 8.75, + 1.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.125, + 2.75, + 9, + 1 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.125, + 9, + 2, + 10.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.25, + 8, + 8.95 + ], + "to": [ + 9.9, + 9.7, + 9.05 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.05, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 4, + 6.375, + 4.875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 9.5, + 6.125, + 10.375 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 0, + 6.875, + 0.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 6, + 9.625, + 6.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.375, + 6.625, + 7, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.875, + 7.5, + 5.5, + 7.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.25, + 8, + 5.5 + ], + "to": [ + 9.9, + 9.7, + 5.6 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.05, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 4.5, + 1, + 6.875, + 1.875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 9.5, + 6.625, + 10.375 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 2, + 6.875, + 2.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 9.5, + 7.125, + 10.375 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.375, + 8.125, + 0, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.875, + 8, + 2.5, + 8.125 + ], + "texture": "#0" + } + } + } + ], + "gui_light": "front", + "display": { + "firstperson_righthand": { + "rotation": [ + -176.93, + -29.4, + 108.89 + ], + "translation": [ + 0.25, + 2.25, + 0.25 + ] + }, + "firstperson_lefthand": { + "rotation": [ + 0, + 27.75, + 66.5 + ], + "translation": [ + 0.25, + 2.25, + 0.5 + ] + }, + "ground": { + "translation": [ + 0, + -2, + 0 + ], + "scale": [ + 0.9, + 0.9, + 0.9 + ] + }, + "gui": { + "rotation": [ + -135, + 145, + -180 + ], + "translation": [ + 0.75, + -2.5, + 0 + ], + "scale": [ + 2.05, + 2.05, + 2.05 + ] + }, + "head": { + "translation": [ + 0, + 6.25, + 0 + ] + }, + "fixed": { + "rotation": [ + -90, + 0, + 0 + ], + "translation": [ + -0.75, + 0.75, + 0 + ], + "scale": [ + 2.5, + 2.5, + 2.5 + ] + } + }, + "groups": [ + { + "name": "group", + "origin": [ + 8, + 0, + 8 + ], + "color": 0, + "children": [ + { + "name": "ammo", + "origin": [ + 8, + 0, + 8 + ], + "color": 0, + "children": [ + { + "name": "ammo", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23 + ] + }, + { + "name": "ammo", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "children": [ + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47 + ] + }, + { + "name": "ammo", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "children": [ + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71 + ] + }, + { + "name": "ammo", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "children": [ + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95 + ] + } + ] + }, + { + "name": "group", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "children": [ + { + "name": "group", + "origin": [ + 7.05, + 8, + 8 + ], + "color": 0, + "children": [ + 96, + 97, + 98, + 99, + 100 + ] + }, + 101, + 102, + 103, + 104, + 105 + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/custom/stim.json b/src/main/resources/assets/superbwarfare/models/custom/stim.json new file mode 100644 index 000000000..6737da0e5 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/custom/stim.json @@ -0,0 +1,2110 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 32, + 32 + ], + "elements": [ + { + "from": [ + 7.75, + 0.75, + 8.3 + ], + "to": [ + 8.25, + 6.8, + 9 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 4, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 0, + 4.25, + 3.03125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 0.34375, + 3.03125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 3.5, + 4.25, + 6.53125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.5, + 0, + 0.84375, + 3.03125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 9.34375, + 5.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 9, + 6, + 9.34375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.50858, + 3.25, + 8.73787 + ], + "to": [ + 7.85858, + 4.35, + 8.83787 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 7.60858, + 4.375, + 8.78787 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 0, + 8.6875, + 0.5625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 5, + 9.5625, + 5.5625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 1, + 8.6875, + 1.5625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 9.5, + 5.5625, + 10.0625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.6875, + 10.5625, + 2.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.6875, + 2.5, + 10.5, + 2.5625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.39645, + 5.75, + 8.14645 + ], + "to": [ + 8.09645, + 6.8, + 8.64645 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.44645, + 4.375, + 8.39645 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 7, + 5.34375, + 7.53125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 8, + 5.25, + 8.53125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 7, + 5.84375, + 7.53125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 5, + 8.25, + 5.53125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.34375, + 6.25, + 9, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.84375, + 9, + 6.5, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.68787, + 0, + 8.60858 + ], + "to": [ + 7.98787, + 6.2, + 8.90858 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 7.63787, + 4.375, + 8.85858 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 0, + 5.15625, + 3.09375 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 3.5, + 5.15625, + 6.59375 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 0, + 5.65625, + 3.09375 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 3.5, + 5.65625, + 6.59375 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.15625, + 6.15625, + 10, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.15625, + 6.5, + 10, + 6.65625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.49645, + 0, + 8.14645 + ], + "to": [ + 7.79645, + 6.2, + 8.64645 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.44645, + 4.375, + 8.39645 + ] + }, + "faces": { + "north": { + "uv": [ + 6, + 0, + 6.15625, + 3.09375 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 0, + 3.75, + 3.09375 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 3.5, + 6.15625, + 6.59375 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.5, + 3.5, + 0.75, + 6.59375 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.65625, + 3.25, + 9.5, + 3 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.65625, + 3.5, + 9.5, + 3.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.70858, + 0, + 8.35858 + ], + "to": [ + 8.29158, + 6.2, + 8.85858 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.95858, + 4.375, + 8.90858 + ] + }, + "faces": { + "north": { + "uv": [ + 2, + 0, + 2.28125, + 3.09375 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 3.5, + 1.25, + 6.59375 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 0, + 2.78125, + 3.09375 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 3.5, + 1.75, + 6.59375 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.28125, + 7.75, + 9, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.28125, + 9, + 8, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.70858, + 0, + 7.93431 + ], + "to": [ + 8.29158, + 6.2, + 8.43431 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.95858, + 4.375, + 8.08431 + ] + }, + "faces": { + "north": { + "uv": [ + 3, + 0, + 3.28125, + 3.09375 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 3.5, + 2.25, + 6.59375 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 3.5, + 0.28125, + 6.59375 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 3.5, + 2.75, + 6.59375 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.28125, + 8.25, + 9, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.78125, + 9, + 8.5, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.68787, + 0, + 7.88431 + ], + "to": [ + 7.98787, + 6.2, + 8.18431 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 7.63787, + 4.375, + 7.93431 + ] + }, + "faces": { + "north": { + "uv": [ + 6.5, + 0, + 6.65625, + 3.09375 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 3.5, + 6.65625, + 6.59375 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 7, + 0.15625, + 10.09375 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 0, + 7.15625, + 3.09375 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.15625, + 7.15625, + 10, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.15625, + 7.5, + 10, + 7.65625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.50858, + 3.25, + 7.95503 + ], + "to": [ + 7.85858, + 4.35, + 8.05503 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 7.60858, + 4.375, + 8.00503 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 2, + 8.6875, + 2.5625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 9.5, + 6.0625, + 10.0625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 3, + 8.6875, + 3.5625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 6, + 9.5625, + 6.5625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.1875, + 10.5625, + 3, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.6875, + 3, + 10.5, + 3.0625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.75, + 0.75, + 7.79289 + ], + "to": [ + 8.25, + 6.8, + 8.39289 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 4.375, + 7.84289 + ] + }, + "faces": { + "north": { + "uv": [ + 4.5, + 0, + 4.75, + 3.03125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 0, + 1.3125, + 3.03125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 3.5, + 4.75, + 6.53125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 0, + 1.8125, + 3.03125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 7.3125, + 9, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 9, + 7.5, + 9.3125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.14142, + 3.25, + 7.95503 + ], + "to": [ + 8.49142, + 4.35, + 8.05503 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 8.39142, + 4.375, + 8.00503 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 4, + 8.6875, + 4.5625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 9.5, + 6.5625, + 10.0625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 5, + 8.6875, + 5.5625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 9.5, + 7.0625, + 10.0625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.6875, + 10.5625, + 3.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.6875, + 3.5, + 10.5, + 3.5625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.20355, + 0, + 8.14645 + ], + "to": [ + 8.50355, + 6.2, + 8.64645 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.55355, + 4.375, + 8.39645 + ] + }, + "faces": { + "north": { + "uv": [ + 0.5, + 7, + 0.65625, + 10.09375 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 3.5, + 3.25, + 6.59375 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 7, + 1.15625, + 10.09375 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 3.5, + 3.75, + 6.59375 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.65625, + 4.25, + 9.5, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.65625, + 4.5, + 9.5, + 4.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.90355, + 5.75, + 8.14645 + ], + "to": [ + 8.60355, + 6.8, + 8.64645 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.55355, + 4.375, + 8.39645 + ] + }, + "faces": { + "north": { + "uv": [ + 6, + 7, + 6.34375, + 7.53125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 8, + 5.75, + 8.53125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 7, + 6.84375, + 7.53125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 8, + 6.25, + 8.53125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.34375, + 6.75, + 9, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.34375, + 9, + 7, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.01213, + 0, + 8.60858 + ], + "to": [ + 8.31213, + 6.2, + 8.90858 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 8.36213, + 4.375, + 8.85858 + ] + }, + "faces": { + "north": { + "uv": [ + 1.5, + 7, + 1.65625, + 10.09375 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 7, + 2.15625, + 10.09375 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 7, + 2.65625, + 10.09375 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 7, + 3.15625, + 10.09375 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.15625, + 8.15625, + 10, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.15625, + 8.5, + 10, + 8.65625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.01213, + 0, + 7.88431 + ], + "to": [ + 8.31213, + 6.2, + 8.18431 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 8.36213, + 4.375, + 7.93431 + ] + }, + "faces": { + "north": { + "uv": [ + 3.5, + 7, + 3.65625, + 10.09375 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 3.5, + 7.15625, + 6.59375 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 7, + 4.15625, + 10.09375 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 7, + 4.65625, + 10.09375 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.15625, + 9.15625, + 10, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.65625, + 10, + 9.5, + 10.15625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.34142, + 3.25, + 8.68787 + ], + "to": [ + 8.44142, + 4.35, + 9.03787 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 8.39142, + 4.375, + 8.78787 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 7, + 9.5625, + 7.5625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 6, + 8.6875, + 6.5625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 9.5, + 7.5625, + 10.0625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 7, + 8.6875, + 7.5625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.0625, + 10.6875, + 4, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5625, + 4, + 10.5, + 4.1875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.35858, + 0.9, + 7.95503 + ], + "to": [ + 7.85858, + 2.05, + 8.05503 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 7.60858, + 1.375, + 8.00503 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 7, + 7.25, + 7.5625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 9.5, + 8.0625, + 10.0625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 0, + 7.75, + 0.5625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 8, + 9.5625, + 8.5625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 9.5625, + 10, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 10, + 10, + 10.0625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.39645, + 0.9, + 8.14645 + ], + "to": [ + 7.49645, + 2.05, + 8.64645 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.44645, + 1.375, + 8.39645 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 9.5, + 8.5625, + 10.0625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 1, + 7.75, + 1.5625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 9.5, + 9.0625, + 10.0625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 2, + 7.75, + 2.5625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0.0625, + 10.75, + 0, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5625, + 0, + 10.5, + 0.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.35858, + 0.9, + 8.73787 + ], + "to": [ + 7.85858, + 2.05, + 8.83787 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 7.60858, + 1.375, + 8.78787 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 3, + 7.75, + 3.5625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 9, + 9.5625, + 9.5625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 4, + 7.75, + 4.5625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 0, + 10.0625, + 0.5625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0.75, + 10.5625, + 0.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 0.5, + 10.5, + 0.5625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.14142, + 0.9, + 7.95503 + ], + "to": [ + 8.64142, + 2.05, + 8.05503 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 8.39142, + 1.375, + 8.00503 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 5, + 7.75, + 5.5625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 1, + 10.0625, + 1.5625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 6, + 7.75, + 6.5625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 2, + 10.0625, + 2.5625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 10.5625, + 1, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 1, + 10.5, + 1.0625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.50355, + 0.9, + 8.14645 + ], + "to": [ + 8.60355, + 2.05, + 8.64645 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.55355, + 1.375, + 8.39645 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 3, + 10.0625, + 3.5625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 7, + 7.75, + 7.5625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 4, + 10.0625, + 4.5625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 0, + 8.25, + 0.5625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.5625, + 10.75, + 1.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5625, + 1.5, + 10.5, + 1.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.34142, + 0.9, + 8.53787 + ], + "to": [ + 8.44142, + 2.05, + 9.03787 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 8.39142, + 1.375, + 8.78787 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 10, + 5.0625, + 10.5625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 1, + 8.25, + 1.5625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 5, + 10.0625, + 5.5625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 2, + 8.25, + 2.5625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.0625, + 10.75, + 2, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5625, + 2, + 10.5, + 2.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.35858, + 5.75, + 8.48787 + ], + "to": [ + 7.85858, + 6.8, + 8.83787 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 7.60858, + 6.675, + 8.78787 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 6, + 8.25, + 6.53125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 1, + 9.1875, + 1.53125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 8, + 6.75, + 8.53125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 2, + 9.1875, + 2.53125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 0.1875, + 9.5, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 0.5, + 9.5, + 0.6875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.35858, + 5.75, + 7.95503 + ], + "to": [ + 7.85858, + 6.8, + 8.30503 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 7.60858, + 6.675, + 8.00503 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 8, + 7.25, + 8.53125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 3, + 9.1875, + 3.53125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 7, + 8.25, + 7.53125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 4, + 9.1875, + 4.53125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 1.1875, + 9.5, + 1 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 1.5, + 9.5, + 1.6875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.09142, + 5.75, + 8.53787 + ], + "to": [ + 8.44142, + 6.8, + 9.03787 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 8.39142, + 6.675, + 8.78787 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 9, + 5.1875, + 9.53125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 8, + 7.75, + 8.53125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 5, + 9.1875, + 5.53125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 8, + 8.25, + 8.53125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.6875, + 2.25, + 9.5, + 2 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.6875, + 2.5, + 9.5, + 2.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.14142, + 5.75, + 7.95503 + ], + "to": [ + 8.64142, + 6.8, + 8.30503 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 8.39142, + 6.675, + 8.00503 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 3, + 8.25, + 3.53125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 8, + 8.6875, + 8.53125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 4, + 8.25, + 4.53125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 0, + 9.1875, + 0.53125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 8.6875, + 9, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 9, + 9, + 9.1875 + ], + "texture": "#0" + } + } + } + ], + "gui_light": "front", + "display": { + "thirdperson_righthand": { + "translation": [ + 0, + 6.5, + 1 + ] + }, + "thirdperson_lefthand": { + "translation": [ + 0, + 6.5, + 1 + ] + }, + "firstperson_righthand": { + "rotation": [ + -10, + 0, + -6.5 + ], + "translation": [ + 0, + 7.5, + 0 + ] + }, + "firstperson_lefthand": { + "rotation": [ + -10, + 0, + -6.5 + ], + "translation": [ + 0, + 7.5, + 0 + ] + }, + "ground": { + "translation": [ + 0, + 4.75, + 0 + ] + }, + "gui": { + "rotation": [ + -141.59, + 10.4, + -147.17 + ], + "translation": [ + 6, + 6.25, + 0 + ], + "scale": [ + 2.6, + 2.6, + 2.6 + ] + }, + "head": { + "rotation": [ + -64.5, + 0, + 0 + ], + "translation": [ + 0, + 8, + -15.5 + ], + "scale": [ + 1.3, + 1.3, + 1.3 + ] + }, + "fixed": { + "rotation": [ + 0, + 0, + -135.5 + ], + "translation": [ + 6.25, + -6, + 0 + ], + "scale": [ + 2, + 2, + 2 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/custom/taser_electrode.json b/src/main/resources/assets/superbwarfare/models/custom/taser_electrode.json new file mode 100644 index 000000000..35a434989 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/custom/taser_electrode.json @@ -0,0 +1,879 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 32, + 32 + ], + "elements": [ + { + "from": [ + 7.55, + 7.55, + 5.9 + ], + "to": [ + 8.45, + 9.05, + 6 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 8.3, + 8.75 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 5.5, + 4.5, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 5.5, + 9.625, + 6.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 6, + 0.5, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 9.5, + 6.125, + 10.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 10.125, + 5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 5, + 10, + 5.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.35, + 7.45, + 5.95 + ], + "to": [ + 8.65, + 9.15, + 7.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 8.3, + 8.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 5, + 0.625, + 5.875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 4, + 1.75, + 4.875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 5, + 1.625, + 5.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 4, + 2.75, + 4.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.625, + 6.25, + 3, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.125, + 3, + 5.5, + 3.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 7.15, + 7.25 + ], + "to": [ + 8.5, + 9.55, + 7.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.05, + 8.3, + 8.75 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 2, + 4.5, + 3.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 8, + 6.125, + 9.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 4, + 3.5, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 6, + 8.125, + 7.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 10.125, + 5.5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 5.5, + 10, + 5.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 9.09825, + 6.88986 + ], + "to": [ + 8.5, + 9.49825, + 7.33986 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 9.29825, + 7.16486 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 6.5, + 9, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 6, + 10.25, + 6.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 7, + 9, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 10, + 6.75, + 10.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 7.75, + 8.5, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 8.5, + 8, + 8.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 7.20175, + 6.88986 + ], + "to": [ + 8.5, + 7.60175, + 7.33986 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 7.40175, + 7.16486 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 8, + 9, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 6.5, + 10.25, + 6.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 8.5, + 9, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 10, + 7.25, + 10.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0.5, + 9.25, + 0, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 9, + 0.5, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 7.0257, + 6.16269 + ], + "to": [ + 8.5, + 7.4257, + 6.61269 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 7.4757, + 7.18769 + ] + }, + "faces": { + "north": { + "uv": [ + 1, + 9, + 1.5, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 7, + 10.25, + 7.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 9, + 2, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 10, + 7.75, + 10.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 9.25, + 2, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 9, + 2.5, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 8.92605, + 6.12411 + ], + "to": [ + 8.5, + 9.32605, + 6.57411 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 9.12605, + 6.39911 + ] + }, + "faces": { + "north": { + "uv": [ + 3, + 9, + 3.5, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 7.5, + 10.25, + 7.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 9, + 4, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 10, + 8.25, + 10.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 4.25, + 9, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 9, + 4.5, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 9.07779, + 6.48425 + ], + "to": [ + 8.5, + 9.37779, + 6.93425 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 9.17779, + 6.05925 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 8, + 10.5, + 8.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 8.5, + 10.75, + 8.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 10, + 9, + 10.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 10.5, + 9.25, + 10.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 4.75, + 9, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 9, + 5, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 7.28, + 6.48425 + ], + "to": [ + 8.5, + 7.51, + 6.93425 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 9.17221, + 5.85925 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 8.5, + 10.5, + 8.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 9, + 10.75, + 9.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 10, + 9.5, + 10.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 10.5, + 9.75, + 10.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 5.25, + 9, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 9, + 5.5, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 7.98995, + 7.93076 + ], + "to": [ + 8.75, + 8.78995, + 8.73076 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 8, + 9.28995, + 7.83076 + ] + }, + "faces": { + "north": { + "uv": [ + 6.5, + 4, + 7.25, + 4.375 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 8.5, + 4.875, + 8.875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 6.5, + 5.25, + 6.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 8.5, + 5.375, + 8.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 4.875, + 6.5, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 5, + 6.5, + 5.375 + ], + "texture": "#0" + } + } + } + ], + "gui_light": "front", + "display": { + "thirdperson_righthand": { + "translation": [ + 0, + -0.25, + 2 + ] + }, + "thirdperson_lefthand": { + "translation": [ + 0, + -0.25, + 2 + ] + }, + "firstperson_righthand": { + "rotation": [ + 85.36, + -8.76, + 9.32 + ], + "translation": [ + 0, + 1.5, + 2 + ] + }, + "firstperson_lefthand": { + "rotation": [ + 85.36, + -8.76, + 9.32 + ], + "translation": [ + 0, + 1.5, + 2 + ] + }, + "gui": { + "rotation": [ + -134.25, + 45, + -180 + ], + "translation": [ + 1.75, + 1, + 0 + ], + "scale": [ + 3, + 3, + 3 + ] + }, + "head": { + "translation": [ + 0, + 10.25, + -1.25 + ] + }, + "fixed": { + "translation": [ + 0, + 0.5, + 1.25 + ], + "scale": [ + 1.5, + 1.5, + 1.5 + ] + } + }, + "groups": [ + { + "name": "group", + "origin": [ + 8, + 9.28995, + 4.83076 + ], + "color": 0, + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9 + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/aa12.item.json b/src/main/resources/assets/superbwarfare/models/displaysettings/aa12.item.json new file mode 100644 index 000000000..ca0479a46 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/aa12.item.json @@ -0,0 +1,51 @@ +{ + "credit": "Made with Blockbench", + "parent": "builtin/entity", + "texture_size": [ + 256, + 256 + ], + "display": { + "firstperson_righthand": { + "translation": [ + -4.75, + -2.75, + -4.5 + ], + "scale": [ + 2, + 2, + 2 + ] + }, + "firstperson_lefthand": { + "translation": [ + 8.75, + -61, + -21 + ], + "scale": [ + 0, + 0, + 0 + ] + }, + "gui": { + "rotation": [ + 165.69, + -39.63, + 178.66 + ], + "translation": [ + -2.4, + -4.75, + 0 + ], + "scale": [ + 0.21, + 0.21, + 0.21 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/ak12.item.json b/src/main/resources/assets/superbwarfare/models/displaysettings/ak12.item.json new file mode 100644 index 000000000..c40dccca4 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/ak12.item.json @@ -0,0 +1,47 @@ +{ + "credit": "Made with Blockbench", + "parent": "builtin/entity", + "texture_size": [ + 128, + 128 + ], + "gui_light": "front", + "display": { + "firstperson_righthand": { + "translation": [ + -6.5, + 3.5, + 4 + ], + "scale": [ + 1, + 1, + 1.15 + ] + }, + "firstperson_lefthand": { + "scale": [ + 0, + 0, + 0 + ] + }, + "gui": { + "rotation": [ + 165.69, + -39.63, + 178.66 + ], + "translation": [ + -2.25, + -0.5, + 0 + ], + "scale": [ + 0.72, + 0.72, + 0.72 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/ak47.item.json b/src/main/resources/assets/superbwarfare/models/displaysettings/ak47.item.json new file mode 100644 index 000000000..2f88fca35 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/ak47.item.json @@ -0,0 +1,29 @@ +{ + "credit": "Made with Blockbench", + "parent": "builtin/entity", + "texture_size": [ + 128, + 128 + ], + "display": { + "firstperson_righthand": { + "translation": [ + -6.5, + 3.5, + 4.5 + ], + "scale": [ + 1, + 1, + 1.2 + ] + }, + "firstperson_lefthand": { + "scale": [ + 0, + 0, + 0 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/bocek.item.json b/src/main/resources/assets/superbwarfare/models/displaysettings/bocek.item.json new file mode 100644 index 000000000..e51b6ff0c --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/bocek.item.json @@ -0,0 +1,46 @@ +{ + "credit": "Made with Blockbench", + "parent": "builtin/entity", + "texture_size": [ + 64, + 64 + ], + "display": { + "firstperson_righthand": { + "translation": [ + -10.25, + -2.5, + -7.25 + ] + }, + "firstperson_lefthand": { + "translation": [ + -80, + -80, + -80 + ], + "scale": [ + 0, + 0, + 0 + ] + }, + "gui": { + "rotation": [ + 165.69, + -39.63, + 178.66 + ], + "translation": [ + 0.25, + -3.5, + 0 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/c4.item.json b/src/main/resources/assets/superbwarfare/models/displaysettings/c4.item.json new file mode 100644 index 000000000..44fee5716 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/c4.item.json @@ -0,0 +1,115 @@ +{ + "credit": "Made with Blockbench", + "parent": "builtin/entity", + "texture_size": [ + 32, + 32 + ], + "gui_light": "front", + "display": { + "thirdperson_righthand": { + "rotation": [ + 45, + 50, + 85 + ], + "translation": [ + -2, + 0, + 1.5 + ], + "scale": [ + 0.3, + 0.3, + 0.3 + ] + }, + "thirdperson_lefthand": { + "rotation": [ + 45, + 50, + 85 + ], + "translation": [ + -2, + 0, + 1.5 + ], + "scale": [ + 0.3, + 0.3, + 0.3 + ] + }, + "firstperson_righthand": { + "rotation": [ + 0, + 50, + 85 + ], + "translation": [ + 0, + 1.5, + 0 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] + }, + "firstperson_lefthand": { + "rotation": [ + 0, + -130, + -95 + ], + "translation": [ + 0, + 1.5, + 0 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] + }, + "ground": { + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + 0, + 4 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] + }, + "gui": { + "rotation": [ + 90, + 90, + 0 + ] + }, + "fixed": { + "rotation": [ + -90, + -90, + 0 + ], + "translation": [ + 0, + 0, + -7 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/claymore.item.json b/src/main/resources/assets/superbwarfare/models/displaysettings/claymore.item.json new file mode 100644 index 000000000..2b7291f20 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/claymore.item.json @@ -0,0 +1,117 @@ +{ + "credit": "Made with Blockbench", + "parent": "builtin/entity", + "texture_size": [ + 32, + 32 + ], + "gui_light": "front", + "display": { + "thirdperson_righthand": { + "rotation": [ + -90, + -90, + -180 + ], + "translation": [ + 0, + -2.5, + -6 + ], + "scale": [ + 0.8, + 0.8, + 0.8 + ] + }, + "thirdperson_lefthand": { + "rotation": [ + -90, + -90, + -180 + ], + "translation": [ + 0, + -2.5, + -6 + ], + "scale": [ + 0.8, + 0.8, + 0.8 + ] + }, + "firstperson_righthand": { + "rotation": [ + 6.25, + 0, + 4.5 + ], + "translation": [ + -8.75, + 1.5, + 4.25 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + }, + "firstperson_lefthand": { + "translation": [ + -5.75, + -60, + 2 + ] + }, + "ground": { + "translation": [ + 0, + -1, + 0 + ], + "scale": [ + 0.8, + 0.8, + 0.8 + ] + }, + "gui": { + "rotation": [ + 45, + -135, + 0 + ], + "translation": [ + 0.25, + -4, + 0 + ], + "scale": [ + 1.2, + 1.2, + 1.2 + ] + }, + "head": { + "translation": [ + 0, + 6.25, + -1.25 + ] + }, + "fixed": { + "translation": [ + -0.5, + -7, + 0 + ], + "scale": [ + 1.1, + 1.1, + 1.1 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/detonator.item.json b/src/main/resources/assets/superbwarfare/models/displaysettings/detonator.item.json new file mode 100644 index 000000000..5d70a85bd --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/detonator.item.json @@ -0,0 +1,93 @@ +{ + "credit": "Made with Blockbench", + "parent": "builtin/entity", + "gui_light": "front", + "display": { + "thirdperson_righthand": { + "translation": [ + -1, + -3.25, + 0.75 + ] + }, + "thirdperson_lefthand": { + "translation": [ + -1, + -3.25, + 0.75 + ] + }, + "firstperson_righthand": { + "rotation": [ + 17, + 0, + -12.25 + ], + "translation": [ + -2.5, + 3, + 0 + ] + }, + "firstperson_lefthand": { + "rotation": [ + 17, + 0, + -12.25 + ], + "translation": [ + -2.5, + 3, + 0 + ] + }, + "ground": { + "translation": [ + 0, + -1.25, + 0 + ] + }, + "gui": { + "rotation": [ + 90, + 45, + -90 + ], + "translation": [ + -4, + -3.5, + 0 + ], + "scale": [ + 2, + 2, + 2 + ] + }, + "head": { + "translation": [ + 0, + 6.5, + 0 + ] + }, + "fixed": { + "rotation": [ + 0, + -87.5, + 0 + ], + "translation": [ + 0.75, + -4.75, + 0 + ], + "scale": [ + 1.5, + 1.5, + 1.5 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/devotion.item.json b/src/main/resources/assets/superbwarfare/models/displaysettings/devotion.item.json new file mode 100644 index 000000000..39f1553d8 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/devotion.item.json @@ -0,0 +1,112 @@ +{ + "credit": "Made with Blockbench", + "parent": "builtin/entity", + "texture_size": [ + 64, + 64 + ], + "gui_light": "front", + "display": { + "thirdperson_righthand": { + "translation": [ + -1.25, + 0.25, + -2 + ], + "scale": [ + 0.6, + 0.6, + 0.6 + ] + }, + "thirdperson_lefthand": { + "translation": [ + 0, + 0.25, + -4.25 + ], + "scale": [ + 0.55, + 0.55, + 0.55 + ] + }, + "firstperson_righthand": { + "translation": [ + -0.25, + -8.5, + -14.25 + ], + "scale": [ + 4, + 4, + 4 + ] + }, + "firstperson_lefthand": { + "translation": [ + -6, + 2, + -6.5 + ], + "scale": [ + 0, + 0, + 0 + ] + }, + "ground": { + "translation": [ + 0, + 3, + 0 + ], + "scale": [ + 0.55, + 0.55, + 0.55 + ] + }, + "gui": { + "rotation": [ + 30, + -145, + 0 + ], + "translation": [ + -2, + 0.75, + 0 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + }, + "head": { + "rotation": [ + 0, + -90, + 0 + ] + }, + "fixed": { + "rotation": [ + 0, + 90, + 0 + ], + "translation": [ + -10.25, + -1.75, + -2 + ], + "scale": [ + 1.1, + 1.1, + 1.1 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/glock17.item.json b/src/main/resources/assets/superbwarfare/models/displaysettings/glock17.item.json new file mode 100644 index 000000000..4ae83a3e3 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/glock17.item.json @@ -0,0 +1,107 @@ +{ + "credit": "Made with Blockbench", + "parent": "builtin/entity", + "texture_size": [ + 64, + 64 + ], + "gui_light": "front", + "display": { + "thirdperson_righthand": { + "translation": [ + 0, + 0, + -0.5 + ], + "scale": [ + 0.35, + 0.35, + 0.35 + ] + }, + "thirdperson_lefthand": { + "translation": [ + 0, + 0, + -0.5 + ], + "scale": [ + 0.35, + 0.35, + 0.35 + ] + }, + "firstperson_righthand": { + "translation": [ + -7.75, + 3.5, + -1.5 + ] + }, + "firstperson_lefthand": { + "translation": [ + 80, + -80, + 80 + ], + "scale": [ + 0, + 0, + 0 + ] + }, + "ground": { + "translation": [ + 0, + 5, + 0 + ], + "scale": [ + 0.35, + 0.35, + 0.35 + ] + }, + "gui": { + "rotation": [ + 165.69, + -39.63, + 167 + ], + "translation": [ + -0.25, + 0, + 0 + ], + "scale": [ + 1.7, + 1.7, + 1.7 + ] + }, + "head": { + "translation": [ + 0, + 10.25, + -1.25 + ] + }, + "fixed": { + "rotation": [ + 0, + 90, + 0 + ], + "translation": [ + -1, + -0.5, + -1 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/hk416.item.json b/src/main/resources/assets/superbwarfare/models/displaysettings/hk416.item.json new file mode 100644 index 000000000..8b7c1220b --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/hk416.item.json @@ -0,0 +1,34 @@ +{ + "credit": "Made with Blockbench", + "parent": "builtin/entity", + "texture_size": [ + 128, + 128 + ], + "display": { + "firstperson_righthand": { + "translation": [ + 4.25, + -13.5, + -26 + ], + "scale": [ + 4, + 4, + 4 + ] + }, + "firstperson_lefthand": { + "translation": [ + -3.5, + 2.75, + -4 + ], + "scale": [ + 0.02, + 0, + 0 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/homemade_shotgun.item.json b/src/main/resources/assets/superbwarfare/models/displaysettings/homemade_shotgun.item.json new file mode 100644 index 000000000..4230a2743 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/homemade_shotgun.item.json @@ -0,0 +1,102 @@ +{ + "credit": "Made with Blockbench", + "parent": "builtin/entity", + "texture_size": [ + 64, + 64 + ], + "gui_light": "front", + "display": { + "thirdperson_righthand": { + "translation": [ + 0, + 5.5, + -0.25 + ] + }, + "thirdperson_lefthand": { + "scale": [ + 0, + 0, + 0 + ] + }, + "firstperson_righthand": { + "translation": [ + -1.5, + -12.5, + -26.5 + ], + "scale": [ + 3, + 3, + 3 + ] + }, + "firstperson_lefthand": { + "scale": [ + 0, + 0, + 0 + ] + }, + "ground": { + "translation": [ + 0, + 4.25, + 0 + ], + "scale": [ + 1.2, + 1.2, + 1.2 + ] + }, + "gui": { + "rotation": [ + 90, + 45, + -90 + ], + "translation": [ + -5.75, + -1.5, + 0 + ], + "scale": [ + 1.6, + 1.6, + 1.6 + ] + }, + "head": { + "translation": [ + 0, + 23.75, + 0 + ], + "scale": [ + 3, + 3, + 3 + ] + }, + "fixed": { + "rotation": [ + 90, + -45, + 90 + ], + "translation": [ + -6.5, + 7.5, + 0 + ], + "scale": [ + 2, + 2, + 2 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/hunting_rifle.item.json b/src/main/resources/assets/superbwarfare/models/displaysettings/hunting_rifle.item.json new file mode 100644 index 000000000..f12d4a1a6 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/hunting_rifle.item.json @@ -0,0 +1,46 @@ +{ + "credit": "Made with Blockbench", + "parent": "builtin/entity", + "texture_size": [ + 128, + 128 + ], + "display": { + "firstperson_righthand": { + "translation": [ + -7, + 3.5, + 2.75 + ] + }, + "firstperson_lefthand": { + "translation": [ + 0, + -3.75, + 0 + ], + "scale": [ + 0, + 0, + 0 + ] + }, + "gui": { + "rotation": [ + 165.69, + -39.63, + 178.66 + ], + "translation": [ + -1, + -0.75, + 0 + ], + "scale": [ + 0.35, + 0.35, + 0.35 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/javelin.item.json b/src/main/resources/assets/superbwarfare/models/displaysettings/javelin.item.json new file mode 100644 index 000000000..76556e937 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/javelin.item.json @@ -0,0 +1,61 @@ +{ + "credit": "Made with Blockbench", + "parent": "builtin/entity", + "texture_size": [ + 128, + 128 + ], + "gui_light": "front", + "display": { + "thirdperson_righthand": { + "translation": [ + -5.5, + -2.25, + 3.75 + ] + }, + "thirdperson_lefthand": { + "scale": [ + 0, + 0, + 0 + ] + }, + "firstperson_righthand": { + "rotation": [ + 0, + 0, + 4.75 + ], + "translation": [ + -3.75, + -4.75, + 0.75 + ] + }, + "firstperson_lefthand": { + "scale": [ + 0, + 0, + 0 + ] + }, + "gui": { + "rotation": [ + 165.69, + -39.63, + 178.66 + ], + "translation": [ + 3.5, + -2.5, + 0 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/k98.item.json b/src/main/resources/assets/superbwarfare/models/displaysettings/k98.item.json new file mode 100644 index 000000000..274d72564 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/k98.item.json @@ -0,0 +1,47 @@ +{ + "credit": "Made with Blockbench", + "parent": "builtin/entity", + "texture_size": [ + 256, + 256 + ], + "gui_light": "front", + "display": { + "firstperson_righthand": { + "translation": [ + -6.75, + 3, + 3 + ], + "scale": [ + 1.05, + 1.05, + 1.25 + ] + }, + "firstperson_lefthand": { + "scale": [ + 0, + 0, + 0 + ] + }, + "gui": { + "rotation": [ + 165.69, + -39.63, + 178.66 + ], + "translation": [ + -1.9, + -3.25, + 0 + ], + "scale": [ + 0.18, + 0.18, + 0.18 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/lightsaber.item.json b/src/main/resources/assets/superbwarfare/models/displaysettings/lightsaber.item.json new file mode 100644 index 000000000..38102c6c8 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/lightsaber.item.json @@ -0,0 +1,122 @@ +{ + "credit": "Made with Blockbench", + "parent": "builtin/entity", + "texture_size": [ + 64, + 64 + ], + "gui_light": "front", + "display": { + "thirdperson_righthand": { + "translation": [ + 0, + -7, + 1.5 + ], + "scale": [ + 1.2, + 1.2, + 1.2 + ] + }, + "thirdperson_lefthand": { + "translation": [ + 0, + -7, + 1.5 + ], + "scale": [ + 1.2, + 1.2, + 1.2 + ] + }, + "firstperson_righthand": { + "rotation": [ + 3, + 0, + -9 + ], + "translation": [ + -1.5, + -11, + 0 + ], + "scale": [ + 1.7, + 1.7, + 1.7 + ] + }, + "firstperson_lefthand": { + "rotation": [ + 3, + 0, + -9 + ], + "translation": [ + -1.5, + -11, + 0 + ], + "scale": [ + 1.7, + 1.7, + 1.7 + ] + }, + "ground": { + "translation": [ + 0, + -4, + 0 + ] + }, + "gui": { + "rotation": [ + -90, + -45, + -90 + ], + "translation": [ + -9.5, + -9, + 0 + ] + }, + "head": { + "rotation": [ + -65, + 0, + 0 + ], + "translation": [ + 0, + 3, + -1.5 + ], + "scale": [ + 2.2, + 2.2, + 2.2 + ] + }, + "fixed": { + "rotation": [ + -90, + 45, + 90 + ], + "translation": [ + 11.5, + -11.25, + 0 + ], + "scale": [ + 1.2, + 1.2, + 1.2 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/lunge_mine.json b/src/main/resources/assets/superbwarfare/models/displaysettings/lunge_mine.json new file mode 100644 index 000000000..9ab062bfa --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/lunge_mine.json @@ -0,0 +1,114 @@ +{ + "credit": "Made with Blockbench", + "parent": "builtin/entity", + "texture_size": [ + 32, + 32 + ], + "display": { + "thirdperson_righthand": { + "rotation": [ + 67.5, + 7, + 0 + ], + "translation": [ + -1.75, + 2.5, + -0.25 + ], + "scale": [ + 1.1, + 1.1, + 1.2 + ] + }, + "thirdperson_lefthand": { + "scale": [ + 0, + 0, + 0 + ] + }, + "firstperson_righthand": { + "rotation": [ + 7.14, + -1.62, + 11.61 + ], + "translation": [ + -3.75, + -1, + 0 + ], + "scale": [ + 1.2, + 1.2, + 1.3 + ] + }, + "firstperson_lefthand": { + "scale": [ + 0, + 0, + 0 + ] + }, + "ground": { + "rotation": [ + -90, + 0, + 0 + ], + "translation": [ + 0, + 24.75, + 0 + ] + }, + "gui": { + "rotation": [ + 138.65, + -34.86, + 151.18 + ], + "translation": [ + 0, + -0.25, + 0 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] + }, + "head": { + "rotation": [ + -90, + 0, + 0 + ], + "translation": [ + 0, + 29.75, + 0 + ] + }, + "fixed": { + "rotation": [ + 90, + 45, + -90 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] + } + }, + "textures": { + "particle": "item/lunge_mine" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/m1911.item.json b/src/main/resources/assets/superbwarfare/models/displaysettings/m1911.item.json new file mode 100644 index 000000000..da3468e52 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/m1911.item.json @@ -0,0 +1,107 @@ +{ + "credit": "Made with Blockbench", + "parent": "builtin/entity", + "texture_size": [ + 64, + 64 + ], + "gui_light": "front", + "display": { + "thirdperson_righthand": { + "translation": [ + 0, + 0, + -0.5 + ], + "scale": [ + 0.35, + 0.35, + 0.35 + ] + }, + "thirdperson_lefthand": { + "translation": [ + 0, + 0, + -0.5 + ], + "scale": [ + 0.35, + 0.35, + 0.35 + ] + }, + "firstperson_righthand": { + "translation": [ + -7.75, + 3.75, + -1.25 + ] + }, + "firstperson_lefthand": { + "translation": [ + 80, + -80, + 80 + ], + "scale": [ + 0, + 0, + 0 + ] + }, + "ground": { + "translation": [ + 0, + 5, + 0 + ], + "scale": [ + 0.35, + 0.35, + 0.35 + ] + }, + "gui": { + "rotation": [ + 165.69, + -39.63, + 167 + ], + "translation": [ + -0.25, + 0, + 0 + ], + "scale": [ + 1.7, + 1.7, + 1.7 + ] + }, + "head": { + "translation": [ + 0, + 10.25, + -1.25 + ] + }, + "fixed": { + "rotation": [ + 0, + 90, + 0 + ], + "translation": [ + -1, + -0.5, + -1 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/m4.item.json b/src/main/resources/assets/superbwarfare/models/displaysettings/m4.item.json new file mode 100644 index 000000000..c68c1011d --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/m4.item.json @@ -0,0 +1,104 @@ +{ + "credit": "Made with Blockbench", + "parent": "builtin/entity", + "texture_size": [ + 128, + 128 + ], + "display": { + "thirdperson_righthand": { + "translation": [ + 0, + 0.75, + -3.25 + ], + "scale": [ + 0.55, + 0.55, + 0.55 + ] + }, + "thirdperson_lefthand": { + "translation": [ + 0, + 0.75, + -3.25 + ], + "scale": [ + 0.55, + 0.55, + 0.55 + ] + }, + "firstperson_righthand": { + "translation": [ + 2.75, + -13.5, + -29 + ], + "scale": [ + 4, + 4, + 4 + ] + }, + "firstperson_lefthand": { + "rotation": [ + 90, + 45, + -90 + ], + "translation": [ + 0.5, + -0.5, + 0 + ], + "scale": [ + 0, + 0, + 0 + ] + }, + "ground": { + "translation": [ + 0, + 3, + 0 + ], + "scale": [ + 0, + 0, + 0 + ] + }, + "gui": { + "rotation": [ + 30, + -145, + 0 + ], + "scale": [ + 0.6, + 0.6, + 0.6 + ] + }, + "fixed": { + "rotation": [ + 0, + 90, + 0 + ], + "translation": [ + -1.75, + -0.25, + -2 + ], + "scale": [ + 1.1, + 1.1, + 1.1 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/m60.item.json b/src/main/resources/assets/superbwarfare/models/displaysettings/m60.item.json new file mode 100644 index 000000000..c2ab9f7f9 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/m60.item.json @@ -0,0 +1,109 @@ +{ + "credit": "Made with Blockbench", + "parent": "builtin/entity", + "texture_size": [ + 128, + 128 + ], + "display": { + "thirdperson_righthand": { + "translation": [ + 0, + 2.5, + -5 + ], + "scale": [ + 0.6, + 0.6, + 0.6 + ] + }, + "thirdperson_lefthand": { + "translation": [ + 0, + 2.5, + -5 + ], + "scale": [ + 0.6, + 0.6, + 0.6 + ] + }, + "firstperson_righthand": { + "rotation": [ + 0, + 0, + 5 + ], + "translation": [ + 6, + -25, + -21 + ], + "scale": [ + 4, + 4, + 4 + ] + }, + "firstperson_lefthand": { + "translation": [ + -6, + 5.25, + -9 + ], + "scale": [ + 0, + 0, + 0 + ] + }, + "ground": { + "translation": [ + 0, + 3, + 0 + ], + "scale": [ + 0.6, + 0.6, + 0.6 + ] + }, + "gui": { + "rotation": [ + 25, + -145, + 0 + ], + "translation": [ + 0.25, + 0, + 0 + ], + "scale": [ + 0.55, + 0.55, + 0.55 + ] + }, + "fixed": { + "rotation": [ + 0, + 90, + 0 + ], + "translation": [ + 0, + 0, + -2 + ], + "scale": [ + 1.2, + 1.2, + 1.2 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/m79.item.json b/src/main/resources/assets/superbwarfare/models/displaysettings/m79.item.json new file mode 100644 index 000000000..37626590c --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/m79.item.json @@ -0,0 +1,121 @@ +{ + "credit": "Made with Blockbench", + "parent": "builtin/entity", + "texture_size": [ + 64, + 64 + ], + "display": { + "thirdperson_righthand": { + "rotation": [ + 10.25, + 0, + 0 + ], + "translation": [ + -1, + 0.25, + -5.75 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + }, + "thirdperson_lefthand": { + "translation": [ + -0.5, + -0.75, + -3.5 + ], + "scale": [ + 0, + 0, + 0 + ] + }, + "firstperson_righthand": { + "rotation": [ + 1, + 0, + 0 + ], + "translation": [ + -0.25, + -8.5, + -42.25 + ], + "scale": [ + 4, + 4, + 4 + ] + }, + "firstperson_lefthand": { + "translation": [ + -5.75, + -60, + 2 + ], + "scale": [ + 0, + 0, + 0 + ] + }, + "ground": { + "translation": [ + 0, + 1, + -4.25 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] + }, + "gui": { + "rotation": [ + 90, + 45, + -90 + ], + "translation": [ + -3.25, + 2.25, + 0 + ], + "scale": [ + 0.6, + 0.6, + 0.6 + ] + }, + "head": { + "translation": [ + 0, + 6.25, + -1.25 + ] + }, + "fixed": { + "rotation": [ + 90, + -45, + 90 + ], + "translation": [ + 5, + 3.5, + 0 + ], + "scale": [ + 0.9, + 0.9, + 0.9 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/m870.item.json b/src/main/resources/assets/superbwarfare/models/displaysettings/m870.item.json new file mode 100644 index 000000000..4912dfa30 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/m870.item.json @@ -0,0 +1,42 @@ +{ + "credit": "Made with Blockbench", + "parent": "builtin/entity", + "texture_size": [ + 256, + 256 + ], + "gui_light": "front", + "display": { + "firstperson_righthand": { + "translation": [ + -7.25, + 4.75, + 5.5 + ] + }, + "firstperson_lefthand": { + "scale": [ + 0, + 0, + 0 + ] + }, + "gui": { + "rotation": [ + 165.69, + -39.63, + 178.66 + ], + "translation": [ + -1.9, + -3.25, + 0 + ], + "scale": [ + 0.18, + 0.18, + 0.18 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/m98b.item.json b/src/main/resources/assets/superbwarfare/models/displaysettings/m98b.item.json new file mode 100644 index 000000000..b162bd78f --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/m98b.item.json @@ -0,0 +1,112 @@ +{ + "credit": "Made with Blockbench", + "parent": "builtin/entity", + "texture_size": [ + 128, + 128 + ], + "gui_light": "front", + "display": { + "thirdperson_righthand": { + "translation": [ + -1.25, + 0.25, + -2 + ], + "scale": [ + 0.6, + 0.6, + 0.6 + ] + }, + "thirdperson_lefthand": { + "translation": [ + 0, + 0.25, + -4.25 + ], + "scale": [ + 0.55, + 0.55, + 0.55 + ] + }, + "firstperson_righthand": { + "translation": [ + 0.25, + -10.75, + -17.25 + ], + "scale": [ + 4, + 4, + 4 + ] + }, + "firstperson_lefthand": { + "translation": [ + -6, + -10.75, + -6.5 + ], + "scale": [ + 0, + 0, + 0 + ] + }, + "ground": { + "translation": [ + 0, + 3, + 0 + ], + "scale": [ + 0.55, + 0.55, + 0.55 + ] + }, + "gui": { + "rotation": [ + 165.69, + -39.63, + 178.66 + ], + "translation": [ + -3.4, + -1, + 0 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] + }, + "head": { + "rotation": [ + 0, + -90, + 0 + ] + }, + "fixed": { + "rotation": [ + 0, + 90, + 0 + ], + "translation": [ + -10.25, + -1.75, + -2 + ], + "scale": [ + 1.1, + 1.1, + 1.1 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/marlin.item.json b/src/main/resources/assets/superbwarfare/models/displaysettings/marlin.item.json new file mode 100644 index 000000000..be5a4951e --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/marlin.item.json @@ -0,0 +1,34 @@ +{ + "credit": "Made with Blockbench", + "parent": "builtin/entity", + "texture_size": [ + 128, + 128 + ], + "display": { + "firstperson_righthand": { + "translation": [ + -7.25, + 3.75, + -0.5 + ] + }, + "gui": { + "rotation": [ + 165.69, + -39.63, + 178.66 + ], + "translation": [ + 0, + -0.25, + 0 + ], + "scale": [ + 0.55, + 0.55, + 0.55 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/minigun.item.json b/src/main/resources/assets/superbwarfare/models/displaysettings/minigun.item.json new file mode 100644 index 000000000..c686b0f82 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/minigun.item.json @@ -0,0 +1,114 @@ +{ + "credit": "Made with Blockbench", + "parent": "builtin/entity", + "texture_size": [ + 128, + 128 + ], + "display": { + "thirdperson_righthand": { + "rotation": [ + 75, + 0, + 0 + ], + "translation": [ + 0, + 13, + -3.25 + ], + "scale": [ + 0.75, + 0.75, + 0.75 + ] + }, + "thirdperson_lefthand": { + "rotation": [ + 75, + 0, + 0 + ], + "translation": [ + 0, + 13, + -3.25 + ], + "scale": [ + 0.75, + 0.75, + 0.75 + ] + }, + "firstperson_righthand": { + "rotation": [ + 0, + 0, + 11.5 + ], + "translation": [ + 25.25, + -50.75, + -66.5 + ], + "scale": [ + 4, + 4, + 4 + ] + }, + "firstperson_lefthand": { + "translation": [ + -4, + 0.5, + -7 + ] + }, + "ground": { + "translation": [ + 0, + 10, + 0 + ], + "scale": [ + 0.75, + 0.75, + 0.75 + ] + }, + "gui": { + "rotation": [ + 30, + -145, + 0 + ], + "translation": [ + -0.5, + 2, + 0 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] + }, + "fixed": { + "rotation": [ + 0, + 90, + 0 + ], + "translation": [ + -7, + 10, + -8.5 + ], + "scale": [ + 1.5, + 1.5, + 1.5 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/mk14ebr.item.json b/src/main/resources/assets/superbwarfare/models/displaysettings/mk14ebr.item.json new file mode 100644 index 000000000..bb9b6f505 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/mk14ebr.item.json @@ -0,0 +1,99 @@ +{ + "credit": "Made with Blockbench", + "parent": "builtin/entity", + "texture_size": [ + 128, + 128 + ], + "display": { + "thirdperson_righthand": { + "translation": [ + 0, + 0.5, + 0.75 + ], + "scale": [ + 0.55, + 0.55, + 0.55 + ] + }, + "thirdperson_lefthand": { + "translation": [ + -0.5, + 0, + -3.25 + ], + "scale": [ + 0.55, + 0.55, + 0.55 + ] + }, + "firstperson_righthand": { + "translation": [ + -6.25, + 2.85, + 5.25 + ] + }, + "firstperson_lefthand": { + "translation": [ + -1, + 3, + 2.5 + ], + "scale": [ + 0, + 0, + 0 + ] + }, + "ground": { + "translation": [ + 0, + -1.25, + 0 + ], + "scale": [ + 1.5, + 1.5, + 1.5 + ] + }, + "gui": { + "rotation": [ + 30, + -145, + 0 + ], + "translation": [ + -2, + 0, + 0 + ], + "scale": [ + 2.25, + 2.25, + 2.25 + ] + }, + "fixed": { + "rotation": [ + 0, + 90, + 0 + ], + "translation": [ + -1, + 1, + -2 + ], + "scale": [ + 1.1, + 1.1, + 1.1 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/ntw20.item.json b/src/main/resources/assets/superbwarfare/models/displaysettings/ntw20.item.json new file mode 100644 index 000000000..ff3e101b2 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/ntw20.item.json @@ -0,0 +1,22 @@ +{ + "credit": "Made with Blockbench", + "parent": "builtin/entity", + "texture_size": [ + 128, + 128 + ], + "display": { + "firstperson_righthand": { + "translation": [ + 9.25, + -21.25, + -28 + ], + "scale": [ + 4, + 4, + 4 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/qbz95.item.json b/src/main/resources/assets/superbwarfare/models/displaysettings/qbz95.item.json new file mode 100644 index 000000000..8019cec57 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/qbz95.item.json @@ -0,0 +1,42 @@ +{ + "credit": "Made with Blockbench", + "parent": "builtin/entity", + "texture_size": [ + 256, + 256 + ], + "gui_light": "front", + "display": { + "firstperson_righthand": { + "translation": [ + -5.25, + 0.25, + -1.25 + ] + }, + "firstperson_lefthand": { + "scale": [ + 0, + 0, + 0 + ] + }, + "gui": { + "rotation": [ + 165.69, + -39.63, + 178.66 + ], + "translation": [ + -1.9, + -3.25, + 0 + ], + "scale": [ + 0.18, + 0.18, + 0.18 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/rpg.item.json b/src/main/resources/assets/superbwarfare/models/displaysettings/rpg.item.json new file mode 100644 index 000000000..414809f29 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/rpg.item.json @@ -0,0 +1,117 @@ +{ + "credit": "Made with Blockbench", + "parent": "builtin/entity", + "texture_size": [ + 64, + 64 + ], + "gui_light": "front", + "display": { + "thirdperson_righthand": { + "translation": [ + 0, + 3.25, + -2 + ], + "scale": [ + 0.75, + 0.75, + 0.75 + ] + }, + "thirdperson_lefthand": { + "translation": [ + 0, + 3.25, + -2 + ], + "scale": [ + 0.75, + 0.75, + 0.75 + ] + }, + "firstperson_righthand": { + "rotation": [ + 0, + 0, + 3 + ], + "translation": [ + 6.25, + -5.75, + -20.5 + ], + "scale": [ + 4, + 4, + 4 + ] + }, + "firstperson_lefthand": { + "translation": [ + -4.5, + 9, + 4 + ], + "scale": [ + 0, + 0, + 0 + ] + }, + "ground": { + "translation": [ + 0, + 3, + 0 + ], + "scale": [ + 0.75, + 0.75, + 0.75 + ] + }, + "gui": { + "rotation": [ + -60, + 135, + 60 + ], + "translation": [ + 0, + 2, + 0 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] + }, + "head": { + "rotation": [ + 0, + -90, + 0 + ] + }, + "fixed": { + "rotation": [ + 0, + 90, + 0 + ], + "translation": [ + -1.5, + 5.25, + -2 + ], + "scale": [ + 1.5, + 1.5, + 1.5 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/rpg_head.item.json b/src/main/resources/assets/superbwarfare/models/displaysettings/rpg_head.item.json new file mode 100644 index 000000000..45e41b456 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/rpg_head.item.json @@ -0,0 +1,109 @@ +{ + "credit": "Made with Blockbench", + "parent": "builtin/entity", + "texture_size": [ + 128, + 128 + ], + "display": { + "thirdperson_righthand": { + "translation": [ + 0, + -5, + 1.25 + ], + "scale": [ + 0.6, + 0.6, + 0.6 + ] + }, + "thirdperson_lefthand": { + "translation": [ + 0, + -5, + 1.25 + ], + "scale": [ + 0.6, + 0.6, + 0.6 + ] + }, + "firstperson_righthand": { + "rotation": [ + 19.48, + 4.66, + -5.8 + ], + "translation": [ + -2.75, + -3.75, + -1.25 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] + }, + "firstperson_lefthand": { + "rotation": [ + 19.48, + 4.66, + -5.8 + ], + "translation": [ + -2.75, + -3.75, + -1.25 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] + }, + "ground": { + "scale": [ + 0.5, + 0.5, + 0.5 + ] + }, + "gui": { + "rotation": [ + 0, + 0, + -45 + ], + "translation": [ + -7.5, + -7.5, + 0 + ], + "scale": [ + 0.48, + 0.48, + 0.48 + ] + }, + "fixed": { + "rotation": [ + 0, + 0, + 45 + ], + "translation": [ + 9.25, + -9.5, + 0 + ], + "scale": [ + 0.6, + 0.6, + 0.6 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/rpk.item.json b/src/main/resources/assets/superbwarfare/models/displaysettings/rpk.item.json new file mode 100644 index 000000000..23ed603c6 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/rpk.item.json @@ -0,0 +1,104 @@ +{ + "credit": "Made with Blockbench", + "parent": "builtin/entity", + "texture_size": [ + 128, + 128 + ], + "display": { + "thirdperson_righthand": { + "translation": [ + 0, + 0.5, + 0.75 + ], + "scale": [ + 0.55, + 0.55, + 0.55 + ] + }, + "thirdperson_lefthand": { + "translation": [ + 0, + 0.5, + 0.75 + ], + "scale": [ + 0.55, + 0.55, + 0.55 + ] + }, + "firstperson_righthand": { + "translation": [ + -0.25, + -10, + -14.25 + ], + "scale": [ + 4, + 4, + 4 + ] + }, + "firstperson_lefthand": { + "translation": [ + -1, + 3, + 2.5 + ], + "scale": [ + 0, + 0, + 0 + ] + }, + "ground": { + "translation": [ + 0, + 3, + 0 + ], + "scale": [ + 0.55, + 0.55, + 0.55 + ] + }, + "gui": { + "rotation": [ + 165.69, + -39.63, + 178.66 + ], + "translation": [ + -2.75, + -1, + 0 + ], + "scale": [ + 0.6, + 0.6, + 0.6 + ] + }, + "fixed": { + "rotation": [ + 0, + 90, + 0 + ], + "translation": [ + 0.5, + -0.25, + -1.5 + ], + "scale": [ + 1.1, + 1.1, + 1.1 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/secondary_cataclysm.item.json b/src/main/resources/assets/superbwarfare/models/displaysettings/secondary_cataclysm.item.json new file mode 100644 index 000000000..6d3800a4c --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/secondary_cataclysm.item.json @@ -0,0 +1,104 @@ +{ + "credit": "Made with Blockbench", + "parent": "builtin/entity", + "texture_size": [ + 128, + 128 + ], + "display": { + "thirdperson_righthand": { + "translation": [ + 0, + 0.75, + -3.25 + ], + "scale": [ + 0.55, + 0.55, + 0.55 + ] + }, + "thirdperson_lefthand": { + "translation": [ + 0, + 0.75, + -3.25 + ], + "scale": [ + 0.55, + 0.55, + 0.55 + ] + }, + "firstperson_righthand": { + "translation": [ + 2.75, + -10, + -24 + ], + "scale": [ + 4, + 4, + 4 + ] + }, + "firstperson_lefthand": { + "rotation": [ + 90, + 45, + -90 + ], + "translation": [ + 0.5, + -0.5, + 0 + ], + "scale": [ + 0, + 0, + 0 + ] + }, + "ground": { + "translation": [ + 0, + 3, + 0 + ], + "scale": [ + 0, + 0, + 0 + ] + }, + "gui": { + "rotation": [ + 30, + -145, + 0 + ], + "scale": [ + 0.6, + 0.6, + 0.6 + ] + }, + "fixed": { + "rotation": [ + 0, + 90, + 0 + ], + "translation": [ + -1.75, + -0.25, + -2 + ], + "scale": [ + 1.1, + 1.1, + 1.1 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/sentinel.item.json b/src/main/resources/assets/superbwarfare/models/displaysettings/sentinel.item.json new file mode 100644 index 000000000..542f11331 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/sentinel.item.json @@ -0,0 +1,115 @@ +{ + "credit": "Made with Blockbench", + "parent": "builtin/entity", + "texture_size": [ + 128, + 128 + ], + "gui_light": "front", + "display": { + "thirdperson_lefthand": { + "rotation": [ + 90, + -90, + 0 + ], + "translation": [ + 0, + -2, + -1.25 + ], + "scale": [ + 1.1, + 1.1, + 1.1 + ] + }, + "firstperson_righthand": { + "translation": [ + 2.75, + -9, + -40.25 + ], + "scale": [ + 4, + 4, + 4 + ] + }, + "firstperson_lefthand": { + "rotation": [ + 13, + 36, + -17 + ], + "translation": [ + 0.25, + -80, + -0.25 + ], + "scale": [ + 0, + 0, + 0 + ] + }, + "ground": { + "translation": [ + 0, + 1.5, + 0 + ], + "scale": [ + 1.2, + 1.2, + 1.2 + ] + }, + "gui": { + "rotation": [ + 30, + -145, + 0 + ], + "scale": [ + 0.6, + 0.6, + 0.6 + ] + }, + "head": { + "rotation": [ + 0, + -90, + 0 + ], + "translation": [ + 0, + 17.25, + 0 + ], + "scale": [ + 2.5, + 2.5, + 2.5 + ] + }, + "fixed": { + "rotation": [ + 0, + 90, + 0 + ], + "translation": [ + 0.25, + 2.75, + -1.75 + ], + "scale": [ + 2, + 2, + 2 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/sks.item.json b/src/main/resources/assets/superbwarfare/models/displaysettings/sks.item.json new file mode 100644 index 000000000..de333fd8a --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/sks.item.json @@ -0,0 +1,29 @@ +{ + "credit": "Made with Blockbench", + "parent": "builtin/entity", + "texture_size": [ + 128, + 128 + ], + "display": { + "firstperson_righthand": { + "translation": [ + -2.25, + -10, + -10.75 + ], + "scale": [ + 4, + 4, + 4 + ] + }, + "firstperson_lefthand": { + "scale": [ + 0, + 0, + 0 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/svd.item.json b/src/main/resources/assets/superbwarfare/models/displaysettings/svd.item.json new file mode 100644 index 000000000..097f27101 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/svd.item.json @@ -0,0 +1,24 @@ +{ + "credit": "Made with Blockbench", + "parent": "builtin/entity", + "texture_size": [ + 128, + 128 + ], + "display": { + "firstperson_righthand": { + "translation": [ + -7.25, + 4.25, + 4 + ] + }, + "firstperson_lefthand": { + "scale": [ + 0, + 0, + 0 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/taser.item.json b/src/main/resources/assets/superbwarfare/models/displaysettings/taser.item.json new file mode 100644 index 000000000..90e022591 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/taser.item.json @@ -0,0 +1,90 @@ +{ + "credit": "Made with Blockbench", + "parent": "builtin/entity", + "texture_size": [ + 32, + 32 + ], + "gui_light": "front", + "display": { + "thirdperson_righthand": { + "translation": [ + 0, + -0.75, + 0 + ] + }, + "thirdperson_lefthand": { + "translation": [ + 0, + -0.75, + 0 + ] + }, + "firstperson_righthand": { + "translation": [ + -1.75, + -4.75, + -20.75 + ], + "scale": [ + 4, + 4, + 4 + ] + }, + "firstperson_lefthand": { + "translation": [ + -5.75, + 4.25, + 2 + ], + "scale": [ + 0, + 0, + 0 + ] + }, + "gui": { + "rotation": [ + 90, + 45, + -90 + ], + "translation": [ + 0.5, + -0.5, + 0 + ], + "scale": [ + 1.5, + 1.5, + 1.5 + ] + }, + "head": { + "translation": [ + 0, + 10.25, + -1.25 + ] + }, + "fixed": { + "rotation": [ + 90, + -45, + 90 + ], + "translation": [ + 0, + 0.5, + 0 + ], + "scale": [ + 1.5, + 1.5, + 1.5 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/trachelium.item.json b/src/main/resources/assets/superbwarfare/models/displaysettings/trachelium.item.json new file mode 100644 index 000000000..2d2a0fcc1 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/trachelium.item.json @@ -0,0 +1,24 @@ +{ + "credit": "Made with Blockbench", + "parent": "builtin/entity", + "texture_size": [ + 64, + 64 + ], + "display": { + "firstperson_righthand": { + "translation": [ + -5.5, + 4.2, + 1.75 + ] + }, + "firstperson_lefthand": { + "scale": [ + 0, + 0, + 0 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/displaysettings/vector.item.json b/src/main/resources/assets/superbwarfare/models/displaysettings/vector.item.json new file mode 100644 index 000000000..d433670e6 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/displaysettings/vector.item.json @@ -0,0 +1,109 @@ +{ + "credit": "Made with Blockbench", + "parent": "builtin/entity", + "texture_size": [ + 128, + 128 + ], + "display": { + "thirdperson_righthand": { + "translation": [ + 0, + -1.25, + -1.5 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] + }, + "thirdperson_lefthand": { + "translation": [ + 0, + -1.25, + -1.5 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] + }, + "firstperson_righthand": { + "translation": [ + -4.25, + -2.75, + -8 + ], + "scale": [ + 2, + 2, + 2 + ] + }, + "firstperson_lefthand": { + "rotation": [ + 0, + 0, + 5 + ], + "translation": [ + -6, + 0.75, + 4.25 + ], + "scale": [ + 0, + 0, + 0 + ] + }, + "ground": { + "translation": [ + 0, + 3, + 0 + ], + "scale": [ + 0.55, + 0.55, + 0.55 + ] + }, + "gui": { + "rotation": [ + 30, + -145, + 0 + ], + "translation": [ + -1, + 0.25, + 0 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + }, + "fixed": { + "rotation": [ + 0, + 90, + 0 + ], + "translation": [ + 0, + -2.5, + -1.5 + ], + "scale": [ + 1.1, + 1.1, + 1.1 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/aa123d.json b/src/main/resources/assets/superbwarfare/models/item/aa123d.json new file mode 100644 index 000000000..8fdb38318 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/aa123d.json @@ -0,0 +1,2296 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 32, + 32 + ], + "textures": { + "0": "superbwarfare:item/aa123d", + "particle": "superbwarfare:item/aa123d" + }, + "elements": [ + { + "from": [ + 7.25, + 4, + -2 + ], + "to": [ + 8.75, + 6.75, + 18 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.71891, + 5.625 + ] + }, + "faces": { + "north": { + "uv": [ + 6, + 7, + 7, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 10, + 1.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 7, + 8, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 1.5, + 10, + 3 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 13, + 0, + 3 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 3, + 1, + 13 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.0905, + 0.63365, + 4.8475 + ], + "to": [ + 8.9095, + 3.84365, + 6.4525 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.71891, + 5.625 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 5, + 8.5, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 8, + 4, + 9.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 8, + 5, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 6.5, + 9, + 8 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 12, + 5.5, + 11, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 11.5, + 5, + 12.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.3405, + 3.84365, + 4.8475 + ], + "to": [ + 8.6595, + 4.09365, + 6.4525 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.71891, + 5.625 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 6, + 5.5, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.5, + 9, + 13.5, + 9.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 6.5, + 6.5, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.5, + 9.5, + 13.5, + 10 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 9.5, + 7.5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13, + 10, + 12.5, + 11 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.62609, + 1.24022, + 4.8475 + ], + "to": [ + 7.44509, + 4.45022, + 6.4525 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 8, + 3.71891, + 5.625 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 8, + 9, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 3, + 9.5, + 4.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 4.5, + 9.5, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 8.5, + 6, + 10 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 12.5, + 6.5, + 11.5, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.5, + 6.5, + 11.5, + 7.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.80427, + 0.73842, + 4.8475 + ], + "to": [ + 9.01427, + 2.55742, + 6.4525 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8, + 3.71891, + 5.625 + ] + }, + "faces": { + "north": { + "uv": [ + 6, + 8.5, + 7.5, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 7.5, + 12.5, + 8.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 6, + 10.5, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 8.5, + 12.5, + 9.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 8, + 9, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 8, + 9, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 4.33986, + 1.345, + 4.8475 + ], + "to": [ + 7.54986, + 3.164, + 6.4525 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 8, + 3.71891, + 5.625 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 9, + 10.5, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 9.5, + 12.5, + 10.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 9.5, + 3.5, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 10.5, + 12.5, + 11.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 4, + 9.5, + 3 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 9.5, + 3.5, + 10.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.45014, + 1.345, + 4.8475 + ], + "to": [ + 11.66014, + 3.164, + 6.4525 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8, + 3.71891, + 5.625 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 4, + 11, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 11.5, + 12.5, + 12.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 5, + 11, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 0, + 13, + 1 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 10.5, + 6, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 9.5, + 7.5, + 10.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.98573, + 0.73842, + 4.8475 + ], + "to": [ + 10.19573, + 2.55742, + 6.4525 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8, + 3.71891, + 5.625 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 0, + 11.5, + 1 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12, + 1, + 13, + 2 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 1, + 11.5, + 2 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 12, + 3, + 13 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 3, + 10, + 2 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 10, + 9, + 11 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.55491, + 1.24022, + 4.8475 + ], + "to": [ + 10.37391, + 4.45022, + 6.4525 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8, + 3.71891, + 5.625 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 10, + 6, + 11.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 10.5, + 3, + 12 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 10.5, + 4, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 10.5, + 5, + 12 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 13, + 3, + 12, + 2 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 12, + 3, + 13 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.0905, + -0.54781, + 4.8475 + ], + "to": [ + 8.9095, + 2.66219, + 6.4525 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8, + 3.71891, + 5.625 + ] + }, + "faces": { + "north": { + "uv": [ + 6, + 10.5, + 7, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 6, + 11.5, + 7.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 10.5, + 8, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 7.5, + 11.5, + 9 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 13, + 4, + 12, + 3 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 12, + 4, + 13 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + -1.28494, + 8.45297 + ], + "to": [ + 8.5, + 2.96506, + 9.95297 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 3.71891, + 5.625 + ] + }, + "faces": { + "north": { + "uv": [ + 6, + 12, + 6.5, + 14 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 6, + 4, + 8 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 12, + 7, + 14 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 6, + 5, + 8 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 13, + 12, + 12.5, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12, + 12.5, + 11.5, + 13.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 2.80343, + 8.2823 + ], + "to": [ + 8.5, + 4.55343, + 9.2823 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 3.71891, + 5.625 + ] + }, + "faces": { + "north": { + "uv": [ + 12, + 12.5, + 12.5, + 13.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.5, + 12, + 13, + 13 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 13, + 0.5, + 14 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 0, + 13.5, + 1 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 7, + 7.5, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 6, + 8.5, + 6.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.75, + 2.80343, + 6.5323 + ], + "to": [ + 8.25, + 3.05343, + 8.2823 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 3.71891, + 5.625 + ] + }, + "faces": { + "north": { + "uv": [ + 11, + 5.5, + 11.5, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.5, + 13, + 1.5, + 13.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 2.5, + 12, + 3 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 1, + 14, + 1.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 14, + 1.5, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.5, + 1.5, + 13, + 2.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.75, + 4.08827, + 7.44066 + ], + "to": [ + 8.25, + 4.83827, + 7.69066 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 3.71891, + 5.625 + ] + }, + "faces": { + "north": { + "uv": [ + 12, + 5, + 12.5, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.5, + 2, + 14, + 2.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 3, + 14, + 3.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 13.5, + 4, + 14 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 14, + 4, + 13.5, + 3.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 13.5, + 4, + 14 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + -1.28494, + 6.45297 + ], + "to": [ + 8.5, + -1.03494, + 8.45297 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 3.71891, + 5.625 + ] + }, + "faces": { + "north": { + "uv": [ + 13.5, + 5.5, + 14, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 13, + 3, + 13.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 6, + 14, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 2.5, + 14, + 3 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 14, + 3, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.5, + 3, + 13, + 4 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + -0.58719, + 6.55484 + ], + "to": [ + 8.5, + -0.33719, + 8.30484 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 3.71891, + 5.625 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 13.5, + 8.5, + 14 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 13, + 4.5, + 13.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 13.5, + 9, + 14 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 5, + 14, + 5.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 14, + 4.5, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.5, + 5.5, + 13, + 6.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + -0.58719, + 6.30484 + ], + "to": [ + 8.5, + 4.66281, + 6.55484 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 3.71891, + 5.625 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 11, + 9.5, + 13.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 11, + 10, + 13.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 11, + 10.5, + 13.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 0, + 12, + 2.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 14, + 9, + 13.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14, + 9, + 13.5, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 1.5, + 16.75 + ], + "to": [ + 8.75, + 4, + 18 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.71891, + 5.625 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 10.5, + 9, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 12.5, + 5.5, + 14 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 9, + 11.5, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.5, + 5, + 13, + 6.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 14, + 8, + 13, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 13, + 8, + 13.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 6.0233, + 10.13762 + ], + "to": [ + 8.75, + 8.7733, + 16.88762 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 3.71891, + 5.625 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 10.5, + 11.5, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 3, + 5.5, + 4.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 3, + 12, + 4.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 4.5, + 5.5, + 6 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 6.5, + 5.5, + 3 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 6, + 2, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 4.5, + -4.25 + ], + "to": [ + 8.5, + 5.5, + -2 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.71891, + 5.625 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 13.5, + 10, + 14 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13, + 8, + 14, + 8.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 9.5, + 14, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 8.5, + 14, + 9 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 13.5, + 11, + 13, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 13, + 10.5, + 14 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.65, + 6.75, + -2 + ], + "to": [ + 8.35, + 8.25, + -1.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.71891, + 5.625 + ] + }, + "faces": { + "north": { + "uv": [ + 11, + 13, + 11.5, + 14 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13, + 11, + 13.5, + 12 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 13, + 12, + 13.5, + 13 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.5, + 13, + 13, + 14 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 14, + 10, + 13.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14, + 10, + 13.5, + 10.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.75, + 7, + 2.1 + ], + "to": [ + 8.25, + 7.55, + 2.4 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.71891, + 5.625 + ] + }, + "faces": { + "north": { + "uv": [ + 13.5, + 10.5, + 14, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.5, + 11, + 14, + 11.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 13.5, + 12, + 14 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 11.5, + 14, + 12 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 12.5, + 14, + 12, + 13.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14, + 12, + 13.5, + 12.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.75, + 7.03502, + 2.22552 + ], + "to": [ + 8.25, + 7.22877, + 3.17552 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 8, + 7.17877, + 2.70052 + ] + }, + "faces": { + "north": { + "uv": [ + 14.5, + 1.5, + 14, + 1 + ], + "rotation": 180, + "texture": "#0" + }, + "east": { + "uv": [ + 13, + 13.5, + 13.5, + 14 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 14, + 1.5, + 14.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 14, + 0.5, + 14.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 13.5, + 13.5, + 14, + 14 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.5, + 12.5, + 14, + 13 + ], + "rotation": 180, + "texture": "#0" + } + } + }, + { + "from": [ + 7.65, + 6.75, + 2 + ], + "to": [ + 8.35, + 7, + 3.13281 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.71891, + 5.625 + ] + }, + "faces": { + "north": { + "uv": [ + 14, + 2, + 14.5, + 2.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 2.5, + 14.5, + 3 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 14, + 3.5, + 14.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 3, + 14.5, + 3.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 14.5, + 3.5, + 14 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.5, + 3.5, + 14, + 4 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.75, + 7, + 10 + ], + "to": [ + 8.25, + 8.45, + 10.3 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.71891, + 13.525 + ] + }, + "faces": { + "north": { + "uv": [ + 13.5, + 10.5, + 14, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.5, + 11, + 14, + 11.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 13.5, + 12, + 14 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 11.5, + 14, + 12 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 12.5, + 14, + 12, + 13.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14, + 12, + 13.5, + 12.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.75, + 7.70094, + 11.91701 + ], + "to": [ + 8.25, + 9.36969, + 12.12639 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 4.31891, + 13.525 + ] + }, + "faces": { + "north": { + "uv": [ + 13.5, + 12.5, + 14, + 13 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13, + 13.5, + 13.5, + 14 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 13.5, + 14, + 14 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 14, + 0.5, + 14.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 14.5, + 1.5, + 14, + 1 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 14, + 1.5, + 14.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.65, + 6.75, + 9.9 + ], + "to": [ + 8.35, + 7, + 11.02109 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.71891, + 13.525 + ] + }, + "faces": { + "north": { + "uv": [ + 14, + 2, + 14.5, + 2.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 2.5, + 14.5, + 3 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 14, + 3.5, + 14.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 14, + 3, + 14.5, + 3.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 14.5, + 3.5, + 14 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.5, + 3.5, + 14, + 4 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 4.25, + -8 + ], + "to": [ + 8.75, + 5.75, + -4.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.71891, + 5.625 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 12, + 9, + 13 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 3, + 8.5, + 4 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 12, + 11.5, + 13 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 4, + 8.5, + 5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 8.5, + 5, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 5, + 6.5, + 7 + ], + "texture": "#0" + } + } + } + ], + "gui_light": "front", + "display": { + "thirdperson_righthand": { + "translation": [ + -0.75, + 4, + 0.5 + ], + "scale": [ + 0.9, + 0.9, + 0.9 + ] + }, + "thirdperson_lefthand": { + "scale": [ + 0, + 0, + 0 + ] + }, + "firstperson_righthand": { + "translation": [ + -0.75, + 4, + 0.5 + ], + "scale": [ + 0.9, + 0.9, + 0.9 + ] + }, + "firstperson_lefthand": { + "translation": [ + -0.75, + 4, + 0.5 + ], + "scale": [ + 0.9, + 0.9, + 0.9 + ] + }, + "ground": { + "translation": [ + 0, + 6, + 1.5 + ], + "scale": [ + 0.8, + 0.8, + 0.8 + ] + }, + "head": { + "translation": [ + 0, + 14.5, + 0 + ] + }, + "fixed": { + "rotation": [ + 90, + -45, + 90 + ], + "translation": [ + -3.5, + 0.75, + 0 + ], + "scale": [ + 0.9, + 0.9, + 0.9 + ] + } + }, + "groups": [ + { + "name": "group", + "origin": [ + 0, + 0, + 0 + ], + "color": 0, + "children": [ + 0, + 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 + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/aa_12.json b/src/main/resources/assets/superbwarfare/models/item/aa_12.json new file mode 100644 index 000000000..b4565080e --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/aa_12.json @@ -0,0 +1,27 @@ +{ + "loader": "forge:separate_transforms", + "gui_light": "front", + "base": { + "parent": "superbwarfare:item/aa_12_base" + }, + "perspectives": { + "gui": { + "parent": "superbwarfare:item/aa_12_icon" + }, + "thirdperson_righthand": { + "parent": "superbwarfare:item/aa123d" + }, + "thirdperson_lefthand": { + "parent": "superbwarfare:item/aa123d" + }, + "ground": { + "parent": "superbwarfare:item/aa123d" + }, + "fixed": { + "parent": "superbwarfare:item/aa123d" + }, + "head": { + "parent": "superbwarfare:item/aa123d" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/aa_12_base.json b/src/main/resources/assets/superbwarfare/models/item/aa_12_base.json new file mode 100644 index 000000000..fd3292bd0 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/aa_12_base.json @@ -0,0 +1,6 @@ +{ + "parent": "superbwarfare:displaysettings/aa12.item", + "textures": { + "layer0": "superbwarfare:item/aa12_new" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/aa_12_icon.json b/src/main/resources/assets/superbwarfare/models/item/aa_12_icon.json new file mode 100644 index 000000000..550cf9d18 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/aa_12_icon.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/aa_12" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/ak_12.json b/src/main/resources/assets/superbwarfare/models/item/ak_12.json new file mode 100644 index 000000000..c2fb5c9a7 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/ak_12.json @@ -0,0 +1,27 @@ +{ + "loader": "forge:separate_transforms", + "gui_light": "front", + "base": { + "parent": "superbwarfare:item/ak_12_base" + }, + "perspectives": { + "gui": { + "parent": "superbwarfare:item/ak_12_icon" + }, + "thirdperson_righthand": { + "parent": "superbwarfare:item/ak_123d" + }, + "thirdperson_lefthand": { + "parent": "superbwarfare:item/ak_123d" + }, + "ground": { + "parent": "superbwarfare:item/ak_123d" + }, + "fixed": { + "parent": "superbwarfare:item/ak_123d" + }, + "head": { + "parent": "superbwarfare:item/ak_123d" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/ak_123d.json b/src/main/resources/assets/superbwarfare/models/item/ak_123d.json new file mode 100644 index 000000000..3fa57cd85 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/ak_123d.json @@ -0,0 +1,2193 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 32, + 32 + ], + "textures": { + "1": "superbwarfare:item/ak12_3d" + }, + "elements": [ + { + "from": [ + 7.7, + 2.74237, + -1.95836 + ], + "to": [ + 8.3, + 3.34237, + -0.45836 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 8, + 3.04237, + -1.58336 + ] + }, + "faces": { + "north": { + "uv": [ + 0.5, + 9.5, + 1, + 10 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.5, + 4, + 9.5, + 4.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 9.5, + 1, + 10, + 1.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 4.5, + 9.5, + 5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2, + 9.5, + 1.5, + 8.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9, + 6, + 8.5, + 7 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.5, + 2.05, + 1 + ], + "to": [ + 8.5, + 4.25, + 6.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 7.75 + ] + }, + "faces": { + "north": { + "uv": [ + 6.5, + 8.5, + 7, + 9.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1, + 3, + 4, + 4 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.5, + 7, + 9, + 8 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4, + 0, + 7, + 1 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 1.5, + 8.5, + 1, + 5.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2, + 5.5, + 1.5, + 8.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.5, + 2, + 6.5 + ], + "to": [ + 8.5, + 4.25, + 14.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 7.75 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 8, + 9, + 9 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 4, + 1 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 9, + 0, + 9.5, + 1 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 1, + 4, + 2 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4.5, + 7, + 4, + 3 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5, + 3, + 4.5, + 7 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.45, + 2.25, + 1.3 + ], + "to": [ + 8.55, + 3, + 6.45 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.275, + 3.775 + ] + }, + "faces": { + "north": { + "uv": [ + 1.5, + 9.5, + 2, + 10 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.5, + 2, + 9, + 2.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 9.5, + 1.5, + 10, + 2 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.5, + 2.5, + 9, + 3 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2.5, + 9.5, + 2, + 7 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3, + 7, + 2.5, + 9.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.7, + 4.25, + 1.25 + ], + "to": [ + 8.3, + 4.5, + 14.35 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 7.75 + ] + }, + "faces": { + "north": { + "uv": [ + 2, + 9.5, + 2.5, + 10 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 2, + 6.5, + 2.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 9.5, + 2, + 10, + 2.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 2.5, + 6.5, + 3 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0.5, + 9.5, + 0, + 3 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1, + 3, + 0.5, + 9.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.6, + 4.25, + 13.15 + ], + "to": [ + 8.4, + 5, + 14.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 7.75 + ] + }, + "faces": { + "north": { + "uv": [ + 2.5, + 9.5, + 3, + 10 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9.5, + 2.5, + 10, + 3 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 9.5, + 3, + 10, + 3.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.5, + 9.5, + 4, + 10 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 10, + 4, + 9.5, + 3.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.5, + 9.5, + 4, + 10 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.75, + 3.95, + 9.6 + ], + "to": [ + 7.65, + 4.76953, + 12.95 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.25, + 3.25, + 10.85 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 4, + 10, + 4.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5, + 7, + 6.5, + 7.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 9.5, + 4.5, + 10, + 5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7, + 6, + 8.5, + 6.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7, + 8.5, + 6.5, + 7 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.5, + 6.5, + 7, + 8 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.70459, + 5.60459, + 9.6 + ], + "to": [ + 8.70459, + 5.72412, + 10.45 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.20459, + 4.50459, + 10.85 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 5, + 10, + 5.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9.5, + 5.5, + 10, + 6 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 9.5, + 6, + 10, + 6.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.5, + 9.5, + 7, + 10 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 10, + 7, + 9.5, + 6.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.5, + 9.5, + 7, + 10 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.60459, + 5.00459, + 9.6 + ], + "to": [ + 8.70459, + 5.60459, + 10.45 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.20459, + 3.08506, + 10.85 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 7, + 10, + 7.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.5, + 9.5, + 8, + 10 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 9.5, + 7.5, + 10, + 8 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8, + 9.5, + 8.5, + 10 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 10, + 8.5, + 9.5, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9.5, + 9.5, + 9, + 10 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.94749, + 4.64631, + 9.6 + ], + "to": [ + 7.04749, + 5.99631, + 10.45 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 6.99749, + 4.94631, + 10.025 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 9.5, + 10, + 10 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10, + 0, + 10.5, + 0.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0.5, + 10, + 1, + 10.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10, + 0.5, + 10.5, + 1 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 1.5, + 10.5, + 1, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10.5, + 1, + 10, + 1.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.7, + -3.59892, + 7.82679 + ], + "to": [ + 8.3, + -0.24892, + 10.32679 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 1.00108, + 8.37679 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 7.5, + 5.5, + 9 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1, + 4, + 2.5, + 5.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5.5, + 7.5, + 6, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.5, + 4, + 4, + 5.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6.5, + 9, + 6, + 7.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8, + 6.5, + 7.5, + 8 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.7, + -0.9, + 7.2 + ], + "to": [ + 8.3, + 2.45, + 9.7 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 3.7, + 7.75 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 7.5, + 5.5, + 9 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1, + 4, + 2.5, + 5.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5.5, + 7.5, + 6, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.5, + 4, + 4, + 5.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6.5, + 9, + 6, + 7.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8, + 6.5, + 7.5, + 8 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.50391, + -1, + 13.1 + ], + "to": [ + 8.49609, + 2.5, + 14.6 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 0.5, + 13.75 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 0, + 7.5, + 2 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5, + 3, + 6, + 5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3, + 7, + 3.5, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5, + 5, + 6, + 7 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 3.5, + 10, + 3, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9.5, + 3, + 9, + 4 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.5, + -1, + 12.85 + ], + "to": [ + 8.5, + -0.25, + 13.1 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 0.5, + 13.75 + ] + }, + "faces": { + "north": { + "uv": [ + 1.5, + 10, + 2, + 10.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10, + 1.5, + 10.5, + 2 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 2, + 10, + 2.5, + 10.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10, + 2, + 10.5, + 2.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 3, + 10.5, + 2.5, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10.5, + 2.5, + 10, + 3 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.75, + 0.76924, + 10.74672 + ], + "to": [ + 8.25, + 0.86924, + 12.99672 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 0.76924, + 13.74672 + ] + }, + "faces": { + "north": { + "uv": [ + 3, + 10, + 3.5, + 10.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.5, + 5, + 9.5, + 5.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 10, + 3, + 10.5, + 3.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.5, + 9, + 4.5, + 9.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5, + 10, + 4.5, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.5, + 9, + 5, + 10 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.75, + 0.76924, + 10.14672 + ], + "to": [ + 8.25, + 2.11924, + 10.74672 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 0.76924, + 13.74672 + ] + }, + "faces": { + "north": { + "uv": [ + 3.5, + 10, + 4, + 10.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10, + 3.5, + 10.5, + 4 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 4, + 10, + 4.5, + 10.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10, + 4, + 10.5, + 4.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5, + 10.5, + 4.5, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10.5, + 4.5, + 10, + 5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.75, + 1.06924, + 11.54672 + ], + "to": [ + 8.25, + 2.11924, + 11.89672 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 1.59424, + 11.82172 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 10, + 5.5, + 10.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10, + 5, + 10.5, + 5.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5.5, + 10, + 6, + 10.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10, + 5.5, + 10.5, + 6 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6.5, + 10.5, + 6, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10.5, + 6, + 10, + 6.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.5, + 0.37608, + 12.58471 + ], + "to": [ + 8.5, + 1.62608, + 13.48471 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 8, + 0.62608, + 16.70971 + ] + }, + "faces": { + "north": { + "uv": [ + 6.5, + 10, + 7, + 10.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10, + 6.5, + 10.5, + 7 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10, + 7, + 10.5, + 7.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8, + 10.5, + 7.5, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10.5, + 7.5, + 10, + 8 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.5, + 2.13612, + 13.93528 + ], + "to": [ + 8.5, + 3.85252, + 14.93528 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 3.22752, + 14.43528 + ] + }, + "faces": { + "north": { + "uv": [ + 5.5, + 9, + 6, + 10 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9, + 5.5, + 9.5, + 6.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 6, + 9, + 6.5, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9, + 6.5, + 9.5, + 7.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.5, + 10.5, + 8, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10.5, + 8, + 10, + 8.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.5, + 2.03141, + 14.49906 + ], + "to": [ + 8.5, + 3.43141, + 17.64906 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 2.43141, + 21.27406 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 10, + 9, + 10.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.5, + 1.5, + 9, + 2 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 10, + 8.5, + 10.5, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.5, + 5.5, + 9, + 6 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.5, + 1.5, + 8, + 0 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.5, + 4, + 8, + 5.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.5, + 1.63141, + 17.64906 + ], + "to": [ + 8.5, + 3.43141, + 20.64906 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 2.43141, + 20.27406 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 7.5, + 9.5, + 8.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4, + 1, + 5.5, + 2 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.5, + 9, + 9, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.5, + 1, + 7, + 2 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.5, + 8, + 8, + 6.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.5, + 8, + 7, + 9.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.5, + 0.13141, + 20.64906 + ], + "to": [ + 8.5, + 3.43141, + 21.63343 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 2.43141, + 19.52406 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 8, + 8, + 9.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8, + 8, + 8.5, + 9.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.5, + 0, + 9, + 1.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1, + 8.5, + 1.5, + 10 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 9.5, + 10.5, + 9, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10.5, + 9, + 10, + 9.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.5, + -0.65219, + 21.6264 + ], + "to": [ + 8.5, + 3.43141, + 22.39906 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 2.43141, + 19.52406 + ] + }, + "faces": { + "north": { + "uv": [ + 3.5, + 7, + 4, + 9 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4, + 7, + 4.5, + 9 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 4, + 7.5, + 6 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.5, + 7, + 5, + 9 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 10, + 10.5, + 9.5, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10.5, + 9.5, + 10, + 10 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.7, + 2.45, + -5.1 + ], + "to": [ + 8.3, + 3.05, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 6.25 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 10, + 10.5, + 10.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6, + 3, + 9, + 3.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 10.5, + 0.5, + 11 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6, + 3.5, + 9, + 4 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6.5, + 7, + 6, + 4 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 4, + 6.5, + 7 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.6, + 2.35, + -6.35 + ], + "to": [ + 8.4, + 3.15, + -5.1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 6.25 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 0, + 11, + 0.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.5, + 10.5, + 1, + 11 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 10.5, + 0.5, + 11, + 1 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1, + 10.5, + 1.5, + 11 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 11, + 1.5, + 10.5, + 1 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2, + 10.5, + 1.5, + 11 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.9, + 3.85, + -1.1 + ], + "to": [ + 8.1, + 5.1, + -0.6 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 11.9 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 1.5, + 11, + 2 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2, + 10.5, + 2.5, + 11 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 10.5, + 2, + 11, + 2.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.5, + 10.5, + 3, + 11 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 11, + 3, + 10.5, + 2.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.5, + 10.5, + 3, + 11 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.7, + 3.45, + -1 + ], + "to": [ + 8.3, + 4.05, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 3, + 11, + 3.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9, + 8.5, + 10, + 9 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3.5, + 10.5, + 4, + 11 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9, + 9, + 10, + 9.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0.5, + 10.5, + 0, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10, + 0, + 9.5, + 1 + ], + "texture": "#1" + } + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [ + -1.5, + 4.25, + -2.75 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + }, + "thirdperson_lefthand": { + "translation": [ + -1.5, + 4.25, + -2.75 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + }, + "ground": { + "translation": [ + 0, + 9, + 0 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + }, + "head": { + "translation": [ + 0, + 18.75, + 0 + ] + }, + "fixed": { + "rotation": [ + 90, + -45, + 90 + ], + "translation": [ + -2.5, + 4.25, + 0 + ], + "scale": [ + 0.75, + 0.75, + 0.75 + ] + } + }, + "groups": [ + { + "name": "group", + "origin": [ + 8, + 3.25, + 7.75 + ], + "color": 0, + "children": [ + 0, + 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 + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/ak_12_base.json b/src/main/resources/assets/superbwarfare/models/item/ak_12_base.json new file mode 100644 index 000000000..432a3f7d6 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/ak_12_base.json @@ -0,0 +1,6 @@ +{ + "parent": "superbwarfare:displaysettings/ak12.item", + "textures": { + "layer0": "superbwarfare:item/ak12" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/ak_12_icon.json b/src/main/resources/assets/superbwarfare/models/item/ak_12_icon.json new file mode 100644 index 000000000..02f28f2a1 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/ak_12_icon.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/ak12_icon" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/ak_47.json b/src/main/resources/assets/superbwarfare/models/item/ak_47.json new file mode 100644 index 000000000..2abf207a5 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/ak_47.json @@ -0,0 +1,27 @@ +{ + "loader": "forge:separate_transforms", + "gui_light": "front", + "base": { + "parent": "superbwarfare:item/ak_47_base" + }, + "perspectives": { + "gui": { + "parent": "superbwarfare:item/ak_47_icon" + }, + "thirdperson_righthand": { + "parent": "superbwarfare:item/ak_473d" + }, + "thirdperson_lefthand": { + "parent": "superbwarfare:item/ak_473d" + }, + "ground": { + "parent": "superbwarfare:item/ak_473d" + }, + "fixed": { + "parent": "superbwarfare:item/ak_473d" + }, + "head": { + "parent": "superbwarfare:item/ak_473d" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/ak_473d.json b/src/main/resources/assets/superbwarfare/models/item/ak_473d.json new file mode 100644 index 000000000..e2562cdf7 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/ak_473d.json @@ -0,0 +1,2350 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 32, + 32 + ], + "textures": { + "0": "superbwarfare:item/ak473d", + "particle": "superbwarfare:item/ak473d" + }, + "elements": [ + { + "from": [ + 7.7, + 2.74237, + -2.20836 + ], + "to": [ + 8.3, + 3.34237, + -0.70836 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 8, + 3.04237, + -1.83336 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 4.5, + 7.5, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 8.5, + 10, + 9 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 6.5, + 8.5, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 9, + 10, + 9.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 1, + 9.5, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 1, + 9.5, + 2 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 2.25, + 1 + ], + "to": [ + 8.5, + 4.25, + 6.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 7.75 + ] + }, + "faces": { + "north": { + "uv": [ + 2, + 9.5, + 2.5, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 4, + 3, + 5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 2, + 10, + 3 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 2, + 7, + 3 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 9.5, + 2, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 6.5, + 2.5, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 2, + 6.5 + ], + "to": [ + 8.5, + 4.25, + 14.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 7.75 + ] + }, + "faces": { + "north": { + "uv": [ + 2.5, + 9.5, + 3, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 2, + 4, + 3 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 3, + 10, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 3, + 4, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 8, + 3.5, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 5, + 6, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 4.25, + 6.5 + ], + "to": [ + 8.5, + 4.5, + 9.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 7.75 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 4, + 9, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 1.5, + 6.5, + 2 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 5.5, + 10.5, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 6, + 9.5, + 6.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 9.5, + 7.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 8, + 8, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.45, + 3.15, + 1 + ], + "to": [ + 8.55, + 3.4, + 6.55 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.275, + 3.775 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 4, + 9, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 1.5, + 6.5, + 2 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 5.5, + 10.5, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 6, + 9.5, + 6.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 9.5, + 7.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 8, + 8, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.45, + 2.94688, + 2 + ], + "to": [ + 8.55, + 3.57578, + 3.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.275, + 3.375 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 4, + 9, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 1.5, + 6.5, + 2 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 5.5, + 10.5, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 6, + 9.5, + 6.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 9.5, + 7.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 8, + 8, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.45, + 2.94688, + 4.3 + ], + "to": [ + 8.55, + 3.57578, + 5.55 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.275, + 5.675 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 4, + 9, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 1.5, + 6.5, + 2 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 5.5, + 10.5, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 6, + 9.5, + 6.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 9.5, + 7.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 8, + 8, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.7, + 4.25, + 9.25 + ], + "to": [ + 8.3, + 4.5, + 14.35 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 7.75 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 4, + 9, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 1.5, + 6.5, + 2 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 5.5, + 10.5, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 6, + 9.5, + 6.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 9.5, + 7.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 8, + 8, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 4.35, + 9.6 + ], + "to": [ + 8.5, + 5.16953, + 12.95 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 10.85 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 4, + 9, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 1.5, + 6.5, + 2 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 5.5, + 10.5, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 6, + 9.5, + 6.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 9.5, + 7.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 8, + 8, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 5.76953, + 9.6 + ], + "to": [ + 8.5, + 5.88906, + 10.45 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 4.66953, + 10.85 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 4, + 9, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 1.5, + 6.5, + 2 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 5.5, + 10.5, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 6, + 9.5, + 6.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 9.5, + 7.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 8, + 8, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.4, + 5.16953, + 9.6 + ], + "to": [ + 8.5, + 5.76953, + 10.45 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 10.85 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 4, + 9, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 1.5, + 6.5, + 2 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 5.5, + 10.5, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 6, + 9.5, + 6.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 9.5, + 7.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 8, + 8, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 5.16953, + 9.6 + ], + "to": [ + 7.6, + 5.76953, + 10.45 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 10.85 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 4, + 9, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 1.5, + 6.5, + 2 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 5.5, + 10.5, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 6, + 9.5, + 6.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 9.5, + 7.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 8, + 8, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.7, + -0.4, + 7.2 + ], + "to": [ + 8.3, + 2, + 9.7 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 7.75 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 9.5, + 5.5, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 6.5, + 6, + 7.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 9.5, + 6, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 6, + 8, + 7 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0.5, + 10, + 0, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 8.5, + 0.5, + 10 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.7, + -2.34892, + 7.82679 + ], + "to": [ + 8.3, + 0.25108, + 10.32679 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 1.50108, + 8.37679 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 1, + 9, + 2.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 5, + 1.5, + 6.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 2.5, + 9, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 0, + 6.5, + 1.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 8, + 8.5, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 8, + 8.5, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.7, + -4.13744, + 5.6519 + ], + "to": [ + 8.3, + -1.53744, + 8.1519 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 8, + -2.83744, + 6.9019 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 0, + 9.5, + 1.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 5, + 3, + 6.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 1.5, + 9.5, + 3 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 5, + 6, + 6.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 10.5, + 3, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 3, + 9, + 4.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.50391, + -1, + 13.1 + ], + "to": [ + 8.49609, + 2.5, + 14.6 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 0.5, + 13.75 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 7.5, + 5.5, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 6.5, + 1, + 8.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 7.5, + 6, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 0, + 7.5, + 2 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 10.5, + 6.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 9.5, + 7, + 10.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + -1, + 12.85 + ], + "to": [ + 8.5, + -0.25, + 13.1 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 0.5, + 13.75 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 7, + 10.5, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 7.5, + 10.5, + 8 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 8.5, + 10.5, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 9, + 10.5, + 9.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 10, + 10, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 10, + 10, + 10.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.75, + 0.76924, + 10.74672 + ], + "to": [ + 8.25, + 0.86924, + 12.99672 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 0.76924, + 13.74672 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 0, + 11, + 0.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 4, + 10.5, + 4.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 0.5, + 11, + 1 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 6, + 10.5, + 6.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 8, + 9.5, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 9.5, + 7.5, + 10.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.75, + 0.76924, + 10.14672 + ], + "to": [ + 8.25, + 2.11924, + 10.74672 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 0.76924, + 13.74672 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 1, + 11, + 1.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 1.5, + 11, + 2 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 10.5, + 2.5, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 2, + 11, + 2.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 11, + 2.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 2.5, + 10.5, + 3 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.75, + 1.06924, + 11.54672 + ], + "to": [ + 8.25, + 2.11924, + 11.89672 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 1.59424, + 11.82172 + ] + }, + "faces": { + "north": { + "uv": [ + 3, + 10.5, + 3.5, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 3, + 11, + 3.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 10.5, + 4, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 3.5, + 11, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 11, + 4, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 4, + 10.5, + 4.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 2, + 3.75 + ], + "to": [ + 8.5, + 2.25, + 6.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 7.75 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 4.5, + 11, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 4.5, + 10, + 5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 10.5, + 5.5, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 6.5, + 10.5, + 7 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 10.5, + 6, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 7, + 9, + 8.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + -0.37392, + 12.58471 + ], + "to": [ + 8.5, + 1.62608, + 14.08471 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 8, + 0.62608, + 16.70971 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 9.5, + 8.5, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 7, + 8.5, + 8 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 9.5, + 9, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 0, + 9, + 1 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 10.5, + 9, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 9.5, + 9.5, + 10.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.49609, + 0.12044, + 14.21513 + ], + "to": [ + 8.50391, + 2.12044, + 24.21513 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 1.12044, + 18.34013 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 10, + 0.5, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 5, + 1 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 0, + 10.5, + 1 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 1, + 5, + 2 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 9, + 3, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 3, + 4, + 8 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 0.53141, + 17.14906 + ], + "to": [ + 8.5, + 2.53141, + 22.39906 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 1.53141, + 21.27406 + ] + }, + "faces": { + "north": { + "uv": [ + 0.5, + 10, + 1, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 3, + 7, + 4 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 10, + 1.5, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 4, + 7, + 5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 4.5, + 7, + 2 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 7, + 6.5, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + -1.46859, + 22.39906 + ], + "to": [ + 8.5, + 2.53141, + 23.38343 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 1.53141, + 21.27406 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 1, + 8.5, + 3 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 3, + 8.5, + 5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 8, + 4, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 8, + 4.5, + 10 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 5.5, + 10.5, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 10.5, + 5.5, + 11 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + -2.05219, + 23.3764 + ], + "to": [ + 8.5, + 2.53141, + 24.14906 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 1.53141, + 21.27406 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 7, + 7.5, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 0, + 8, + 2.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 2.5, + 8, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 7.5, + 5, + 10 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 6, + 10.5, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 10.5, + 6, + 11 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.7, + 2.45, + -5.5 + ], + "to": [ + 8.3, + 3.05, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 7.75 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 6, + 11, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 5, + 10, + 5.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 10.5, + 7, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 5.5, + 10, + 6 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 10, + 1, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 6.5, + 1.5, + 10 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.9, + 3.05, + -5.25 + ], + "to": [ + 8.1, + 4.85, + -4.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 7.75 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 1, + 10.5, + 2 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 10, + 2, + 11 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 2, + 10.5, + 3 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 3, + 10.5, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 7, + 10.5, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 10.5, + 7, + 11 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.7, + 3.45, + -1.25 + ], + "to": [ + 8.3, + 4.05, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 7.75 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 7, + 11, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 8, + 10.5, + 8.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 10.5, + 8, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 10, + 4.5, + 10.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 11, + 4.5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 4.5, + 10, + 5.5 + ], + "texture": "#0" + } + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [ + -1.5, + 4.25, + -2.75 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + }, + "thirdperson_lefthand": { + "translation": [ + -1.5, + 4.25, + -2.75 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + }, + "ground": { + "translation": [ + 0, + 9, + 0 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + }, + "head": { + "translation": [ + 0, + 18.75, + 0 + ] + }, + "fixed": { + "rotation": [ + 90, + -45, + 90 + ], + "translation": [ + -2.5, + 4.25, + 0 + ], + "scale": [ + 0.75, + 0.75, + 0.75 + ] + } + }, + "groups": [ + { + "name": "group", + "origin": [ + 8, + 3.25, + 7.75 + ], + "color": 0, + "children": [ + 0, + 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 + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/ak_47_base.json b/src/main/resources/assets/superbwarfare/models/item/ak_47_base.json new file mode 100644 index 000000000..509de9910 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/ak_47_base.json @@ -0,0 +1,6 @@ +{ + "parent": "superbwarfare:displaysettings/ak47.item", + "textures": { + "layer0": "superbwarfare:item/ak47" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/ak_47_icon.json b/src/main/resources/assets/superbwarfare/models/item/ak_47_icon.json new file mode 100644 index 000000000..7707f32e6 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/ak_47_icon.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/ak47icon" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/ammo_box.json b/src/main/resources/assets/superbwarfare/models/item/ammo_box.json new file mode 100644 index 000000000..76387b165 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/ammo_box.json @@ -0,0 +1,525 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 32, + 32 + ], + "textures": { + "0": "superbwarfare:item/ammo_box", + "particle": "superbwarfare:item/ammo_box" + }, + "elements": [ + { + "from": [ + 7.5, + 5.58982, + 4.93105 + ], + "to": [ + 8.5, + 5.83982, + 6.43105 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 5.71482, + 4.68105 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 3, + 9, + 3.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 1, + 9.25, + 1.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 3.5, + 9, + 3.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 1.5, + 9.25, + 1.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 7.75, + 7.5, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 7, + 8, + 7.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6, + 0, + 4 + ], + "to": [ + 10, + 5, + 12 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1, + 8.5 + ] + }, + "faces": { + "north": { + "uv": [ + 6.5, + 0, + 8.5, + 2.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 4, + 2.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 2.5, + 8.5, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 2.5, + 4, + 5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 9, + 0, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 5, + 2, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.75, + 5, + 3.75 + ], + "to": [ + 10.25, + 6, + 12.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1, + 8.5 + ] + }, + "faces": { + "north": { + "uv": [ + 6.5, + 6, + 8.75, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 5, + 10.75, + 5.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 6.5, + 8.75, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 5.5, + 10.75, + 6 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 4.25, + 4, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 4.5, + 4, + 8.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 6.25, + 6.25 + ], + "to": [ + 8.5, + 6.5, + 9.75 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1, + 8.5 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 4, + 9, + 4.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 0, + 10.25, + 0.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 4.5, + 9, + 4.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 0.5, + 10.25, + 0.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 8.75, + 6.5, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 7, + 7, + 8.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 5.58982, + 9.56895 + ], + "to": [ + 8.5, + 5.83982, + 11.06895 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 5.71482, + 11.31895 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 7, + 9, + 7.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 2, + 9.25, + 2.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 7.5, + 9, + 7.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 2.5, + 9.25, + 2.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 8.75, + 7.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 8, + 8, + 8.75 + ], + "texture": "#0" + } + } + } + ], + "gui_light": "front", + "display": { + "thirdperson_righthand": { + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + -2, + 2 + ] + }, + "thirdperson_lefthand": { + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + -2, + 2 + ] + }, + "firstperson_righthand": { + "rotation": [ + 7.9, + 31.95, + -3.04 + ], + "translation": [ + -1.75, + 8.75, + 0 + ] + }, + "firstperson_lefthand": { + "rotation": [ + 7.9, + 31.95, + -3.04 + ], + "translation": [ + -1.75, + 8.75, + 0 + ] + }, + "ground": { + "translation": [ + 0, + 5.5, + 0 + ] + }, + "gui": { + "rotation": [ + 45, + 45, + 0 + ], + "translation": [ + 0, + 5, + -3.25 + ], + "scale": [ + 1.5, + 1.5, + 1.5 + ] + }, + "head": { + "rotation": [ + 0, + 90, + 0 + ], + "translation": [ + 0, + 16.75, + -1.5 + ], + "scale": [ + 1.3, + 1.3, + 1.3 + ] + }, + "fixed": { + "rotation": [ + 0, + 90, + 0 + ], + "translation": [ + 0, + 8.5, + -3.25 + ], + "scale": [ + 2, + 2, + 2 + ] + } + }, + "groups": [ + { + "name": "ammobox", + "origin": [ + 8, + 5.71482, + 11.31895 + ], + "color": 0, + "children": [ + 0, + 1, + 2, + 3, + 4 + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/ap_5_inches.json b/src/main/resources/assets/superbwarfare/models/item/ap_5_inches.json new file mode 100644 index 000000000..baf80840a --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/ap_5_inches.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/shells/ap_5_inches" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/ap_bullet.json b/src/main/resources/assets/superbwarfare/models/item/ap_bullet.json new file mode 100644 index 000000000..1990d143c --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/ap_bullet.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/perk/ap_bullet" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/armor_plate.json b/src/main/resources/assets/superbwarfare/models/item/armor_plate.json new file mode 100644 index 000000000..47eba1c6e --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/armor_plate.json @@ -0,0 +1,14 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/armor_plate" + }, + "overrides": [ + { + "predicate": { + "superbwarfare:armor_plate_infinite": 1 + }, + "model": "superbwarfare:item/armor_plate_infinite" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/armor_plate_infinite.json b/src/main/resources/assets/superbwarfare/models/item/armor_plate_infinite.json new file mode 100644 index 000000000..3dd45cdcd --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/armor_plate_infinite.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/armor_plate_infinite" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/battery.json b/src/main/resources/assets/superbwarfare/models/item/battery.json new file mode 100644 index 000000000..240c766bf --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/battery.json @@ -0,0 +1,2929 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 64, + 64 + ], + "textures": { + "0": "superbwarfare:item/battery", + "particle": "superbwarfare:item/battery" + }, + "elements": [ + { + "from": [ + 5.95083, + 0, + 7.1675 + ], + "to": [ + 8.17083, + 1.11, + 8.8325 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 7.25, + 4, + 7.8125, + 4.28125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 7.25, + 2.65625, + 7.53125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 5.25, + 7.8125, + 5.53125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 7.25, + 6.15625, + 7.53125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.0625, + 6.40625, + 3.5, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.8125, + 6, + 4.25, + 6.40625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.95083, + 0, + 7.1675 + ], + "to": [ + 8.17083, + 1.11, + 8.8325 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 7.25, + 5.75, + 7.8125, + 6.03125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 7.5, + 7.15625, + 7.78125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 6.25, + 7.8125, + 6.53125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 7.75, + 2.40625, + 8.03125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.5625, + 4.90625, + 6, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5625, + 6, + 5, + 6.40625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.12816, + 0, + 5.99017 + ], + "to": [ + 8.79316, + 1.11, + 8.21017 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 5.75, + 7.75, + 6.15625, + 8.03125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 6.75, + 7.8125, + 7.03125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 7.75, + 7.65625, + 8.03125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 7.25, + 7.8125, + 7.53125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.40625, + 5.5625, + 6, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.15625, + 6, + 5.75, + 6.5625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.12816, + 0, + 5.99017 + ], + "to": [ + 8.79316, + 1.11, + 8.21017 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 7.75, + 7.75, + 8.15625, + 8.03125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 0, + 8.0625, + 0.28125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 4, + 8.40625, + 4.28125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 0.5, + 8.0625, + 0.78125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.65625, + 6.3125, + 6.25, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.40625, + 6.5, + 0, + 7.0625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.75049, + 0, + 7.1675 + ], + "to": [ + 9.97049, + 1.11, + 8.8325 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 1, + 8.0625, + 1.28125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 5, + 8.40625, + 5.28125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 1.5, + 8.0625, + 1.78125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 5.5, + 8.40625, + 5.78125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.0625, + 0.40625, + 6.5, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.0625, + 6.5, + 0.5, + 6.90625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.75049, + 0, + 7.1675 + ], + "to": [ + 9.97049, + 1.11, + 8.8325 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 2, + 8.0625, + 2.28125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 6, + 8.40625, + 6.28125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 2.5, + 8.0625, + 2.78125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 6.5, + 8.40625, + 6.78125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.0625, + 0.90625, + 6.5, + 0.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.0625, + 1, + 6.5, + 1.40625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.12816, + 0, + 7.78983 + ], + "to": [ + 8.79316, + 1.11, + 10.00983 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 6.75, + 8, + 7.15625, + 8.28125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 3, + 8.0625, + 3.28125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 7, + 8.40625, + 7.28125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 3.5, + 8.0625, + 3.78125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.65625, + 7.0625, + 1.25, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.90625, + 1.5, + 6.5, + 2.0625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.12816, + 0, + 7.78983 + ], + "to": [ + 8.79316, + 1.11, + 10.00983 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 0, + 8.65625, + 0.28125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 4.5, + 8.0625, + 4.78125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 0.5, + 8.65625, + 0.78125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.25, + 7.75, + 1.8125, + 8.03125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.15625, + 7.0625, + 1.75, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.65625, + 6.5, + 2.25, + 7.0625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.49403, + 0.94, + 7.3925 + ], + "to": [ + 6.86403, + 8.81, + 8.6075 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 6.5, + 2.25, + 6.59375, + 4.21875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 3, + 3.3125, + 4.96875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2.75, + 6.5, + 2.84375, + 8.46875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 0, + 3.8125, + 1.96875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.84375, + 8.8125, + 1.75, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.09375, + 8.5, + 2, + 8.8125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.49403, + 0.94, + 7.3925 + ], + "to": [ + 6.86403, + 8.81, + 8.6075 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 3, + 6.5, + 3.09375, + 8.46875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 2, + 3.8125, + 3.96875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 6.5, + 3.34375, + 8.46875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 0, + 4.3125, + 1.96875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.34375, + 8.8125, + 2.25, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.59375, + 2.25, + 8.5, + 2.5625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.35316, + 0.94, + 6.53337 + ], + "to": [ + 8.56816, + 8.81, + 6.90337 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 2, + 4.3125, + 3.96875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 6.5, + 3.59375, + 8.46875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 4, + 3.8125, + 5.96875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 6.5, + 3.84375, + 8.46875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.8125, + 8.59375, + 2.5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.8125, + 2.75, + 8.5, + 2.84375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.35316, + 0.94, + 6.53337 + ], + "to": [ + 8.56816, + 8.81, + 6.90337 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 4, + 4.3125, + 5.96875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 6.5, + 4.09375, + 8.46875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 4.5, + 0.3125, + 6.46875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 6.5, + 4.34375, + 8.46875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.3125, + 8.59375, + 3, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.8125, + 3, + 8.5, + 3.09375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 9.05729, + 0.94, + 7.3925 + ], + "to": [ + 9.42729, + 8.81, + 8.6075 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 4.5, + 6.5, + 4.59375, + 8.46875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 0, + 4.8125, + 1.96875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 6.5, + 4.84375, + 8.46875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.5, + 4.5, + 0.8125, + 6.46875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.59375, + 3.5625, + 8.5, + 3.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.59375, + 8.5, + 3.5, + 8.8125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 9.05729, + 0.94, + 7.3925 + ], + "to": [ + 9.42729, + 8.81, + 8.6075 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 6.5, + 5.09375, + 8.46875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 4.5, + 1.3125, + 6.46875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 6.5, + 5.34375, + 8.46875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 4.5, + 1.8125, + 6.46875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.84375, + 8.8125, + 3.75, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.09375, + 8.5, + 4, + 8.8125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.35316, + 0.94, + 9.09663 + ], + "to": [ + 8.56816, + 8.81, + 9.46663 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 2, + 4.5, + 2.3125, + 6.46875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 6.5, + 5.59375, + 8.46875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 2, + 4.8125, + 3.96875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 6.5, + 6.34375, + 8.46875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.8125, + 4.09375, + 8.5, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5625, + 8.5, + 4.25, + 8.59375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.35316, + 0.94, + 9.09663 + ], + "to": [ + 8.56816, + 8.81, + 9.46663 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 2.5, + 4.5, + 2.8125, + 6.46875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 6.5, + 6.59375, + 8.46875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 4, + 4.8125, + 5.96875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 2.25, + 6.84375, + 4.21875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.8125, + 4.34375, + 8.5, + 4.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.8125, + 4.5, + 8.5, + 4.59375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.2183, + 2.89772, + 7.27829 + ], + "to": [ + 8.14286, + 8.56228, + 8.72171 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 0.46875, + 1.40625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 0, + 5.375, + 1.40625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0.5, + 0, + 0.96875, + 1.40625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 1.5, + 5.375, + 2.90625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.96875, + 5.375, + 6.5, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.21875, + 4.25, + 6.75, + 4.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.2183, + 2.89772, + 7.27829 + ], + "to": [ + 8.14286, + 8.56228, + 8.72171 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 1, + 0, + 1.46875, + 1.40625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 5, + 3.375, + 6.40625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 1.5, + 0.46875, + 2.90625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 3, + 5.375, + 4.40625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.21875, + 5.875, + 6.75, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.21875, + 6.75, + 5.75, + 7.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.23895, + 2.89772, + 6.25764 + ], + "to": [ + 7.68237, + 8.56228, + 8.1822 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 6.75, + 6, + 6.875, + 7.40625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 0, + 1.96875, + 1.40625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0.5, + 7, + 0.625, + 8.40625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.5, + 1.5, + 0.96875, + 2.90625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.625, + 8.21875, + 2.5, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.375, + 2.25, + 8.25, + 2.71875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.23895, + 2.89772, + 6.25764 + ], + "to": [ + 8.68237, + 8.56228, + 8.1822 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0.75, + 7, + 0.875, + 8.40625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 1.5, + 1.46875, + 2.90625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 7, + 1.125, + 8.40625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 1.5, + 1.96875, + 2.90625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.375, + 3.21875, + 8.25, + 2.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.375, + 3.25, + 8.25, + 3.71875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.23895, + 2.89772, + 6.25764 + ], + "to": [ + 8.68237, + 8.56228, + 8.1822 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 4.5, + 5.375, + 5.90625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 0, + 2.46875, + 1.40625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 0, + 5.875, + 1.40625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 1.5, + 2.46875, + 2.90625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.375, + 1.96875, + 7, + 1.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.375, + 2, + 7, + 2.46875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.77846, + 2.89772, + 7.27829 + ], + "to": [ + 9.70302, + 8.56228, + 8.72171 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 2.5, + 0, + 2.96875, + 1.40625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 1.5, + 5.875, + 2.90625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 1.5, + 2.96875, + 2.90625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 3, + 5.875, + 4.40625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.46875, + 2.875, + 7, + 2.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.46875, + 3, + 7, + 3.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.77846, + 2.89772, + 7.27829 + ], + "to": [ + 9.70302, + 8.56228, + 8.72171 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 3, + 0.46875, + 4.40625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 4.5, + 5.875, + 5.90625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 0, + 3.46875, + 1.40625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 0, + 6.375, + 1.40625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.46875, + 3.875, + 7, + 3.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.46875, + 4.75, + 7, + 5.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.23895, + 2.89772, + 7.8178 + ], + "to": [ + 8.68237, + 8.56228, + 9.74236 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 6, + 7.125, + 7.40625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.5, + 3, + 0.96875, + 4.40625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 7.25, + 0.125, + 8.65625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 3, + 1.46875, + 4.40625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.375, + 4.96875, + 8.25, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.875, + 8.25, + 5.75, + 8.71875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.23895, + 2.89772, + 7.8178 + ], + "to": [ + 7.68237, + 8.56228, + 9.74236 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 7.25, + 0, + 7.375, + 1.40625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 3, + 1.96875, + 4.40625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0.25, + 7.25, + 0.375, + 8.65625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 1.5, + 3.46875, + 2.90625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.125, + 8.71875, + 6, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.375, + 8.25, + 7.25, + 8.71875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.68237, + 7.64772, + 7.8178 + ], + "to": [ + 8.24237, + 8.56228, + 9.74236 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.95408, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 4, + 7.125, + 4.21875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 5, + 7.96875, + 5.21875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 5.25, + 7.125, + 5.46875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 7.5, + 8.46875, + 7.71875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.625, + 8.71875, + 7.5, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.875, + 8.25, + 7.75, + 8.71875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.68237, + 7.64772, + 6.25764 + ], + "to": [ + 8.24237, + 8.56228, + 8.1822 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 7.25, + 4.5, + 7.375, + 4.71875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 1, + 8.71875, + 1.21875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 8.5, + 4.875, + 8.71875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.25, + 8.25, + 1.71875, + 8.46875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.375, + 8.21875, + 8.25, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.125, + 8.25, + 8, + 8.71875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.68237, + 2.89772, + 7.8178 + ], + "to": [ + 8.24237, + 3.81228, + 9.74236 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.9475, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 4.75, + 8.625, + 4.96875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 1.25, + 8.71875, + 1.46875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 8.5, + 5.125, + 8.71875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 1.5, + 8.71875, + 1.71875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.375, + 8.71875, + 8.25, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.625, + 8.5, + 0.5, + 8.96875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.68237, + 2.89772, + 6.25764 + ], + "to": [ + 8.24237, + 3.81228, + 8.1822 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.9475, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 5, + 8.625, + 5.21875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 8.25, + 2.21875, + 8.46875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 8.5, + 5.375, + 8.71875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.25, + 1.75, + 8.71875, + 1.96875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0.875, + 8.96875, + 0.75, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.125, + 8.5, + 1, + 8.96875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.23895, + 2.89772, + 7.8178 + ], + "to": [ + 8.68237, + 8.56228, + 9.74236 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 6, + 1.5, + 6.375, + 2.90625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 3, + 2.46875, + 4.40625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 3, + 6.375, + 4.40625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 3, + 2.96875, + 4.40625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.625, + 7.71875, + 1.25, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.125, + 7.25, + 1.75, + 7.71875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 9.05729, + 8.79, + 7.6425 + ], + "to": [ + 9.42729, + 9.26, + 8.3575 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 8.5, + 8.59375, + 8.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 5.25, + 8.6875, + 5.375 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 8.75, + 0.09375, + 8.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 8.5, + 5.6875, + 8.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.59375, + 6.1875, + 8.5, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.34375, + 8.5, + 6.25, + 8.6875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.49403, + 8.79, + 7.6425 + ], + "to": [ + 6.86403, + 9.26, + 8.3575 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 8.75, + 0, + 8.84375, + 0.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 5.5, + 8.6875, + 5.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0.25, + 8.75, + 0.34375, + 8.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 5.75, + 8.6875, + 5.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.59375, + 6.4375, + 8.5, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.59375, + 8.5, + 6.5, + 8.6875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 3.948, + 6.9904, + 7.6425 + ], + "to": [ + 4.318, + 7.6604, + 8.3575 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 7.5, + 8.59375, + 7.65625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 5.75, + 6.1875, + 5.90625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 7.75, + 8.59375, + 7.90625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 4.25, + 6.6875, + 4.40625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.59375, + 6.6875, + 8.5, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.84375, + 8.5, + 6.75, + 8.6875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.96779, + 9.36376, + 7.6425 + ], + "to": [ + 8.95279, + 9.73376, + 8.3575 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 3.75, + 8.75, + 3.84375 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 6.75, + 8.6875, + 6.84375 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1.25, + 8.5, + 1.75, + 8.59375 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 8.5, + 7.1875, + 8.59375 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 2.1875, + 8.25, + 2 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.75, + 8.25, + 2.25, + 8.4375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.35214, + 8.69454, + 7.6425 + ], + "to": [ + 6.02214, + 9.06454, + 8.3575 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 8, + 8.65625, + 8.09375 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 7, + 8.6875, + 7.09375 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 8.25, + 8.65625, + 8.34375 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 7.25, + 8.6875, + 7.34375 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.65625, + 5.6875, + 6.5, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.90625, + 4.75, + 6.75, + 4.9375 + ], + "texture": "#0" + } + } + } + ], + "gui_light": "front", + "display": { + "thirdperson_righthand": { + "rotation": [ + 90, + -90, + 0 + ], + "translation": [ + 0, + -2, + -1.5 + ], + "scale": [ + 1.1, + 1.1, + 1.1 + ] + }, + "thirdperson_lefthand": { + "rotation": [ + 90, + -90, + 0 + ], + "translation": [ + 0, + -2, + -1.5 + ], + "scale": [ + 1.1, + 1.1, + 1.1 + ] + }, + "firstperson_righthand": { + "rotation": [ + 13, + 36, + -17 + ], + "translation": [ + 0.25, + 6.75, + -0.25 + ], + "scale": [ + 1.5, + 1.5, + 1.5 + ] + }, + "firstperson_lefthand": { + "rotation": [ + 13, + 36, + -17 + ], + "translation": [ + 0.25, + 6.75, + -0.25 + ], + "scale": [ + 1.5, + 1.5, + 1.5 + ] + }, + "ground": { + "translation": [ + 0, + 5, + 0 + ] + }, + "gui": { + "rotation": [ + 31, + 7, + -40 + ], + "translation": [ + 4, + 4, + 0 + ], + "scale": [ + 1.5, + 1.5, + 1.5 + ] + }, + "head": { + "rotation": [ + 0, + -90, + 0 + ], + "translation": [ + 0, + 26.25, + 0 + ], + "scale": [ + 2.5, + 2.5, + 2.5 + ] + }, + "fixed": { + "rotation": [ + 0, + 90, + 0 + ], + "translation": [ + 0.25, + 6.25, + -1.75 + ], + "scale": [ + 2, + 2, + 2 + ] + } + }, + "groups": [ + { + "name": "group", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "children": [ + { + "name": "group", + "origin": [ + 0, + 0, + 0 + ], + "color": 5, + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ] + }, + { + "name": "group", + "origin": [ + 0, + 0, + 0 + ], + "color": 9, + "children": [ + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15 + ] + }, + { + "name": "group", + "origin": [ + 0, + 0, + 0 + ], + "color": 9, + "children": [ + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29 + ] + }, + { + "name": "group", + "origin": [ + 7.96066, + 1.75, + 8 + ], + "color": 0, + "children": [ + 30, + 31, + 32, + 33, + 34 + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/beast_bullet.json b/src/main/resources/assets/superbwarfare/models/item/beast_bullet.json new file mode 100644 index 000000000..11d8336ed --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/beast_bullet.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/perk/beast_bullet" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/blade_bullet.json b/src/main/resources/assets/superbwarfare/models/item/blade_bullet.json new file mode 100644 index 000000000..93a6abdf8 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/blade_bullet.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/perk/blade_bullet" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/bocek.json b/src/main/resources/assets/superbwarfare/models/item/bocek.json new file mode 100644 index 000000000..36d033469 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/bocek.json @@ -0,0 +1,27 @@ +{ + "loader": "forge:separate_transforms", + "gui_light": "front", + "base": { + "parent": "superbwarfare:item/bocek_base" + }, + "perspectives": { + "gui": { + "parent": "superbwarfare:item/bocek_icon" + }, + "thirdperson_righthand": { + "parent": "superbwarfare:item/bocek3d" + }, + "thirdperson_lefthand": { + "parent": "superbwarfare:item/bocek3d" + }, + "ground": { + "parent": "superbwarfare:item/bocek3d" + }, + "fixed": { + "parent": "superbwarfare:item/bocek3d" + }, + "head": { + "parent": "superbwarfare:item/bocek3d" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/bocek3d.json b/src/main/resources/assets/superbwarfare/models/item/bocek3d.json new file mode 100644 index 000000000..25a6fc3ac --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/bocek3d.json @@ -0,0 +1,11921 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 64, + 64 + ], + "textures": { + "6": "superbwarfare:item/bsk" + }, + "elements": [ + { + "from": [ + 8.8, + 4.05, + 4.1 + ], + "to": [ + 8.9, + 4.55, + 5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.5, + 3.4, + 4.5 + ] + }, + "faces": { + "north": { + "uv": [ + 5.5, + 9.5, + 5.52344, + 9.625 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 2.5, + 7.25, + 2.72656, + 7.375 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 9.5, + 5.5, + 9.52344, + 5.625 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 7.25, + 2.75, + 7.47656, + 2.875 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 9.02344, + 4.47656, + 9, + 4.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 4.52344, + 9, + 4.5, + 9.22656 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.6, + 4.25, + 4.2 + ], + "to": [ + 8.8, + 4.35, + 4.3 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.5, + 3.4, + 4.5 + ] + }, + "faces": { + "north": { + "uv": [ + 9.75, + 3, + 9.79688, + 3.02344 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 4.5, + 10, + 4.52344, + 10.02344 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 3.25, + 9.75, + 3.29688, + 9.77344 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 10, + 4.5, + 10.02344, + 4.52344 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 9.79688, + 3.27344, + 9.75, + 3.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 3.54688, + 9.75, + 3.5, + 9.77344 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.575, + 4.2, + 4.2 + ], + "to": [ + 8.6, + 4.4, + 4.3 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.5, + 3.4, + 4.5 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 10, + 5.00781, + 10.04688 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 9.75, + 3.5, + 9.77344, + 3.54688 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 10, + 5, + 10.00781, + 5.04688 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 3.75, + 9.75, + 3.77344, + 9.79688 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 6.00781, + 10.02344, + 6, + 10 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 10.00781, + 6, + 10, + 6.02344 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.475, + 4.2, + 4.25 + ], + "to": [ + 8.5, + 4.3, + 4.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.5, + 3.4, + 4.5 + ] + }, + "faces": { + "north": { + "uv": [ + 6.25, + 10, + 6.25781, + 10.02344 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 0, + 0, + 0, + 0.02344 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 10, + 6.25, + 10.00781, + 6.27344 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 0, + 0, + 0, + 0.02344 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 0.00781, + 0, + 0, + 0 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 0.00781, + 0, + 0, + 0 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.4, + 4.2, + 4.2 + ], + "to": [ + 8.425, + 4.4, + 4.3 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.5, + 3.4, + 4.5 + ] + }, + "faces": { + "north": { + "uv": [ + 5.25, + 10, + 5.25781, + 10.04688 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 9.75, + 3.75, + 9.77344, + 3.79688 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 10, + 5.25, + 10.00781, + 5.29688 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 4, + 9.75, + 4.02344, + 9.79688 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 6.50781, + 10.02344, + 6.5, + 10 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 10.00781, + 6.5, + 10, + 6.52344 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.4, + 4.3875, + 4.2 + ], + "to": [ + 8.6, + 4.4125, + 4.3 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.4875, + 4.3, + 4.25 + ] + }, + "faces": { + "north": { + "uv": [ + 5.5, + 10, + 5.54688, + 10.00781 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 6.75, + 10, + 6.77344, + 10.00781 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 10, + 5.5, + 10.04688, + 5.50781 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 10, + 6.75, + 10.02344, + 6.75781 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 9.79688, + 4.02344, + 9.75, + 4 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 4.29688, + 9.75, + 4.25, + 9.77344 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.4, + 4.1875, + 4.2 + ], + "to": [ + 8.6, + 4.2125, + 4.3 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.4875, + 4.3, + 4.25 + ] + }, + "faces": { + "north": { + "uv": [ + 5.75, + 10, + 5.79688, + 10.00781 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 7, + 10, + 7.02344, + 10.00781 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 10, + 5.75, + 10.04688, + 5.75781 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 10, + 7, + 10.02344, + 7.00781 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 9.79688, + 4.27344, + 9.75, + 4.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 4.54688, + 9.75, + 4.5, + 9.77344 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.9, + 2.35, + 5.8 + ], + "to": [ + 9, + 2.85, + 6.9 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.5, + 3.4, + 4.5 + ] + }, + "faces": { + "north": { + "uv": [ + 5.75, + 9.5, + 5.77344, + 9.625 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 1.25, + 7, + 1.52344, + 7.125 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 9.5, + 5.75, + 9.52344, + 5.875 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 2.25, + 7, + 2.52344, + 7.125 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 6.77344, + 8.77344, + 6.75, + 8.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 7.02344, + 8.5, + 7, + 8.77344 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.9, + 1.85, + 6.9 + ], + "to": [ + 9.7, + 3.25, + 7.4 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.5, + 3.4, + 4.5 + ] + }, + "faces": { + "north": { + "uv": [ + 0.25, + 5.25, + 0.45313, + 5.60156 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 0.25, + 6.5, + 0.375, + 6.85156 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 1, + 5.25, + 1.20313, + 5.60156 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 6.5, + 0.25, + 6.625, + 0.60156 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 7.70313, + 0.625, + 7.5, + 0.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 7.70313, + 0.75, + 7.5, + 0.875 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.9, + 1.85, + 5.2 + ], + "to": [ + 9.7, + 3.25, + 5.8 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.5, + 3.4, + 4.5 + ] + }, + "faces": { + "north": { + "uv": [ + 1.25, + 5.25, + 1.45313, + 5.60156 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 3.75, + 5.75, + 3.89844, + 6.10156 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 1.5, + 5.25, + 1.70313, + 5.60156 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 4, + 5.75, + 4.14844, + 6.10156 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 7.20313, + 7.14844, + 7, + 7 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 0.20313, + 7.25, + 0, + 7.39844 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 9, + 1.95, + 5.1 + ], + "to": [ + 9.6, + 3.35, + 7.6 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.5, + 3.4, + 4.5 + ] + }, + "faces": { + "north": { + "uv": [ + 5.75, + 4, + 5.89844, + 4.35156 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 3, + 0, + 3.625, + 0.35156 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 5, + 5.75, + 5.14844, + 6.10156 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 3, + 0.5, + 3.625, + 0.85156 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 4.39844, + 5.375, + 4.25, + 4.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 4.64844, + 4.75, + 4.5, + 5.375 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.7, + 2.55, + 7 + ], + "to": [ + 9.6, + 3.35, + 7.4 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.5, + 3.4, + 4.5 + ] + }, + "faces": { + "north": { + "uv": [ + 5.25, + 2.5, + 5.47656, + 2.70313 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 6.25, + 7.75, + 6.35156, + 7.95313 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 6.5, + 0, + 6.72656, + 0.20313 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 7.75, + 6.25, + 7.85156, + 6.45313 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 7.72656, + 5.10156, + 7.5, + 5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 7.72656, + 6.5, + 7.5, + 6.60156 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.2501, + 8.23033, + 3 + ], + "to": [ + 8.7481, + 9.48033, + 3.75 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 8.5, + 8.30533, + 3.58045 + ] + }, + "faces": { + "north": { + "uv": [ + 6.75, + 2, + 6.875, + 2.3125 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 3, + 5.5, + 3.1875, + 5.8125 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 6.75, + 2.5, + 6.875, + 2.8125 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 5.5, + 3, + 5.6875, + 3.3125 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 1.875, + 7.6875, + 1.75, + 7.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 2.375, + 7.5, + 2.25, + 7.6875 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.2501, + 7.552, + 7.32814 + ], + "to": [ + 8.7481, + 9.302, + 7.62814 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 8.5625, + 3.5, + 7.23039 + ] + }, + "faces": { + "north": { + "uv": [ + 4.5, + 5.5, + 4.625, + 5.9375 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 1.75, + 7, + 1.82813, + 7.4375 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 4.75, + 5.5, + 4.875, + 5.9375 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 7, + 2.5, + 7.07813, + 2.9375 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 8.375, + 5.82813, + 8.25, + 5.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 6.125, + 8.25, + 6, + 8.32813 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.2502, + 6.6091, + 3.9 + ], + "to": [ + 8.7462, + 7.0091, + 4.45 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8.4991, + 7.1591, + 3.92166 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 8, + 8.125, + 8.10156 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8, + 6.75, + 8.14063, + 6.85156 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 0, + 8.25, + 0.125, + 8.35156 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 7, + 8, + 7.14063, + 8.10156 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 1.125, + 8.14063, + 1, + 8 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 8.125, + 1, + 8, + 1.14063 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.2501, + 7.552, + 7.62814 + ], + "to": [ + 8.7481, + 8.202, + 8.52814 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 8.5625, + 3.5, + 7.23039 + ] + }, + "faces": { + "north": { + "uv": [ + 7.75, + 6.5, + 7.875, + 6.66406 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 6.5, + 3.25, + 6.72656, + 3.41406 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 6.75, + 7.75, + 6.875, + 7.91406 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 0.25, + 7, + 0.47656, + 7.16406 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 7.375, + 3.22656, + 7.25, + 3 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 3.375, + 7.25, + 3.25, + 7.47656 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.25, + 7.19168, + 3.00798 + ], + "to": [ + 8.748, + 7.39168, + 3.55798 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8.499, + 7.24168, + 3.88298 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 1.25, + 9.125, + 1.29688 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 6.25, + 8.5, + 6.39063, + 8.54688 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 1.5, + 9, + 1.625, + 9.04688 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 8.5, + 6.25, + 8.64063, + 6.29688 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 1.375, + 8.14063, + 1.25, + 8 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 8.125, + 1.25, + 8, + 1.39063 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.2, + 8.152, + 7.62814 + ], + "to": [ + 8.8, + 9.302, + 8.22814 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 8.5625, + 3.5, + 7.23039 + ] + }, + "faces": { + "north": { + "uv": [ + 6.5, + 0.75, + 6.64844, + 1.03906 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 1, + 6.5, + 1.14844, + 6.78906 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 1.25, + 6.5, + 1.39844, + 6.78906 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 6.5, + 1.25, + 6.64844, + 1.53906 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 7.39844, + 7.64844, + 7.25, + 7.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 7.64844, + 7.25, + 7.5, + 7.39844 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.2, + -2.302, + 7.63264 + ], + "to": [ + 8.8, + -1.152, + 8.23264 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 8.5625, + 3.5, + 7.23039 + ] + }, + "faces": { + "north": { + "uv": [ + 1.5, + 6.5, + 1.64844, + 6.78906 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 1.75, + 6.5, + 1.89844, + 6.78906 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 6.5, + 1.75, + 6.64844, + 2.03906 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 2.25, + 6.5, + 2.39844, + 6.78906 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 7.64844, + 7.64844, + 7.5, + 7.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 7.89844, + 0, + 7.75, + 0.14844 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.2, + 8.152, + 7.62814 + ], + "to": [ + 8.8, + 9.302, + 8.22814 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 8.5625, + 3.5, + 7.23039 + ] + }, + "faces": { + "north": { + "uv": [ + 6.5, + 2.25, + 6.64844, + 2.53906 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 2.5, + 6.5, + 2.64844, + 6.78906 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 6.5, + 2.75, + 6.64844, + 3.03906 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 3, + 6.5, + 3.14844, + 6.78906 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 0.39844, + 7.89844, + 0.25, + 7.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 7.89844, + 0.25, + 7.75, + 0.39844 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.25, + 7.53033, + 3.05545 + ], + "to": [ + 8.75, + 9.18033, + 3.65545 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8.5, + 8.30533, + 3.58045 + ] + }, + "faces": { + "north": { + "uv": [ + 5.25, + 5.75, + 5.375, + 6.16406 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 5.25, + 2, + 5.39844, + 2.41406 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 5.5, + 5.75, + 5.625, + 6.16406 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 5.25, + 4, + 5.39844, + 4.41406 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 7.875, + 7.64844, + 7.75, + 7.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 7.875, + 7.75, + 7.75, + 7.89844 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.2, + 0.43239, + 3.13091 + ], + "to": [ + 8.8, + 1.03239, + 3.73091 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 8.5, + -0.69261, + 4.03091 + ] + }, + "faces": { + "north": { + "uv": [ + 7.75, + 0.5, + 7.89844, + 0.64844 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 7.75, + 0.75, + 7.89844, + 0.89844 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 1, + 7.75, + 1.14844, + 7.89844 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 7.75, + 1, + 7.89844, + 1.14844 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 1.89844, + 7.89844, + 1.75, + 7.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 2.39844, + 7.75, + 2.25, + 7.89844 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.1, + 0.5893, + 4.4643 + ], + "to": [ + 8.9, + 0.8893, + 4.7643 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8.5, + 0.73928, + 4.61427 + ] + }, + "faces": { + "north": { + "uv": [ + 1.75, + 8, + 1.95313, + 8.07813 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 9, + 0.75, + 9.07813, + 0.82813 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 8, + 2.5, + 8.20313, + 2.57813 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 1, + 9, + 1.07813, + 9.07813 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 3.20313, + 8.07813, + 3, + 8 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 3.45313, + 8, + 3.25, + 8.07813 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.2501, + 0.33033, + -3.8 + ], + "to": [ + 8.7481, + 1.58033, + -3.05 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 8.5, + 8.30533, + 3.58045 + ] + }, + "faces": { + "north": { + "uv": [ + 6.75, + 3, + 6.875, + 3.3125 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 3.25, + 5.5, + 3.4375, + 5.8125 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 4, + 6.75, + 4.125, + 7.0625 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 3.5, + 5.5, + 3.6875, + 5.8125 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 2.625, + 7.6875, + 2.5, + 7.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 7.625, + 4.75, + 7.5, + 4.9375 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.25, + -2.16967, + 3.05545 + ], + "to": [ + 8.75, + -0.51967, + 3.65545 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8.5, + 8.30533, + 3.58045 + ] + }, + "faces": { + "north": { + "uv": [ + 5.75, + 5.5, + 5.875, + 5.91406 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 5.25, + 5, + 5.39844, + 5.41406 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 1.75, + 6, + 1.875, + 6.41406 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 1.75, + 5.5, + 1.89844, + 5.91406 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 0.125, + 8.14844, + 0, + 8 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 8.125, + 0, + 8, + 0.14844 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.25, + 0.13461, + 0.20021 + ], + "to": [ + 8.748, + 0.33461, + 0.75021 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8.499, + 7.08461, + 3.77521 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 1.5, + 9.125, + 1.54688 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 6.5, + 8.5, + 6.64063, + 8.54688 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 1.75, + 9, + 1.875, + 9.04688 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 8.5, + 6.5, + 8.64063, + 6.54688 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 1.625, + 8.14063, + 1.5, + 8 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 8.125, + 1.5, + 8, + 1.64063 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.2501, + -2.40408, + 7.13472 + ], + "to": [ + 8.7481, + -1.75408, + 8.03472 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 8.5625, + 2.29792, + 8.43247 + ] + }, + "faces": { + "north": { + "uv": [ + 7.75, + 6.75, + 7.875, + 6.91406 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 7, + 0.5, + 7.22656, + 0.66406 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 7, + 7.75, + 7.125, + 7.91406 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 7, + 0.75, + 7.22656, + 0.91406 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 7.375, + 3.47656, + 7.25, + 3.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 3.625, + 7.25, + 3.5, + 7.47656 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.2501, + 3.09775, + 1.52839 + ], + "to": [ + 8.7481, + 3.39775, + 3.17839 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 8.5625, + 3.5, + 7.23039 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 6, + 8.375, + 6.07813 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 5.25, + 7, + 5.66406, + 7.07813 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 6.25, + 8.25, + 6.375, + 8.32813 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 7, + 5.75, + 7.41406, + 5.82813 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 6.125, + 3.16406, + 6, + 2.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 3.125, + 6, + 3, + 6.41406 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.2502, + -0.01228, + 3.94984 + ], + "to": [ + 8.7462, + 0.38772, + 5.29984 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8.4991, + -0.16228, + 3.92484 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 0, + 8.375, + 0.10156 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 3.25, + 7, + 3.58594, + 7.10156 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 0.25, + 8.25, + 0.375, + 8.35156 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 7, + 3.5, + 7.33594, + 3.60156 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 3.375, + 6.83594, + 3.25, + 6.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 3.625, + 6.5, + 3.5, + 6.83594 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.39, + 0.85, + 0.72877 + ], + "to": [ + 8.61, + 1.15, + 3.47877 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8.5, + 0.93495, + 3.65377 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 8.5, + 9.05469, + 8.57813 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 5.5, + 3.5, + 6.1875, + 3.57813 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 9, + 8.75, + 9.05469, + 8.82813 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 5.5, + 4.75, + 6.1875, + 4.82813 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 4.30469, + 7.4375, + 4.25, + 6.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 4.55469, + 6.75, + 4.5, + 7.4375 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.35428, + 0.8352, + 0.72877 + ], + "to": [ + 8.57428, + 1.1352, + 3.47877 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 8.46428, + 0.92015, + 3.65377 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 9, + 9.05469, + 9.07813 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 5, + 5.5, + 5.6875, + 5.57813 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 0, + 9.25, + 0.05469, + 9.32813 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 5.5, + 5, + 6.1875, + 5.07813 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 4.80469, + 7.4375, + 4.75, + 6.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 6.80469, + 4.75, + 6.75, + 5.4375 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.23444, + 0.77444, + 0.72877 + ], + "to": [ + 8.53444, + 0.99444, + 3.47877 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.44949, + 0.88444, + 3.65377 + ] + }, + "faces": { + "north": { + "uv": [ + 9.25, + 0, + 9.32813, + 0.05469 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 6.5, + 4, + 7.1875, + 4.05469 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 9.25, + 0.25, + 9.32813, + 0.30469 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 6.75, + 4.25, + 7.4375, + 4.30469 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 0.07813, + 6.4375, + 0, + 5.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 0.32813, + 5.75, + 0.25, + 6.4375 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.24923, + 0.73872, + 0.72877 + ], + "to": [ + 8.54923, + 0.95872, + 3.47877 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 8.46428, + 0.84872, + 3.65377 + ] + }, + "faces": { + "north": { + "uv": [ + 9.25, + 0.5, + 9.32813, + 0.55469 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 5, + 6.75, + 5.6875, + 6.80469 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 9.25, + 0.75, + 9.32813, + 0.80469 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 6.75, + 5.5, + 7.4375, + 5.55469 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 1.07813, + 6.4375, + 1, + 5.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 1.32813, + 5.75, + 1.25, + 6.4375 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.39, + 0.61887, + 0.72877 + ], + "to": [ + 8.61, + 0.91887, + 3.47877 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.5, + 0.83392, + 3.65377 + ] + }, + "faces": { + "north": { + "uv": [ + 1, + 9.25, + 1.05469, + 9.32813 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 5.5, + 5.25, + 6.1875, + 5.32813 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 9.25, + 1, + 9.30469, + 1.07813 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 5.75, + 2, + 6.4375, + 2.07813 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 5.80469, + 7.4375, + 5.75, + 6.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 6.80469, + 5.75, + 6.75, + 6.4375 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.42572, + 0.63367, + 0.72877 + ], + "to": [ + 8.64572, + 0.93367, + 3.47877 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 8.53572, + 0.84872, + 3.65377 + ] + }, + "faces": { + "north": { + "uv": [ + 1.25, + 9.25, + 1.30469, + 9.32813 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 5.75, + 2.25, + 6.4375, + 2.32813 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 9.25, + 1.25, + 9.30469, + 1.32813 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 5.75, + 2.5, + 6.4375, + 2.57813 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 6.05469, + 7.4375, + 6, + 6.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 6.55469, + 6.75, + 6.5, + 7.4375 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.46556, + 0.77444, + 0.72877 + ], + "to": [ + 8.76556, + 0.99444, + 3.47877 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.55051, + 0.88444, + 3.65377 + ] + }, + "faces": { + "north": { + "uv": [ + 1.5, + 9.25, + 1.57813, + 9.30469 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 6.75, + 6.5, + 7.4375, + 6.55469 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 9.25, + 1.5, + 9.32813, + 1.55469 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 6.75, + 6.75, + 7.4375, + 6.80469 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 1.57813, + 6.4375, + 1.5, + 5.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 2.32813, + 5.75, + 2.25, + 6.4375 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45077, + 0.81015, + 0.72877 + ], + "to": [ + 8.75077, + 1.03015, + 3.47877 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 8.53572, + 0.92015, + 3.65377 + ] + }, + "faces": { + "north": { + "uv": [ + 1.75, + 9.25, + 1.82813, + 9.30469 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 7, + 0, + 7.6875, + 0.05469 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 9.25, + 1.75, + 9.32813, + 1.80469 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 7, + 0.25, + 7.6875, + 0.30469 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 2.57813, + 6.4375, + 2.5, + 5.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 5.82813, + 2.75, + 5.75, + 3.4375 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.9, + 3.45, + 4.1 + ], + "to": [ + 9.2, + 4.75, + 5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.5, + 3.4, + 4.5 + ] + }, + "faces": { + "north": { + "uv": [ + 5.5, + 7.25, + 5.57813, + 7.57813 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 1.75, + 5, + 1.97656, + 5.32813 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 0, + 7.5, + 0.07813, + 7.82813 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 4.75, + 5, + 4.97656, + 5.32813 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 8.07813, + 0.72656, + 8, + 0.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 8.07813, + 0.75, + 8, + 0.97656 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.70485, + 4.73107, + 4.1 + ], + "to": [ + 9.00485, + 5.93107, + 4.9 + ], + "rotation": { + "angle": 22.5, + "axis": "z", + "origin": [ + 9.05485, + 5.23107, + 4.5 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 5.5, + 7.57813, + 5.79688 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 5.5, + 2, + 5.70313, + 2.29688 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 5.75, + 7.5, + 5.82813, + 7.79688 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 5.5, + 2.5, + 5.70313, + 2.79688 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 3.57813, + 8.20313, + 3.5, + 8 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 3.82813, + 8, + 3.75, + 8.20313 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.3502, + 6.61465, + 5.53033 + ], + "to": [ + 8.6462, + 6.71465, + 6.23033 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 8.5482, + 6.66465, + 5.93033 + ] + }, + "faces": { + "north": { + "uv": [ + 9.75, + 0, + 9.82031, + 0.02344 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 2.25, + 9.25, + 2.42188, + 9.27344 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 0.25, + 9.75, + 0.32031, + 9.77344 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 2.5, + 9.25, + 2.67188, + 9.27344 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 3.57031, + 8.42188, + 3.5, + 8.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 8.32031, + 3.5, + 8.25, + 3.67188 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.3502, + 6.41716, + 6.10711 + ], + "to": [ + 8.6462, + 6.51716, + 7.40711 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8.5482, + 6.46716, + 6.85711 + ] + }, + "faces": { + "north": { + "uv": [ + 9.75, + 0.25, + 9.82031, + 0.27344 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8.25, + 8, + 8.57813, + 8.02344 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 0.5, + 9.75, + 0.57031, + 9.77344 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 8.25, + 8.25, + 8.57813, + 8.27344 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 6.07031, + 7.82813, + 6, + 7.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 6.57031, + 7.5, + 6.5, + 7.82813 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.3502, + 5.91716, + 6.00711 + ], + "to": [ + 8.6462, + 6.01716, + 7.40711 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8.5482, + 5.96716, + 6.85711 + ] + }, + "faces": { + "north": { + "uv": [ + 9.75, + 0.5, + 9.82031, + 0.52344 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8.25, + 7, + 8.60156, + 7.02344 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 0.75, + 9.75, + 0.82031, + 9.77344 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 7.25, + 8.25, + 7.60156, + 8.27344 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 1.32031, + 7.85156, + 1.25, + 7.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 1.57031, + 7.5, + 1.5, + 7.85156 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.3502, + 6.24196, + 5.69097 + ], + "to": [ + 8.6462, + 6.34196, + 6.09097 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8.5482, + 5.99196, + 6.84097 + ] + }, + "faces": { + "north": { + "uv": [ + 9.75, + 0.75, + 9.82031, + 0.77344 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 6.5, + 9.5, + 6.60156, + 9.52344 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 1, + 9.75, + 1.07031, + 9.77344 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 9.5, + 6.5, + 9.60156, + 6.52344 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 8.57031, + 3.60156, + 8.5, + 3.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 8.57031, + 4, + 8.5, + 4.10156 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.4502, + 6.05558, + 5.74848 + ], + "to": [ + 8.6002, + 6.10558, + 6.44848 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 8.4982, + 5.90558, + 5.84848 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 10, + 4.03906, + 10.01563 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 6, + 9.5, + 6.17188, + 9.51563 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 10, + 4, + 10.03906, + 4.01563 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 9.5, + 6, + 9.67188, + 6.01563 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 6.03906, + 8.67188, + 6, + 8.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 8.53906, + 6, + 8.5, + 6.17188 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.4502, + 6.55, + 6.15152 + ], + "to": [ + 8.6002, + 6.6, + 7.35152 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8.5752, + 6.2061, + 5.90152 + ] + }, + "faces": { + "north": { + "uv": [ + 4.25, + 10, + 4.28906, + 10.01563 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 9, + 8.25, + 9.29688, + 8.26563 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 10, + 4.25, + 10.03906, + 4.26563 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 8.5, + 9, + 8.79688, + 9.01563 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 8.28906, + 4.29688, + 8.25, + 4 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 4.28906, + 8.25, + 4.25, + 8.54688 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.3502, + 5.91716, + 7.40711 + ], + "to": [ + 8.6462, + 6.51716, + 7.50711 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8.5482, + 6.46716, + 6.85711 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 5.5, + 8.32031, + 5.64844 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 3.5, + 9.5, + 3.52344, + 9.64844 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 5.75, + 8.25, + 5.82031, + 8.39844 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 9.5, + 3.5, + 9.52344, + 3.64844 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 9.82031, + 1.02344, + 9.75, + 1 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 1.32031, + 9.75, + 1.25, + 9.77344 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.38, + 5.95, + 7.50711 + ], + "to": [ + 8.63, + 6.5, + 7.60711 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8.5482, + 6.46716, + 6.85711 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 6.75, + 8.3125, + 6.89063 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 3.75, + 9.5, + 3.77344, + 9.64063 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 7, + 8.25, + 7.0625, + 8.39063 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 9.5, + 3.75, + 9.52344, + 3.89063 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 9.8125, + 1.27344, + 9.75, + 1.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 1.5625, + 9.75, + 1.5, + 9.77344 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.4502, + 6.01716, + 6.10711 + ], + "to": [ + 8.6462, + 6.41716, + 6.30711 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8.5482, + 6.46716, + 6.85711 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 6, + 9.04688, + 6.10156 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 6.25, + 9, + 6.29688, + 9.10156 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 9, + 6.25, + 9.04688, + 6.35156 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 6.5, + 9, + 6.54688, + 9.10156 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 7.04688, + 9.54688, + 7, + 9.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 9.54688, + 7, + 9.5, + 7.04688 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.4462, + 5.81716, + 5.60711 + ], + "to": [ + 8.6262, + 6.81716, + 5.70711 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8.5482, + 6.46716, + 6.85711 + ] + }, + "faces": { + "north": { + "uv": [ + 3.75, + 8.25, + 3.79688, + 8.5 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 9, + 1.75, + 9.02344, + 2 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 4, + 8.25, + 4.04688, + 8.5 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 2, + 9, + 2.02344, + 9.25 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 9.79688, + 4.52344, + 9.75, + 4.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 4.79688, + 9.75, + 4.75, + 9.77344 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.2, + 6.03239, + 2.83091 + ], + "to": [ + 8.8, + 6.63239, + 3.43091 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 8.5, + 4.90739, + 3.73091 + ] + }, + "faces": { + "north": { + "uv": [ + 2.5, + 7.75, + 2.64844, + 7.89844 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 3, + 7.75, + 3.14844, + 7.89844 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 3.25, + 7.75, + 3.39844, + 7.89844 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 3.5, + 7.75, + 3.64844, + 7.89844 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 3.89844, + 7.89844, + 3.75, + 7.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 4.14844, + 7.75, + 4, + 7.89844 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.1, + 6.1893, + 4.1643 + ], + "to": [ + 8.9, + 6.4893, + 4.4643 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8.5, + 6.33928, + 4.31427 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 8, + 4.20313, + 8.07813 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 9, + 1, + 9.07813, + 1.07813 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 8, + 4, + 8.20313, + 4.07813 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 1.25, + 9, + 1.32813, + 9.07813 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 4.45313, + 8.07813, + 4.25, + 8 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 4.70313, + 8, + 4.5, + 8.07813 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.2502, + 5.48284, + 4.18284 + ], + "to": [ + 8.7462, + 7.28284, + 5.28284 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8.5001, + 5.18284, + 4.58284 + ] + }, + "faces": { + "north": { + "uv": [ + 5.5, + 4, + 5.625, + 4.45313 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 4, + 2, + 4.27344, + 2.45313 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 4.25, + 5.5, + 4.375, + 5.95313 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 4, + 2.5, + 4.27344, + 2.95313 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 3.125, + 7.27344, + 3, + 7 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 7.125, + 3, + 7, + 3.27344 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.3502, + 5.78284, + 5.28284 + ], + "to": [ + 8.6462, + 6.98284, + 5.68284 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8.5001, + 5.18284, + 4.58284 + ] + }, + "faces": { + "north": { + "uv": [ + 7.75, + 5, + 7.82031, + 5.29688 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 0.25, + 7.25, + 0.35156, + 7.54688 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 5.25, + 7.75, + 5.32031, + 8.04688 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 7.25, + 0.5, + 7.35156, + 0.79688 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 8.57031, + 4.35156, + 8.5, + 4.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 4.57031, + 8.5, + 4.5, + 8.60156 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.275, + 5.98284, + 5.28284 + ], + "to": [ + 8.471, + 6.18284, + 5.69284 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8.5001, + 5.18284, + 4.58284 + ] + }, + "faces": { + "north": { + "uv": [ + 7.25, + 9.5, + 7.29688, + 9.54688 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 9, + 6.5, + 9.10156, + 6.54688 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 9.5, + 7.25, + 9.54688, + 7.29688 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 6.75, + 9, + 6.85156, + 9.04688 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 9.04688, + 6.85156, + 9, + 6.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 7.04688, + 9, + 7, + 9.10156 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.275, + 6.3328, + 5.28284 + ], + "to": [ + 8.471, + 6.5328, + 5.69284 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8.3482, + 6.4328, + 5.48784 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 9.5, + 7.54688, + 9.54688 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 9, + 7, + 9.10156, + 7.04688 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 9.5, + 7.5, + 9.54688, + 7.54688 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 7.25, + 9, + 7.35156, + 9.04688 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 9.04688, + 7.35156, + 9, + 7.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 7.54688, + 9, + 7.5, + 9.10156 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.275, + 6.68284, + 5.28284 + ], + "to": [ + 8.471, + 6.88284, + 5.69284 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8.5001, + 5.18284, + 4.58284 + ] + }, + "faces": { + "north": { + "uv": [ + 7.75, + 9.5, + 7.79688, + 9.54688 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 9, + 7.5, + 9.10156, + 7.54688 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 9.5, + 7.75, + 9.54688, + 7.79688 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 7.75, + 9, + 7.85156, + 9.04688 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 9.04688, + 7.85156, + 9, + 7.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 8.04688, + 9, + 8, + 9.10156 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.2503, + 5.09652, + 4.54551 + ], + "to": [ + 8.7443, + 6.29652, + 4.97551 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 8.4979, + 6.24652, + 5.04551 + ] + }, + "faces": { + "north": { + "uv": [ + 1, + 7, + 1.125, + 7.29688 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 5, + 7, + 5.10938, + 7.29688 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 7, + 1, + 7.125, + 1.29688 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 7, + 5, + 7.10938, + 5.29688 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 8.125, + 7.60938, + 8, + 7.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 8.125, + 7.75, + 8, + 7.85938 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.2, + 3.25, + 3.9 + ], + "to": [ + 9.5, + 3.45, + 5.1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.5, + 3.4, + 4.5 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 4.5, + 8.32813, + 4.54688 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8, + 7.25, + 8.29688, + 7.29688 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 4.75, + 8, + 5.07813, + 8.04688 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 7.5, + 8, + 7.79688, + 8.04688 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 1.32813, + 4.79688, + 1, + 4.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 1.82813, + 4.5, + 1.5, + 4.79688 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.7, + 3.25, + 5 + ], + "to": [ + 9.4, + 3.45, + 7.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.5, + 3.4, + 4.5 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 7.5, + 8.42188, + 7.54688 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 7.25, + 1.25, + 7.875, + 1.29688 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 7.75, + 8.25, + 7.92188, + 8.29688 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 7.25, + 2.5, + 7.875, + 2.54688 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 4.17188, + 3.625, + 4, + 3 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 4.17188, + 3.75, + 4, + 4.375 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8, + 3.25, + 3.9 + ], + "to": [ + 8.3, + 3.35, + 4.9 + ], + "rotation": { + "angle": -22.5, + "axis": "z", + "origin": [ + 8.5, + 3.4, + 4.5 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 9.5, + 9.57813, + 9.52344 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 9, + 2, + 9.25, + 2.02344 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 0, + 9.75, + 0.07813, + 9.77344 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 2.25, + 9, + 2.5, + 9.02344 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 7.82813, + 7.25, + 7.75, + 7 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 7.32813, + 7.75, + 7.25, + 8 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.3, + 3.15, + 4 + ], + "to": [ + 8.7, + 3.25, + 5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.3, + 3.4, + 4.5 + ] + }, + "faces": { + "north": { + "uv": [ + 6.75, + 9.5, + 6.85156, + 9.52344 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 9, + 2.25, + 9.25, + 2.27344 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 9.5, + 6.75, + 9.60156, + 6.77344 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 2.5, + 9, + 2.75, + 9.02344 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 1.10156, + 7.75, + 1, + 7.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 7.60156, + 1, + 7.5, + 1.25 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.3, + 2.42992, + 4.00454 + ], + "to": [ + 8.7, + 3.32992, + 4.60454 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8.3, + 3.47992, + 4.50454 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 6.75, + 7.60156, + 6.97656 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 3.75, + 7, + 3.89844, + 7.22656 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 7, + 7.5, + 7.10156, + 7.72656 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 7, + 4.75, + 7.14844, + 4.97656 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 8.10156, + 4.89844, + 8, + 4.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 8.10156, + 5, + 8, + 5.14844 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.3, + 1.79812, + 4.39874 + ], + "to": [ + 8.7, + 2.54812, + 4.99874 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8.3, + 2.14812, + 4.89874 + ] + }, + "faces": { + "north": { + "uv": [ + 7.75, + 7.25, + 7.85156, + 7.4375 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 3.75, + 7.25, + 3.89844, + 7.4375 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 7.5, + 7.75, + 7.60156, + 7.9375 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 4, + 7.25, + 4.14844, + 7.4375 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 8.10156, + 5.39844, + 8, + 5.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 5.60156, + 8, + 5.5, + 8.14844 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.25, + 1.69812, + 4.24874 + ], + "to": [ + 8.75, + 1.94812, + 5.19874 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8.5, + 1.72312, + 4.72374 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 7.75, + 8.375, + 7.8125 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8, + 5.5, + 8.23438, + 5.5625 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 8, + 8.25, + 8.125, + 8.3125 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 5.75, + 8, + 5.98438, + 8.0625 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 1.625, + 7.48438, + 1.5, + 7.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 2.375, + 7.25, + 2.25, + 7.48438 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.3, + 1.19812, + 4.34874 + ], + "to": [ + 8.7, + 1.74812, + 5.19874 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8.5, + 1.52312, + 4.67374 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 7, + 8.10156, + 7.14063 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 7.25, + 1, + 7.46094, + 1.14063 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 7.25, + 8, + 7.35156, + 8.14063 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 1.25, + 7.25, + 1.46094, + 7.39063 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 7.85156, + 4.96094, + 7.75, + 4.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 5.10156, + 7.75, + 5, + 7.96094 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.4, + 1.29812, + 3.74874 + ], + "to": [ + 8.6, + 1.49812, + 4.39874 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 8.5, + 1.52312, + 4.67374 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 9.5, + 8.04688, + 9.54688 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 0, + 8.5, + 0.16406, + 8.54688 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 9.5, + 8, + 9.54688, + 8.04688 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 8.5, + 0, + 8.66406, + 0.04688 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 0.29688, + 8.66406, + 0.25, + 8.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 8.54688, + 0.25, + 8.5, + 0.41406 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.4, + 0.775, + 1.52877 + ], + "to": [ + 8.6, + 0.975, + 4.17877 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8.5, + 0.83495, + 3.85377 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 9.5, + 8.29688, + 9.54688 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 7, + 6, + 7.66406, + 6.04688 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 9.5, + 8.25, + 9.54688, + 8.29688 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 7, + 6.25, + 7.66406, + 6.29688 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 6.29688, + 7.66406, + 6.25, + 7 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 6.79688, + 7, + 6.75, + 7.66406 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.275, + -0.28603, + 4.63602 + ], + "to": [ + 8.725, + 1.46397, + 5.28602 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8.4751, + 1.53897, + 4.66102 + ] + }, + "faces": { + "north": { + "uv": [ + 6.25, + 1.5, + 6.35938, + 1.9375 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 5, + 5, + 5.16406, + 5.4375 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 6.25, + 2.75, + 6.35938, + 3.1875 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 0, + 5.25, + 0.16406, + 5.6875 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 0.35938, + 8.16406, + 0.25, + 8 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 8.10938, + 0.25, + 8, + 0.41406 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.3, + 2.93033, + 3.96967 + ], + "to": [ + 8.7, + 3.13033, + 4.46967 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 8.3, + 3.68033, + 4.46967 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 8, + 9.10156, + 8.04688 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 9, + 2.5, + 9.125, + 2.54688 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 8.25, + 9, + 8.35156, + 9.04688 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 2.75, + 9, + 2.875, + 9.04688 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 8.35156, + 0.375, + 8.25, + 0.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 8.35156, + 0.5, + 8.25, + 0.625 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.1, + 10.72142, + 2.67975 + ], + "to": [ + 8.4, + 10.97142, + 11.67975 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8.5, + 10.54642, + 7.42975 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 5, + 9.07813, + 5.0625 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 4, + 0, + 6.25, + 0.0625 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 5.25, + 9, + 5.32813, + 9.0625 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 4, + 0.25, + 6.25, + 0.3125 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 3.07813, + 3.25, + 3, + 1 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 3.32813, + 1, + 3.25, + 3.25 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.6, + 10.72142, + 2.67975 + ], + "to": [ + 8.9, + 10.97142, + 11.67975 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8.5, + 10.54642, + 7.42975 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 5.25, + 9.07813, + 5.3125 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 4, + 0.5, + 6.25, + 0.5625 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 5.5, + 9, + 5.57813, + 9.0625 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 4, + 0.75, + 6.25, + 0.8125 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 3.07813, + 5.5, + 3, + 3.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 3.32813, + 3.25, + 3.25, + 5.5 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.4, + 10.52142, + 2.67975 + ], + "to": [ + 8.6, + 10.97142, + 6.17975 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8.5, + 10.54642, + 7.42975 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 4.5, + 9.04688, + 4.60938 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 4.5, + 2.75, + 5.375, + 2.85938 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 4.75, + 9, + 4.79688, + 9.10938 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 4.5, + 3, + 5.375, + 3.10938 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 6.54688, + 5.625, + 6.5, + 4.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 6.54688, + 5.75, + 6.5, + 6.625 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.3, + 10.92142, + 2.67975 + ], + "to": [ + 8.7, + 11.07142, + 6.37975 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8.5, + 10.54642, + 7.42975 + ] + }, + "faces": { + "north": { + "uv": [ + 9.25, + 2.5, + 9.35156, + 2.53906 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 7, + 1.5, + 7.92188, + 1.53906 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 2.75, + 9.25, + 2.85156, + 9.28906 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 7, + 1.75, + 7.92188, + 1.78906 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 2.35156, + 5.67188, + 2.25, + 4.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 2.60156, + 4.75, + 2.5, + 5.67188 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.2, + 10.17142, + 3.92975 + ], + "to": [ + 8.8, + 10.72142, + 6.67975 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8.5, + 10.54642, + 7.42975 + ] + }, + "faces": { + "north": { + "uv": [ + 5.5, + 7.75, + 5.64844, + 7.89063 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 2, + 4.5, + 2.6875, + 4.64063 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 7.75, + 5.5, + 7.89844, + 5.64063 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 4.5, + 2, + 5.1875, + 2.14063 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 4.39844, + 3.6875, + 4.25, + 3 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 4.39844, + 3.75, + 4.25, + 4.4375 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.05, + 10.675, + 11.37975 + ], + "to": [ + 8.95, + 10.875, + 11.57975 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8.5, + 10.54642, + 7.42975 + ] + }, + "faces": { + "north": { + "uv": [ + 4.5, + 8.25, + 4.72656, + 8.29688 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8.5, + 9.5, + 8.54688, + 9.54688 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 4.75, + 8.25, + 4.97656, + 8.29688 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 9.5, + 8.5, + 9.54688, + 8.54688 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 8.47656, + 4.79688, + 8.25, + 4.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 5.22656, + 8.25, + 5, + 8.29688 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.6, + 10.57142, + 9.17975 + ], + "to": [ + 8.9, + 10.72142, + 11.67975 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8.5, + 10.54642, + 7.42975 + ] + }, + "faces": { + "north": { + "uv": [ + 4.5, + 9.5, + 4.57813, + 9.53906 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 7.5, + 2.75, + 8.125, + 2.78906 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 9.5, + 4.5, + 9.57813, + 4.53906 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 3, + 7.5, + 3.625, + 7.53906 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 4.32813, + 6.625, + 4.25, + 6 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 4.57813, + 6, + 4.5, + 6.625 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.1, + 10.57142, + 9.17975 + ], + "to": [ + 8.4, + 10.72142, + 11.67975 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8.5, + 10.54642, + 7.42975 + ] + }, + "faces": { + "north": { + "uv": [ + 4.75, + 9.5, + 4.82813, + 9.53906 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 7.5, + 3, + 8.125, + 3.03906 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 9.5, + 4.75, + 9.57813, + 4.78906 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 7.5, + 3.25, + 8.125, + 3.28906 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 4.82813, + 6.625, + 4.75, + 6 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 6.07813, + 5.5, + 6, + 6.125 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.05, + -2.95115, + 16.73523 + ], + "to": [ + 8.95, + -2.75115, + 16.93523 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8.4, + 10.37743, + 7.78523 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 5, + 8.47656, + 5.04688 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8.75, + 9.5, + 8.79688, + 9.54688 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 5.25, + 8.25, + 5.47656, + 8.29688 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 9.5, + 8.75, + 9.54688, + 8.79688 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 8.47656, + 5.29688, + 8.25, + 5.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 5.72656, + 8.25, + 5.5, + 8.29688 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.6, + -2.90211, + 8.10395 + ], + "to": [ + 8.9, + -2.65211, + 17.10395 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8.4, + 10.62289, + 7.45395 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 5.5, + 9.07813, + 5.5625 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 4, + 1, + 6.25, + 1.0625 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 5.75, + 9, + 5.82813, + 9.0625 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 4, + 1.25, + 6.25, + 1.3125 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 3.57813, + 3.25, + 3.5, + 1 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 3.57813, + 3.25, + 3.5, + 5.5 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.1, + -2.90211, + 8.10395 + ], + "to": [ + 8.4, + -2.65211, + 17.10395 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8.4, + 10.62289, + 7.45395 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 5.75, + 9.07813, + 5.8125 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 4, + 1.5, + 6.25, + 1.5625 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 6, + 9, + 6.07813, + 9.0625 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 4, + 1.75, + 6.25, + 1.8125 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 3.82813, + 2.25, + 3.75, + 0 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 3.82813, + 2.25, + 3.75, + 4.5 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.4, + -2.90211, + 8.10395 + ], + "to": [ + 8.6, + -2.45211, + 11.60395 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8.4, + 10.62289, + 7.45395 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 4.75, + 9.04688, + 4.85938 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 4.5, + 3.25, + 5.375, + 3.35938 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 5, + 9, + 5.04688, + 9.10938 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 4.5, + 3.5, + 5.375, + 3.60938 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 6.79688, + 0.875, + 6.75, + 0 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 6.79688, + 1, + 6.75, + 1.875 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.3, + -3.00211, + 8.10395 + ], + "to": [ + 8.7, + -2.85211, + 11.80395 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8.4, + 10.62289, + 7.45395 + ] + }, + "faces": { + "north": { + "uv": [ + 9.25, + 2.75, + 9.35156, + 2.78906 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 7, + 2, + 7.92188, + 2.03906 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 3, + 9.25, + 3.10156, + 9.28906 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 7, + 2.25, + 7.92188, + 2.28906 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 3.85156, + 5.67188, + 3.75, + 4.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 4.10156, + 4.75, + 4, + 5.67188 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.2, + -2.65211, + 9.35395 + ], + "to": [ + 8.8, + -2.10211, + 12.10395 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8.4, + 10.62289, + 7.45395 + ] + }, + "faces": { + "north": { + "uv": [ + 7.75, + 5.75, + 7.89844, + 5.89063 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 4.5, + 2.25, + 5.1875, + 2.39063 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 7.75, + 6, + 7.89844, + 6.14063 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 4.5, + 2.5, + 5.1875, + 2.64063 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 0.14844, + 5.1875, + 0, + 4.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 0.39844, + 4.5, + 0.25, + 5.1875 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.1, + -2.65211, + 14.60395 + ], + "to": [ + 8.4, + -2.50211, + 17.10395 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8.4, + 10.62289, + 7.45395 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 9.5, + 5.07813, + 9.53906 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 7.5, + 3.5, + 8.125, + 3.53906 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 9.5, + 5, + 9.57813, + 5.03906 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 3.75, + 7.5, + 4.375, + 7.53906 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 5.82813, + 6.625, + 5.75, + 6 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 6.32813, + 0, + 6.25, + 0.625 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.6, + -2.65211, + 14.60395 + ], + "to": [ + 8.9, + -2.50211, + 17.10395 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8.4, + 10.62289, + 7.45395 + ] + }, + "faces": { + "north": { + "uv": [ + 5.25, + 9.5, + 5.32813, + 9.53906 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 7.5, + 4.25, + 8.125, + 4.28906 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 9.5, + 5.25, + 9.57813, + 5.28906 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 4.5, + 7.5, + 5.125, + 7.53906 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 6.32813, + 1.375, + 6.25, + 0.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 3.82813, + 6.25, + 3.75, + 6.875 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + 13.55747, + 10.48399 + ], + "to": [ + 8.55, + 13.70747, + 11.13399 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 8.5, + 12.07358, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 9.75, + 4.75, + 9.77344, + 4.78906 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8.5, + 6.75, + 8.66406, + 6.78906 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 5, + 9.75, + 5.02344, + 9.78906 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 7.25, + 8.5, + 7.41406, + 8.53906 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 9.27344, + 3.16406, + 9.25, + 3 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 3.27344, + 9.25, + 3.25, + 9.41406 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + 13.55747, + 10.48399 + ], + "to": [ + 8.55, + 13.70747, + 11.13399 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8.5, + 12.07358, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 9.75, + 5, + 9.77344, + 5.03906 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8.5, + 7.25, + 8.66406, + 7.28906 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 5.25, + 9.75, + 5.27344, + 9.78906 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 7.5, + 8.5, + 7.66406, + 8.53906 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 9.27344, + 3.41406, + 9.25, + 3.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 3.52344, + 9.25, + 3.5, + 9.41406 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + 13.55747, + 10.48399 + ], + "to": [ + 8.55, + 13.70747, + 11.13399 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8.5, + 12.07358, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 9.75, + 5.25, + 9.77344, + 5.28906 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8.5, + 7.5, + 8.66406, + 7.53906 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 5.5, + 9.75, + 5.52344, + 9.78906 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 7.75, + 8.5, + 7.91406, + 8.53906 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 9.27344, + 3.66406, + 9.25, + 3.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 3.77344, + 9.25, + 3.75, + 9.41406 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + 12.65747, + 10.78399 + ], + "to": [ + 8.55, + 13.60747, + 10.93399 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8.5, + 12.07358, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 2.75, + 9.02344, + 2.98438 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8.25, + 6.25, + 8.28906, + 6.48438 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 3, + 9, + 3.02344, + 9.23438 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 6.5, + 8.25, + 6.53906, + 8.48438 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 9.77344, + 5.53906, + 9.75, + 5.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 5.77344, + 9.75, + 5.75, + 9.78906 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + 11.74858, + 12.29287 + ], + "to": [ + 8.55, + 12.39858, + 12.44287 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8.5, + 12.07358, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 9.25, + 3.75, + 9.27344, + 3.91406 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8.5, + 7.75, + 8.53906, + 7.91406 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 4, + 9.25, + 4.02344, + 9.41406 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 8, + 8.5, + 8.03906, + 8.66406 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 9.77344, + 5.78906, + 9.75, + 5.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 6.02344, + 9.75, + 6, + 9.78906 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + 11.74858, + 12.29287 + ], + "to": [ + 8.55, + 12.39858, + 12.44287 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8.5, + 12.07358, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 9.25, + 4, + 9.27344, + 4.16406 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8.25, + 8.5, + 8.28906, + 8.66406 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 4.25, + 9.25, + 4.27344, + 9.41406 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 8.5, + 8.5, + 8.53906, + 8.66406 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 9.77344, + 6.03906, + 9.75, + 6 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 6.27344, + 9.75, + 6.25, + 9.78906 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + 11.74858, + 12.29287 + ], + "to": [ + 8.55, + 12.39858, + 12.44287 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8.5, + 12.07358, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 9.25, + 4.25, + 9.27344, + 4.41406 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 0, + 8.75, + 0.03906, + 8.91406 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 4.5, + 9.25, + 4.52344, + 9.41406 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 8.75, + 0, + 8.78906, + 0.16406 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 9.77344, + 6.28906, + 9.75, + 6.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 6.52344, + 9.75, + 6.5, + 9.78906 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + 11.74858, + 12.29287 + ], + "to": [ + 8.55, + 12.39858, + 12.44287 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 8.5, + 12.07358, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 9.25, + 4.5, + 9.27344, + 4.66406 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 0.25, + 8.75, + 0.28906, + 8.91406 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 4.75, + 9.25, + 4.77344, + 9.41406 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 8.75, + 0.25, + 8.78906, + 0.41406 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 9.77344, + 6.53906, + 9.75, + 6.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 6.77344, + 9.75, + 6.75, + 9.78906 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + 10.4397, + 10.48399 + ], + "to": [ + 8.55, + 10.5897, + 11.13399 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8.5, + 12.07358, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 9.75, + 6.75, + 9.77344, + 6.78906 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8.75, + 0.5, + 8.91406, + 0.53906 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 7, + 9.75, + 7.02344, + 9.78906 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 8.75, + 0.75, + 8.91406, + 0.78906 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 9.27344, + 4.91406, + 9.25, + 4.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 5.02344, + 9.25, + 5, + 9.41406 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + 10.4397, + 10.48399 + ], + "to": [ + 8.55, + 10.5897, + 11.13399 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8.5, + 12.07358, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 9.75, + 7, + 9.77344, + 7.03906 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8.75, + 1, + 8.91406, + 1.03906 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 7.25, + 9.75, + 7.27344, + 9.78906 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 8.75, + 1.25, + 8.91406, + 1.28906 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 9.27344, + 5.16406, + 9.25, + 5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 5.27344, + 9.25, + 5.25, + 9.41406 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + 10.4397, + 10.48399 + ], + "to": [ + 8.55, + 10.5897, + 11.13399 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8.5, + 12.07358, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 9.75, + 7.25, + 9.77344, + 7.28906 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8.75, + 1.5, + 8.91406, + 1.53906 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 7.5, + 9.75, + 7.52344, + 9.78906 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 8.75, + 1.75, + 8.91406, + 1.78906 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 9.27344, + 5.41406, + 9.25, + 5.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 5.52344, + 9.25, + 5.5, + 9.41406 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + 10.5397, + 10.98399 + ], + "to": [ + 8.55, + 11.7897, + 11.13399 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8.5, + 12.07358, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 0.5, + 8.52344, + 0.8125 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 3, + 8.25, + 3.03906, + 8.5625 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 8.5, + 1, + 8.52344, + 1.3125 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 3.25, + 8.25, + 3.28906, + 8.5625 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 9.77344, + 7.53906, + 9.75, + 7.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 7.77344, + 9.75, + 7.75, + 9.78906 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + 10.4397, + 10.48399 + ], + "to": [ + 8.55, + 10.5897, + 11.13399 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 8.5, + 12.07358, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 9.75, + 7.75, + 9.77344, + 7.78906 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8.75, + 2, + 8.91406, + 2.03906 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 8, + 9.75, + 8.02344, + 9.78906 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 8.75, + 2.25, + 8.91406, + 2.28906 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 9.27344, + 5.66406, + 9.25, + 5.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 5.77344, + 9.25, + 5.75, + 9.41406 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + 11.74858, + 9.1751 + ], + "to": [ + 8.55, + 12.39858, + 9.3251 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.5, + 12.07358, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 9.25, + 5.75, + 9.27344, + 5.91406 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8.75, + 2.5, + 8.78906, + 2.66406 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 6, + 9.25, + 6.02344, + 9.41406 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 2.75, + 8.75, + 2.78906, + 8.91406 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 9.77344, + 8.03906, + 9.75, + 8 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 8.27344, + 9.75, + 8.25, + 9.78906 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + 11.74858, + 9.1751 + ], + "to": [ + 8.55, + 12.39858, + 9.3251 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8.5, + 12.07358, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 9.25, + 6, + 9.27344, + 6.16406 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8.75, + 2.75, + 8.78906, + 2.91406 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 6.25, + 9.25, + 6.27344, + 9.41406 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 3, + 8.75, + 3.03906, + 8.91406 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 9.77344, + 8.28906, + 9.75, + 8.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 8.52344, + 9.75, + 8.5, + 9.78906 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + 11.94858, + 9.2751 + ], + "to": [ + 8.55, + 12.19858, + 10.2251 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8.5, + 12.07358, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 9.75, + 1.5, + 9.77344, + 1.5625 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8, + 5.75, + 8.23438, + 5.8125 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 1.75, + 9.75, + 1.77344, + 9.8125 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 6, + 8, + 6.23438, + 8.0625 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 9.02344, + 3.23438, + 9, + 3 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 3.27344, + 9, + 3.25, + 9.23438 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + 13.55747, + 10.48399 + ], + "to": [ + 8.55, + 13.70747, + 11.13399 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 8.5, + 12.07358, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 9.75, + 8.5, + 9.77344, + 8.53906 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8.75, + 3, + 8.91406, + 3.03906 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 8.75, + 9.75, + 8.77344, + 9.78906 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 3.25, + 8.75, + 3.41406, + 8.78906 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 9.27344, + 6.41406, + 9.25, + 6.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 6.52344, + 9.25, + 6.5, + 9.41406 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + 13.55747, + 10.48399 + ], + "to": [ + 8.55, + 13.70747, + 11.13399 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8.5, + 12.07358, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 9.75, + 8.75, + 9.77344, + 8.78906 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8.75, + 3.25, + 8.91406, + 3.28906 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 9, + 9.75, + 9.02344, + 9.78906 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 8.75, + 3.5, + 8.91406, + 3.53906 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 9.27344, + 6.66406, + 9.25, + 6.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 6.77344, + 9.25, + 6.75, + 9.41406 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + 12.65747, + 10.68399 + ], + "to": [ + 8.55, + 13.60747, + 10.93399 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8.5, + 12.07358, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 3.25, + 9.02344, + 3.48438 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8, + 6, + 8.0625, + 6.23438 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 3.5, + 9, + 3.52344, + 9.23438 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 6.25, + 8, + 6.3125, + 8.23438 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 9.77344, + 1.8125, + 9.75, + 1.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 2.02344, + 9.75, + 2, + 9.8125 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + 11.74858, + 9.1751 + ], + "to": [ + 8.55, + 12.39858, + 9.3251 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8.5, + 12.07358, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 9.25, + 6.75, + 9.27344, + 6.91406 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8.75, + 3.75, + 8.78906, + 3.91406 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 7, + 9.25, + 7.02344, + 9.41406 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 8.75, + 4, + 8.78906, + 4.16406 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 9.77344, + 9.03906, + 9.75, + 9 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 9.27344, + 9.75, + 9.25, + 9.78906 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + 11.84858, + 9.2751 + ], + "to": [ + 8.55, + 12.09858, + 10.3251 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8.5, + 12.07358, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 9.75, + 2, + 9.77344, + 2.0625 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8, + 1.75, + 8.26563, + 1.8125 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 2.25, + 9.75, + 2.27344, + 9.8125 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 8, + 2, + 8.26563, + 2.0625 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 0.27344, + 9.26563, + 0.25, + 9 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 9.02344, + 0.25, + 9, + 0.51563 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + 11.55747, + 10.48399 + ], + "to": [ + 8.55, + 12.70747, + 11.13399 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8.5, + 12.07358, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 4.5, + 8.52344, + 4.78906 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 4, + 6.25, + 4.16406, + 6.53906 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 4.75, + 8.5, + 4.77344, + 8.78906 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 6.25, + 4.75, + 6.41406, + 5.03906 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 9.27344, + 7.16406, + 9.25, + 7 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 7.27344, + 9.25, + 7.25, + 9.41406 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + 11.74858, + 10.19287 + ], + "to": [ + 8.55, + 12.29858, + 12.34287 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8.5, + 12.07358, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 9.5, + 4.02344, + 9.64063 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 4.5, + 4, + 5.03906, + 4.14063 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 9.5, + 4, + 9.52344, + 4.14063 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 4.5, + 4.25, + 5.03906, + 4.39063 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 8.27344, + 1.28906, + 8.25, + 0.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 1.02344, + 8.25, + 1, + 8.78906 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + 11.84858, + 10.19287 + ], + "to": [ + 8.55, + 12.19858, + 12.34287 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 8.5, + 12.07358, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 9.5, + 9.02344, + 9.58594 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 6, + 4.25, + 6.53906, + 4.33594 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 9.5, + 9, + 9.52344, + 9.08594 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 6.25, + 3.5, + 6.78906, + 3.58594 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 1.27344, + 8.78906, + 1.25, + 8.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 1.52344, + 8.25, + 1.5, + 8.78906 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + 11.4397, + 10.48399 + ], + "to": [ + 8.55, + 12.5897, + 11.13399 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8.5, + 12.07358, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 8.5, + 5.02344, + 8.78906 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 5, + 6.25, + 5.16406, + 6.53906 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 8.5, + 5, + 8.52344, + 5.28906 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 5.25, + 6.25, + 5.41406, + 6.53906 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 9.27344, + 7.41406, + 9.25, + 7.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 7.52344, + 9.25, + 7.5, + 9.41406 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + 11.45747, + 10.48399 + ], + "to": [ + 8.55, + 12.70747, + 11.13399 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 8.5, + 12.07358, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 1.75, + 8.52344, + 2.0625 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 3.25, + 6, + 3.41406, + 6.3125 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 8.5, + 2.25, + 8.52344, + 2.5625 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 3.5, + 6, + 3.66406, + 6.3125 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 9.27344, + 7.66406, + 9.25, + 7.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 7.77344, + 9.25, + 7.75, + 9.41406 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + -5.45142, + 12.29287 + ], + "to": [ + 8.55, + -4.80142, + 12.44287 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8.5, + -5.12642, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 9.25, + 7.75, + 9.27344, + 7.91406 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 4.25, + 8.75, + 4.28906, + 8.91406 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 8, + 9.25, + 8.02344, + 9.41406 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 8.75, + 4.25, + 8.78906, + 4.41406 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 9.77344, + 9.28906, + 9.75, + 9.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 9.52344, + 9.75, + 9.5, + 9.78906 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + -3.64253, + 10.48399 + ], + "to": [ + 8.55, + -3.49253, + 11.13399 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8.5, + -5.12642, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 9.75, + 9.5, + 9.77344, + 9.53906 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 4.5, + 8.75, + 4.66406, + 8.78906 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 9.75, + 9.75, + 9.77344, + 9.78906 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 8.75, + 4.5, + 8.91406, + 4.53906 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 9.27344, + 8.16406, + 9.25, + 8 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 8.27344, + 9.25, + 8.25, + 9.41406 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + -5.45142, + 12.29287 + ], + "to": [ + 8.55, + -4.80142, + 12.44287 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 8.5, + -5.12642, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 9.25, + 8.52344, + 9.41406 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8.75, + 4.75, + 8.78906, + 4.91406 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 9.25, + 8.5, + 9.27344, + 8.66406 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 8.75, + 5, + 8.78906, + 5.16406 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 0.02344, + 10.03906, + 0, + 10 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 10.02344, + 0, + 10, + 0.03906 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + -5.25142, + 11.39287 + ], + "to": [ + 8.55, + -5.10142, + 12.34287 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 8.5, + -5.12642, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 0.25, + 10, + 0.27344, + 10.03906 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8.25, + 6.5, + 8.48438, + 6.53906 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 10, + 0.25, + 10.02344, + 0.28906 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 6.75, + 8.25, + 6.98438, + 8.28906 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 9.02344, + 3.73438, + 9, + 3.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 3.77344, + 9, + 3.75, + 9.23438 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + -5.45142, + 12.29287 + ], + "to": [ + 8.55, + -4.80142, + 12.44287 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8.5, + -5.12642, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 8.75, + 9.25, + 8.77344, + 9.41406 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8.75, + 5.25, + 8.78906, + 5.41406 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 9.25, + 8.75, + 9.27344, + 8.91406 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 8.75, + 5.5, + 8.78906, + 5.66406 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 0.52344, + 10.03906, + 0.5, + 10 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 10.02344, + 0.5, + 10, + 0.53906 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + -5.45142, + 12.29287 + ], + "to": [ + 8.55, + -4.80142, + 12.44287 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8.5, + -5.12642, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 9.25, + 9.02344, + 9.41406 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8.75, + 5.75, + 8.78906, + 5.91406 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 9.25, + 9, + 9.27344, + 9.16406 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 6, + 8.75, + 6.03906, + 8.91406 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 0.77344, + 10.03906, + 0.75, + 10 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 10.02344, + 0.75, + 10, + 0.78906 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + -6.7603, + 10.48399 + ], + "to": [ + 8.55, + -6.6103, + 11.13399 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 8.5, + -5.12642, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 1, + 10, + 1.02344, + 10.03906 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8.75, + 6, + 8.91406, + 6.03906 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 10, + 1, + 10.02344, + 1.03906 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 6.25, + 8.75, + 6.41406, + 8.78906 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 9.27344, + 9.41406, + 9.25, + 9.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 0.02344, + 9.5, + 0, + 9.66406 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + -6.7603, + 10.48399 + ], + "to": [ + 8.55, + -6.6103, + 11.13399 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8.5, + -5.12642, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 1.25, + 10, + 1.27344, + 10.03906 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8.75, + 6.25, + 8.91406, + 6.28906 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 10, + 1.25, + 10.02344, + 1.28906 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 6.5, + 8.75, + 6.66406, + 8.78906 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 9.52344, + 0.16406, + 9.5, + 0 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 0.27344, + 9.5, + 0.25, + 9.66406 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + -6.7603, + 10.48399 + ], + "to": [ + 8.55, + -6.6103, + 11.13399 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8.5, + -5.12642, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 1.5, + 10, + 1.52344, + 10.03906 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8.75, + 6.5, + 8.91406, + 6.53906 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 10, + 1.5, + 10.02344, + 1.53906 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 8.75, + 6.75, + 8.91406, + 6.78906 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 9.52344, + 0.41406, + 9.5, + 0.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 0.52344, + 9.5, + 0.5, + 9.66406 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + -6.7603, + 10.48399 + ], + "to": [ + 8.55, + -6.6103, + 11.13399 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8.5, + -5.12642, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 1.75, + 10, + 1.77344, + 10.03906 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8.75, + 7, + 8.91406, + 7.03906 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 10, + 1.75, + 10.02344, + 1.78906 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 7.25, + 8.75, + 7.41406, + 8.78906 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 9.52344, + 0.66406, + 9.5, + 0.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 0.77344, + 9.5, + 0.75, + 9.66406 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + -5.45142, + 9.1751 + ], + "to": [ + 8.55, + -4.80142, + 9.3251 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 8.5, + -5.12642, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 0.75, + 9.52344, + 0.91406 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8.75, + 7.25, + 8.78906, + 7.41406 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 1, + 9.5, + 1.02344, + 9.66406 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 7.5, + 8.75, + 7.53906, + 8.91406 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 2.02344, + 10.03906, + 2, + 10 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 10.02344, + 2, + 10, + 2.03906 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + -5.45142, + 9.2751 + ], + "to": [ + 8.55, + -5.30142, + 10.5251 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 8.5, + -5.12642, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 2.25, + 10, + 2.27344, + 10.03906 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8.25, + 1.5, + 8.5625, + 1.53906 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 10, + 2.25, + 10.02344, + 2.28906 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 8.25, + 3.25, + 8.5625, + 3.28906 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 8.52344, + 3.0625, + 8.5, + 2.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 3.52344, + 8.5, + 3.5, + 8.8125 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + -5.45142, + 9.1751 + ], + "to": [ + 8.55, + -4.80142, + 9.3251 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8.5, + -5.12642, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 1, + 9.52344, + 1.16406 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8.75, + 7.5, + 8.78906, + 7.66406 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 1.25, + 9.5, + 1.27344, + 9.66406 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 7.75, + 8.75, + 7.78906, + 8.91406 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 2.52344, + 10.03906, + 2.5, + 10 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 10.02344, + 2.5, + 10, + 2.53906 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + -5.45142, + 9.1751 + ], + "to": [ + 8.55, + -4.80142, + 9.3251 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8.5, + -5.12642, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 1.25, + 9.52344, + 1.41406 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8.75, + 7.75, + 8.78906, + 7.91406 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 1.5, + 9.5, + 1.52344, + 9.66406 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 8, + 8.75, + 8.03906, + 8.91406 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 2.77344, + 10.03906, + 2.75, + 10 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 10.02344, + 2.75, + 10, + 2.78906 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + -3.64253, + 10.48399 + ], + "to": [ + 8.55, + -3.49253, + 11.13399 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 8.5, + -5.12642, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 3, + 10, + 3.02344, + 10.03906 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8.75, + 8, + 8.91406, + 8.03906 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 10, + 3, + 10.02344, + 3.03906 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 8.25, + 8.75, + 8.41406, + 8.78906 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 9.52344, + 1.66406, + 9.5, + 1.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 1.77344, + 9.5, + 1.75, + 9.66406 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + -4.54253, + 10.68399 + ], + "to": [ + 8.55, + -3.59253, + 10.93399 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 8.5, + -5.12642, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 3.75, + 9.02344, + 3.98438 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8, + 6.25, + 8.0625, + 6.48438 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 4, + 9, + 4.02344, + 9.23438 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 6.5, + 8, + 6.5625, + 8.23438 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 9.77344, + 2.3125, + 9.75, + 2.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 2.52344, + 9.75, + 2.5, + 9.8125 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + -3.64253, + 10.48399 + ], + "to": [ + 8.55, + -3.49253, + 11.13399 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8.5, + -5.12642, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 3.25, + 10, + 3.27344, + 10.03906 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8.75, + 8.25, + 8.91406, + 8.28906 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 10, + 3.25, + 10.02344, + 3.28906 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 8.5, + 8.75, + 8.66406, + 8.78906 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 9.52344, + 1.91406, + 9.5, + 1.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 9.52344, + 2, + 9.5, + 2.16406 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + -3.64253, + 10.48399 + ], + "to": [ + 8.55, + -3.49253, + 11.13399 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8.5, + -5.12642, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 3.5, + 10, + 3.52344, + 10.03906 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8.75, + 8.5, + 8.91406, + 8.53906 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 10, + 3.5, + 10.02344, + 3.53906 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 8.75, + 8.75, + 8.91406, + 8.78906 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 2.27344, + 9.66406, + 2.25, + 9.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 9.52344, + 2.25, + 9.5, + 2.41406 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + -4.54253, + 10.68399 + ], + "to": [ + 8.55, + -3.59253, + 10.93399 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8.5, + -5.12642, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 4, + 9.02344, + 4.23438 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 8, + 6.5, + 8.0625, + 6.73438 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 4.25, + 9, + 4.27344, + 9.23438 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 6.75, + 8, + 6.8125, + 8.23438 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 9.77344, + 2.5625, + 9.75, + 2.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 2.77344, + 9.75, + 2.75, + 9.8125 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + -5.45142, + 9.1751 + ], + "to": [ + 8.55, + -4.80142, + 9.3251 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8.5, + -5.12642, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 2.5, + 9.5, + 2.52344, + 9.66406 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 0, + 9, + 0.03906, + 9.16406 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 9.5, + 2.5, + 9.52344, + 2.66406 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 9, + 0, + 9.03906, + 0.16406 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 3.77344, + 10.03906, + 3.75, + 10 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 10.02344, + 3.75, + 10, + 3.78906 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + -5.35142, + 9.2751 + ], + "to": [ + 8.55, + -5.10142, + 10.3251 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8.5, + -5.12642, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 9.75, + 2.75, + 9.77344, + 2.8125 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 2.25, + 8, + 2.51563, + 8.0625 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 3, + 9.75, + 3.02344, + 9.8125 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 8, + 2.25, + 8.26563, + 2.3125 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 0.52344, + 9.26563, + 0.5, + 9 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 0.77344, + 9, + 0.75, + 9.26563 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + -5.64253, + 10.48399 + ], + "to": [ + 8.55, + -4.49253, + 11.13399 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8.5, + -5.12642, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 5.25, + 8.5, + 5.27344, + 8.78906 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 6.25, + 5.25, + 6.41406, + 5.53906 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 5.5, + 8.5, + 5.52344, + 8.78906 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 5.5, + 6.25, + 5.66406, + 6.53906 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 2.77344, + 9.66406, + 2.75, + 9.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 9.52344, + 2.75, + 9.5, + 2.91406 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + -5.45142, + 10.19287 + ], + "to": [ + 8.55, + -4.90142, + 12.34287 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8.5, + -5.12642, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 4.25, + 9.5, + 4.27344, + 9.64063 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 4.75, + 4.75, + 5.28906, + 4.89063 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 9.5, + 4.25, + 9.52344, + 4.39063 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 1, + 5, + 1.53906, + 5.14063 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 1.77344, + 8.78906, + 1.75, + 8.25 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 2.27344, + 8.25, + 2.25, + 8.78906 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + -6.6603, + 10.58399 + ], + "to": [ + 8.55, + -4.5103, + 10.93399 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8.5, + -5.12642, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 2.5, + 8.25, + 2.52344, + 8.78906 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 6.25, + 6.25, + 6.33594, + 6.78906 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 8.25, + 2.5, + 8.27344, + 3.03906 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 0, + 6.5, + 0.08594, + 7.03906 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 9.27344, + 9.58594, + 9.25, + 9.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 9.52344, + 9.25, + 9.5, + 9.33594 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + -5.7603, + 10.48399 + ], + "to": [ + 8.55, + -4.6103, + 11.13399 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8.5, + -5.12642, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 5.5, + 8.52344, + 5.78906 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 6.25, + 5.75, + 6.41406, + 6.03906 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 5.75, + 8.5, + 5.77344, + 8.78906 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 6, + 6.25, + 6.16406, + 6.53906 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 3.02344, + 9.66406, + 3, + 9.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 9.52344, + 3, + 9.5, + 3.16406 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.45, + -5.45142, + 10.19287 + ], + "to": [ + 8.55, + -4.80142, + 11.44287 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8.5, + -5.12642, + 10.80899 + ] + }, + "faces": { + "north": { + "uv": [ + 3.25, + 9.5, + 3.27344, + 9.66406 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 6, + 3.25, + 6.3125, + 3.41406 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 9.5, + 3.25, + 9.52344, + 3.41406 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 6, + 4, + 6.3125, + 4.16406 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 3.77344, + 8.8125, + 3.75, + 8.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 4.02344, + 8.5, + 4, + 8.8125 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.449, + -5.25265, + 9.16975 + ], + "to": [ + 8.449, + 12.54735, + 11.41975 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.525, + -1.80265, + 10.49475 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 0, + 4.45313 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 0, + 0, + 0.5625, + 4.45313 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 0, + 0, + 0, + 4.45313 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 0.75, + 0, + 1.3125, + 4.45313 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 0, + 0.5625, + 0, + 0 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 0, + 0, + 0, + 0.5625 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.551, + -5.65265, + 9.16975 + ], + "to": [ + 8.551, + 12.14735, + 11.41975 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.525, + -1.80265, + 10.49475 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 0, + 4.45313 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 1.5, + 0, + 2.0625, + 4.45313 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 0, + 0, + 0, + 4.45313 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 2.25, + 0, + 2.8125, + 4.45313 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 0, + 0.5625, + 0, + 0 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 0, + 0, + 0, + 0.5625 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.575, + 3.55, + -3.7 + ], + "to": [ + 8.675, + 3.65, + 12.4 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 8.525, + 3.5, + 8.7375 + ] + }, + "faces": { + "north": { + "uv": [ + 4.75, + 10, + 4.77344, + 10.02344 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 3.75, + 4.5, + 7.77344, + 4.52344 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 10, + 4.75, + 10.02344, + 4.77344 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 4.5, + 3.75, + 8.52344, + 3.77344 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 2.77344, + 8.52344, + 2.75, + 4.5 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 2.02344, + 4.75, + 2, + 8.77344 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.525, + 3.39142, + -4.2 + ], + "to": [ + 8.525, + 3.89142, + -3.5 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.525, + 3.64142, + -1.85 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 0, + 0.125 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 7.75, + 4, + 7.92188, + 4.125 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 0, + 0, + 0, + 0.125 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 4.25, + 7.75, + 4.42188, + 7.875 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 0, + 0.17188, + 0, + 0 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 0, + 0, + 0, + 0.17188 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.275, + 3.64142, + -4.2 + ], + "to": [ + 8.775, + 3.64142, + -3.5 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.525, + 3.64142, + -1.85 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 0.125, + 0 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 0, + 0, + 0.17188, + 0 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 0, + 0, + 0.125, + 0 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 0, + 0, + 0.17188, + 0 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 4.625, + 7.92188, + 4.5, + 7.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 4.875, + 7.75, + 4.75, + 7.92188 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.175, + 3.64142, + 10.7 + ], + "to": [ + 8.475, + 3.64142, + 12.1 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 8.525, + 3.64142, + -1.85 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 0.07813, + 0 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 0, + 0, + 0.35156, + 0 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 0, + 0, + 0.07813, + 0 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 0, + 0, + 0.35156, + 0 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 7.32813, + 5.10156, + 7.25, + 4.75 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 5.32813, + 7.25, + 5.25, + 7.60156 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.525, + 3.29142, + 10.7 + ], + "to": [ + 8.525, + 3.59142, + 12.1 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 8.525, + 3.64142, + -1.85 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 0, + 0.07813 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 7.25, + 4, + 7.60156, + 4.07813 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 0, + 0, + 0, + 0.07813 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 7.25, + 5.25, + 7.60156, + 5.32813 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 0, + 0.35156, + 0, + 0 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 0, + 0, + 0, + 0.35156 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.525, + 3.69142, + 10.7 + ], + "to": [ + 8.525, + 3.99142, + 12.1 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.525, + 3.64142, + -1.85 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 0, + 0.07813 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 7, + 7.25, + 7.35156, + 7.32813 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 0, + 0, + 0, + 0.07813 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 7.25, + 7, + 7.60156, + 7.07813 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 0, + 0.35156, + 0, + 0 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 0, + 0, + 0, + 0.35156 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 8.525, + -4.90858, + 12.35 + ], + "to": [ + 8.525, + 12.19142, + 12.45 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.525, + 3.44142, + 13.3 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 0, + 4.27344 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 0.5, + 4.5, + 0.52344, + 8.77344 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 0, + 0, + 0, + 4.27344 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 0.75, + 4.5, + 0.77344, + 8.77344 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 0, + 0.02344, + 0, + 0 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 0, + 0, + 0, + 0.02344 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 9, + 3.55, + 5.01 + ], + "to": [ + 9.05, + 4.65, + 5.01 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.5, + 3.4, + 4.5 + ] + }, + "faces": { + "north": { + "uv": [ + 2, + 9.25, + 2.01563, + 9.52344 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 0, + 0, + 0, + 0.27344 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 9.25, + 2, + 9.26563, + 2.27344 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 0, + 0, + 0, + 0.27344 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 0.01563, + 0, + 0, + 0 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 0.01563, + 0, + 0, + 0 + ], + "texture": "#6" + } + } + }, + { + "from": [ + 9.25, + 4.75, + 4.91 + ], + "to": [ + 9.3, + 5.45, + 4.91 + ], + "rotation": { + "angle": 22.5, + "axis": "z", + "origin": [ + 9.05, + 4.1, + 5.01 + ] + }, + "faces": { + "north": { + "uv": [ + 6.25, + 9.5, + 6.26563, + 9.67188 + ], + "texture": "#6" + }, + "east": { + "uv": [ + 0, + 0, + 0, + 0.17188 + ], + "texture": "#6" + }, + "south": { + "uv": [ + 9.5, + 6.25, + 9.51563, + 6.42188 + ], + "texture": "#6" + }, + "west": { + "uv": [ + 0, + 0, + 0, + 0.17188 + ], + "texture": "#6" + }, + "up": { + "uv": [ + 0.01563, + 0, + 0, + 0 + ], + "texture": "#6" + }, + "down": { + "uv": [ + 0.01563, + 0, + 0, + 0 + ], + "texture": "#6" + } + } + } + ], + "gui_light": "front", + "display": { + "thirdperson_righthand": { + "translation": [ + -2.25, + 6.25, + 2.75 + ] + }, + "thirdperson_lefthand": { + "translation": [ + -0.75, + 6, + 2.75 + ], + "scale": [ + 0, + 0, + 0 + ] + }, + "firstperson_righthand": { + "rotation": [ + 6, + 0, + -69 + ], + "translation": [ + -6, + 5, + 6.25 + ] + }, + "firstperson_lefthand": { + "rotation": [ + 6, + 0, + 69 + ], + "translation": [ + -12, + 5.3, + 7 + ] + }, + "ground": { + "translation": [ + 0, + 11.5, + 0 + ] + }, + "gui": { + "rotation": [ + 90, + -45, + -90 + ], + "translation": [ + 3.25, + -1.75, + 0 + ], + "scale": [ + 0.8, + 0.8, + 0.8 + ] + }, + "head": { + "rotation": [ + 90, + 0, + 90 + ], + "translation": [ + -8.75, + 12.5, + 0 + ], + "scale": [ + 2, + 2, + 2 + ] + }, + "fixed": { + "rotation": [ + 90, + 45, + -90 + ], + "translation": [ + 1.5, + 4.5, + 0 + ] + } + }, + "groups": [ + { + "name": "group", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "children": [ + { + "name": "group", + "origin": [ + 8.5625, + 3.5, + 7.23039 + ], + "color": 0, + "children": [ + { + "name": "zhunxing", + "origin": [ + 8, + 8, + 8 + ], + "color": 3, + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6 + ] + }, + { + "name": "jianhe", + "origin": [ + 8.5625, + 3.5, + 7.23039 + ], + "color": 0, + "children": [ + 7, + 8, + 9, + 10, + 11 + ] + }, + { + "name": "ba", + "origin": [ + 8.5625, + 3.5, + 7.23039 + ], + "color": 0, + "children": [ + { + "name": "ba1", + "origin": [ + 8.5, + 8.30533, + 3.58045 + ], + "color": 0, + "children": [ + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20 + ] + }, + { + "name": "ba2", + "origin": [ + 8.5625, + 3.5, + 7.23039 + ], + "color": 0, + "children": [ + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28 + ] + }, + { + "name": "jianzhen", + "origin": [ + 8.5, + 3.4, + 4.5 + ], + "color": 3, + "children": [ + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36 + ] + }, + { + "name": "bashang", + "origin": [ + 8.3, + 3.68033, + 4.46967 + ], + "color": 0, + "children": [ + 37, + 38 + ] + }, + { + "name": "jianzhen", + "origin": [ + 8.3, + 3.68033, + 4.46967 + ], + "color": 7, + "children": [ + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56 + ] + }, + { + "name": "baxia", + "origin": [ + 8.3, + 3.68033, + 4.46967 + ], + "color": 0, + "children": [ + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68 + ] + } + ] + }, + { + "name": "bi1", + "origin": [ + 8.5625, + 3.5, + 7.23039 + ], + "color": 0, + "children": [ + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76 + ] + }, + { + "name": "bi2", + "origin": [ + 8.5625, + 3.5, + 7.23039 + ], + "color": 0, + "children": [ + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84 + ] + }, + { + "name": "hualun1", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "children": [ + { + "name": "group", + "origin": [ + 8.5, + 12.07358, + 10.80899 + ], + "color": 0, + "children": [ + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105 + ] + }, + { + "name": "group", + "origin": [ + 8.5, + 12.07358, + 10.80899 + ], + "color": 0, + "children": [ + 106, + 107, + 108, + 109, + 110 + ] + } + ] + }, + { + "name": "hualun2", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "children": [ + { + "name": "group", + "origin": [ + 8.5, + 12.07358, + 10.80899 + ], + "color": 0, + "children": [ + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131 + ] + }, + { + "name": "group", + "origin": [ + 8.5, + 12.07358, + 10.80899 + ], + "color": 0, + "children": [ + 132, + 133, + 134, + 135, + 136 + ] + } + ] + } + ] + }, + { + "name": "fuxian", + "origin": [ + 8.5625, + 3.5, + 7.23039 + ], + "color": 0, + "children": [ + 137, + 138 + ] + }, + { + "name": "jian", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "children": [ + 139, + { + "name": "jianyu", + "origin": [ + 8.525, + 3.64142, + -1.85 + ], + "color": 0, + "children": [ + 140, + 141, + 142, + 143, + 144 + ] + } + ] + }, + { + "name": "xian", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "children": [ + 145 + ] + }, + { + "name": "light", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "children": [ + 146, + 147 + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/bocek_base.json b/src/main/resources/assets/superbwarfare/models/item/bocek_base.json new file mode 100644 index 000000000..9dabcaa9a --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/bocek_base.json @@ -0,0 +1,6 @@ +{ + "parent": "superbwarfare:displaysettings/bocek.item", + "textures": { + "layer0": "superbwarfare:item/bocek" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/bocek_icon.json b/src/main/resources/assets/superbwarfare/models/item/bocek_icon.json new file mode 100644 index 000000000..6220bea26 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/bocek_icon.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/bocek_icon" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/butterfly_bullet.json b/src/main/resources/assets/superbwarfare/models/item/butterfly_bullet.json new file mode 100644 index 000000000..fb67648ed --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/butterfly_bullet.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/perk/butterfly_bullet" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/c4_bomb.json b/src/main/resources/assets/superbwarfare/models/item/c4_bomb.json new file mode 100644 index 000000000..f1a012204 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/c4_bomb.json @@ -0,0 +1,572 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 32, + 32 + ], + "textures": { + "0": "superbwarfare:item/c4", + "particle": "superbwarfare:item/c4" + }, + "elements": [ + { + "name": "body", + "from": [ + 0, + 0, + 3 + ], + "to": [ + 15, + 3, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 15, + 0, + 3 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 7, + 14, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 10, + 12.5, + 11.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 8.5, + 14, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 0, + 16, + 1.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 5.5, + 0, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 5.5, + 0, + 11 + ], + "texture": "#0" + } + } + }, + { + "name": "screen", + "from": [ + 12, + 3, + 4 + ], + "to": [ + 14, + 4, + 13 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 14, + 3, + 4 + ] + }, + "faces": { + "north": { + "uv": [ + 5.5, + 11.5, + 6.5, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 6, + 15, + 6.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 5.5, + 12.5, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 6.5, + 15, + 7 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 6, + 10.5, + 1.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 11, + 0, + 15.5 + ], + "texture": "#0" + } + } + }, + { + "name": "panel", + "from": [ + 3, + 3, + 5 + ], + "to": [ + 10, + 4, + 12 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 10, + 3, + 5 + ] + }, + "faces": { + "north": { + "uv": [ + 1, + 11, + 4.5, + 11.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 11.5, + 4.5, + 12 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 1.5, + 15, + 2 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 2, + 15, + 2.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 3.5, + 7, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 3.5, + 7, + 7 + ], + "texture": "#0" + } + } + }, + { + "name": "black", + "from": [ + 5, + 1, + 2 + ], + "to": [ + 10, + 2, + 3 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 10, + 1, + 2 + ] + }, + "faces": { + "north": { + "uv": [ + 4.5, + 11, + 7, + 11.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 11.5, + 8, + 12 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 2.5, + 14, + 3 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 11.5, + 8.5, + 12 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 14, + 3.5, + 11.5, + 3 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14, + 3.5, + 11.5, + 4 + ], + "texture": "#0" + } + } + }, + { + "name": "swtich", + "from": [ + 12, + 1, + 2 + ], + "to": [ + 14, + 2, + 3 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 14, + 1, + 2 + ] + }, + "faces": { + "north": { + "uv": [ + 11.5, + 4, + 12.5, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 11.5, + 7, + 12 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 11.5, + 5.5, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 11.5, + 7.5, + 12 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 12.5, + 5, + 11.5, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.5, + 5, + 11.5, + 5.5 + ], + "texture": "#0" + } + } + } + ], + "gui_light": "front", + "display": { + "thirdperson_righthand": { + "rotation": [ + 45, + 50, + 85 + ], + "translation": [ + -2, + 0, + 1.5 + ], + "scale": [ + 0.3, + 0.3, + 0.3 + ] + }, + "thirdperson_lefthand": { + "rotation": [ + 45, + 50, + 85 + ], + "translation": [ + -2, + 0, + 1.5 + ], + "scale": [ + 0.3, + 0.3, + 0.3 + ] + }, + "firstperson_righthand": { + "rotation": [ + 0, + 50, + 85 + ], + "translation": [ + 0, + 1.5, + 0 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] + }, + "firstperson_lefthand": { + "rotation": [ + 0, + -130, + -85 + ], + "translation": [ + 0, + 1.5, + 0 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] + }, + "ground": { + "translation": [ + 0, + 2, + 0 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] + }, + "gui": { + "rotation": [ + 45, + 45, + 0 + ], + "translation": [ + 0, + 3.75, + 0 + ], + "scale": [ + 0.8, + 0.8, + 0.8 + ] + }, + "head": { + "rotation": [ + 90, + 90, + 0 + ], + "translation": [ + 0, + -12, + 4.75 + ], + "scale": [ + 0.2, + 0.2, + 0.2 + ] + }, + "fixed": { + "rotation": [ + -90, + -90, + 0 + ], + "translation": [ + 0, + 0, + -7 + ] + } + }, + "groups": [ + { + "name": "c4", + "origin": [ + 8, + 0, + 8 + ], + "color": 0, + "children": [ + 0, + 1, + { + "name": "button_group", + "origin": [ + 10, + 3, + 5 + ], + "color": 0, + "children": [ + 2 + ] + }, + { + "name": "triggers", + "origin": [ + 8, + 0, + 8 + ], + "color": 0, + "children": [ + 3, + 4 + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/cell.json b/src/main/resources/assets/superbwarfare/models/item/cell.json new file mode 100644 index 000000000..b146395ff --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/cell.json @@ -0,0 +1,2298 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 32, + 32 + ], + "textures": { + "1": "superbwarfare:item/cell" + }, + "elements": [ + { + "from": [ + 6.49403, + 3.69, + 7.3925 + ], + "to": [ + 6.86403, + 8.81, + 8.6075 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 11, + 10.6875, + 13.5625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8, + 0, + 8.625, + 2.5625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 11.5, + 9, + 11.6875, + 11.5625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8, + 3, + 8.625, + 5.5625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 13.1875, + 13.625, + 13, + 13 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.1875, + 13.5, + 0, + 14.125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.49403, + 3.69, + 7.3925 + ], + "to": [ + 6.86403, + 8.81, + 8.6075 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 12, + 0, + 12.1875, + 2.5625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8, + 6, + 8.625, + 8.5625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 12, + 8.1875, + 14.5625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9, + 0, + 9.625, + 2.5625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0.6875, + 14.125, + 0.5, + 13.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.1875, + 13.5, + 1, + 14.125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.35316, + 3.69, + 6.53337 + ], + "to": [ + 8.56816, + 8.81, + 6.90337 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 3, + 9.625, + 5.5625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.5, + 12, + 8.6875, + 14.5625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 9, + 6, + 9.625, + 8.5625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9, + 12, + 9.1875, + 14.5625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 14.125, + 2.1875, + 13.5, + 2 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14.125, + 2.5, + 13.5, + 2.6875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.35316, + 3.69, + 6.53337 + ], + "to": [ + 8.56816, + 8.81, + 6.90337 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 9, + 8.625, + 11.5625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 12, + 9, + 12.1875, + 11.5625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 9, + 9, + 9.625, + 11.5625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9.5, + 12, + 9.6875, + 14.5625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 14.125, + 3.1875, + 13.5, + 3 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14.125, + 3.5, + 13.5, + 3.6875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 9.05729, + 3.69, + 7.3925 + ], + "to": [ + 9.42729, + 8.81, + 8.6075 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 11.5, + 12, + 11.6875, + 14.5625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 10, + 0.625, + 12.5625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 12, + 12, + 12.1875, + 14.5625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10, + 0, + 10.625, + 2.5625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 1.6875, + 14.125, + 1.5, + 13.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13.6875, + 4, + 13.5, + 4.625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 9.05729, + 3.69, + 7.3925 + ], + "to": [ + 9.42729, + 8.81, + 8.6075 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 12.5, + 0, + 12.6875, + 2.5625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1, + 10, + 1.625, + 12.5625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 12.5, + 3, + 12.6875, + 5.5625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2, + 10, + 2.625, + 12.5625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 13.6875, + 5.625, + 13.5, + 5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.1875, + 13.5, + 6, + 14.125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.35316, + 3.69, + 9.09663 + ], + "to": [ + 8.56816, + 8.81, + 9.46663 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 3, + 10, + 3.625, + 12.5625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 12.5, + 6, + 12.6875, + 8.5625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 10, + 3, + 10.625, + 5.5625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 12.5, + 9, + 12.6875, + 11.5625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 14.125, + 6.1875, + 13.5, + 6 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.125, + 13.5, + 6.5, + 13.6875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.35316, + 3.69, + 9.09663 + ], + "to": [ + 8.56816, + 8.81, + 9.46663 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 10, + 4.625, + 12.5625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11, + 12.5, + 11.1875, + 15.0625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5, + 10, + 5.625, + 12.5625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 12.5, + 12, + 12.6875, + 14.5625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 14.125, + 6.6875, + 13.5, + 6.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14.125, + 7, + 13.5, + 7.1875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.2183, + 3.89772, + 7.27829 + ], + "to": [ + 8.14286, + 8.56228, + 8.72171 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 0.9375, + 2.3125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6, + 5, + 6.75, + 7.3125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 1, + 0, + 1.9375, + 2.3125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7, + 0, + 7.75, + 2.3125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6.9375, + 10.75, + 6, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10.9375, + 6, + 10, + 6.75 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.2183, + 3.89772, + 7.27829 + ], + "to": [ + 8.14286, + 8.56228, + 8.72171 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 2, + 0, + 2.9375, + 2.3125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7, + 2.5, + 7.75, + 4.8125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 2.5, + 0.9375, + 4.8125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7, + 5, + 7.75, + 7.3125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.9375, + 10.75, + 7, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10.9375, + 7, + 10, + 7.75 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.23895, + 3.89772, + 6.25764 + ], + "to": [ + 7.68237, + 8.56228, + 8.1822 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 11, + 5, + 11.25, + 7.3125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1, + 2.5, + 1.9375, + 4.8125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 6, + 11, + 6.25, + 13.3125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2, + 2.5, + 2.9375, + 4.8125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 12.25, + 3.9375, + 12, + 3 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 12.25, + 4, + 12, + 4.9375 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.23895, + 3.89772, + 6.25764 + ], + "to": [ + 8.68237, + 8.56228, + 8.1822 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 6.5, + 11, + 6.75, + 13.3125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3, + 0, + 3.9375, + 2.3125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 11, + 7.25, + 13.3125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3, + 2.5, + 3.9375, + 4.8125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2.25, + 13.9375, + 2, + 13 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13.25, + 2, + 13, + 2.9375 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.23895, + 3.89772, + 6.25764 + ], + "to": [ + 8.68237, + 8.56228, + 8.1822 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 7.5, + 0.75, + 9.8125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4, + 0, + 4.9375, + 2.3125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 1, + 7.5, + 1.75, + 9.8125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4, + 2.5, + 4.9375, + 4.8125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 10.75, + 8.9375, + 10, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10.75, + 9, + 10, + 9.9375 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.77846, + 3.89772, + 7.27829 + ], + "to": [ + 9.70302, + 8.56228, + 8.72171 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 5, + 0.9375, + 7.3125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2, + 7.5, + 2.75, + 9.8125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5, + 0, + 5.9375, + 2.3125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3, + 7.5, + 3.75, + 9.8125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 10.9375, + 10.75, + 10, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11.9375, + 0, + 11, + 0.75 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.77846, + 3.89772, + 7.27829 + ], + "to": [ + 9.70302, + 8.56228, + 8.72171 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 1, + 5, + 1.9375, + 7.3125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4, + 7.5, + 4.75, + 9.8125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 2, + 5, + 2.9375, + 7.3125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5, + 7.5, + 5.75, + 9.8125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 11.9375, + 1.75, + 11, + 1 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11.9375, + 2, + 11, + 2.75 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.23895, + 3.89772, + 7.8178 + ], + "to": [ + 8.68237, + 8.56228, + 9.74236 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 11, + 7.75, + 13.3125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5, + 2.5, + 5.9375, + 4.8125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 11, + 7.5, + 11.25, + 9.8125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3, + 5, + 3.9375, + 7.3125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2.75, + 13.9375, + 2.5, + 13 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.25, + 13, + 3, + 13.9375 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.23895, + 3.89772, + 7.8178 + ], + "to": [ + 7.68237, + 8.56228, + 9.74236 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 11, + 10.25, + 13.3125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4, + 5, + 4.9375, + 7.3125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 11, + 10, + 11.25, + 12.3125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5, + 5, + 5.9375, + 7.3125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 13.25, + 3.9375, + 13, + 3 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.75, + 13, + 3.5, + 13.9375 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.68237, + 7.39772, + 7.8178 + ], + "to": [ + 8.24237, + 8.56228, + 9.74236 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.95408, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 13, + 9, + 13.25, + 9.5625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11.5, + 5, + 12.4375, + 5.5625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 13, + 10, + 13.25, + 10.5625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11.5, + 6, + 12.4375, + 6.5625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4.25, + 13.9375, + 4, + 13 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13.25, + 4, + 13, + 4.9375 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.68237, + 7.39772, + 6.25764 + ], + "to": [ + 8.24237, + 8.56228, + 8.1822 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 13, + 11, + 13.25, + 11.5625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11.5, + 7, + 12.4375, + 7.5625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 13, + 12, + 13.25, + 12.5625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11.5, + 8, + 12.4375, + 8.5625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4.75, + 13.9375, + 4.5, + 13 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.25, + 13, + 5, + 13.9375 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.68237, + 3.89772, + 7.8178 + ], + "to": [ + 8.24237, + 4.56228, + 9.74236 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.9475, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 13.5, + 11.5, + 13.75, + 11.8125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 13, + 0.5, + 13.9375, + 0.8125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 13.5, + 12, + 13.75, + 12.3125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1, + 13, + 1.9375, + 13.3125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 13.25, + 5.9375, + 13, + 5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.75, + 13, + 5.5, + 13.9375 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.68237, + 3.89772, + 6.25764 + ], + "to": [ + 8.24237, + 4.56228, + 8.1822 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.9475, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 13.5, + 12.5, + 13.75, + 12.8125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 13, + 1, + 13.9375, + 1.3125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 13.5, + 13, + 13.75, + 13.3125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13, + 1.5, + 13.9375, + 1.8125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 13.25, + 6.9375, + 13, + 6 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13.25, + 7, + 13, + 7.9375 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.23895, + 3.89772, + 7.8178 + ], + "to": [ + 8.68237, + 8.56228, + 9.74236 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 6, + 7.5, + 6.75, + 9.8125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6, + 0, + 6.9375, + 2.3125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 7.5, + 7.75, + 9.8125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6, + 2.5, + 6.9375, + 4.8125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 11.75, + 3.9375, + 11, + 3 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11.75, + 4, + 11, + 4.9375 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 9.05729, + 8.79, + 7.6425 + ], + "to": [ + 9.42729, + 9.26, + 8.3575 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 14, + 5, + 14.1875, + 5.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10, + 13.5, + 10.375, + 13.75 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5.5, + 14, + 5.6875, + 14.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13.5, + 10, + 13.875, + 10.25 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 13.6875, + 13.875, + 13.5, + 13.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14.1875, + 0, + 14, + 0.375 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.49403, + 8.79, + 7.6425 + ], + "to": [ + 6.86403, + 9.26, + 8.3575 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 14, + 5.5, + 14.1875, + 5.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 13.5, + 10.5, + 13.875, + 10.75 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 6.5, + 14, + 6.6875, + 14.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13.5, + 11, + 13.875, + 11.25 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 14.1875, + 0.875, + 14, + 0.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14.1875, + 1, + 14, + 1.375 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 3.948, + 6.9904, + 7.6425 + ], + "to": [ + 4.318, + 7.6604, + 8.3575 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 14, + 4, + 14.1875, + 4.3125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.5, + 13.5, + 7.875, + 13.8125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 4.5, + 14, + 4.6875, + 14.3125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 13.5, + 7.5, + 13.875, + 7.8125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 14.1875, + 1.875, + 14, + 1.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.1875, + 14, + 2, + 14.375 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.96779, + 9.36376, + 7.6425 + ], + "to": [ + 8.95279, + 9.73376, + 8.3575 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 13, + 8, + 14, + 8.1875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.5, + 14, + 2.875, + 14.1875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 13, + 8.5, + 14, + 8.6875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3, + 14, + 3.375, + 14.1875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 1, + 13.375, + 0, + 13 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 14, + 0, + 13, + 0.375 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 5.35214, + 8.69454, + 7.6425 + ], + "to": [ + 6.02214, + 9.06454, + 8.3575 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 7.96066, + 5.05188, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 14, + 4.5, + 14.3125, + 4.6875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.5, + 14, + 3.875, + 14.1875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5, + 14, + 5.3125, + 14.1875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4, + 14, + 4.375, + 14.1875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 13.8125, + 9.375, + 13.5, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 13.8125, + 9.5, + 13.5, + 9.875 + ], + "texture": "#1" + } + } + } + ], + "gui_light": "front", + "display": { + "thirdperson_righthand": { + "rotation": [ + 90, + -90, + 0 + ], + "translation": [ + 0, + -2, + -1.25 + ], + "scale": [ + 1.1, + 1.1, + 1.1 + ] + }, + "thirdperson_lefthand": { + "rotation": [ + 90, + -90, + 0 + ], + "translation": [ + 0, + -2, + -1.25 + ], + "scale": [ + 1.1, + 1.1, + 1.1 + ] + }, + "firstperson_righthand": { + "rotation": [ + 13, + 36, + -17 + ], + "translation": [ + 0.25, + 6.75, + -0.25 + ], + "scale": [ + 1.5, + 1.5, + 1.5 + ] + }, + "firstperson_lefthand": { + "rotation": [ + 13, + 36, + -17 + ], + "translation": [ + 0.25, + 6.75, + -0.25 + ], + "scale": [ + 1.5, + 1.5, + 1.5 + ] + }, + "ground": { + "translation": [ + 0, + 1.5, + 0 + ], + "scale": [ + 1.2, + 1.2, + 1.2 + ] + }, + "gui": { + "rotation": [ + 31, + 7, + -40 + ], + "translation": [ + 2.75, + 1.75, + 0 + ], + "scale": [ + 2, + 2, + 2 + ] + }, + "head": { + "rotation": [ + 0, + -90, + 0 + ], + "translation": [ + 0, + 17.25, + 0 + ], + "scale": [ + 2.5, + 2.5, + 2.5 + ] + }, + "fixed": { + "rotation": [ + 0, + 90, + 0 + ], + "translation": [ + 0.25, + 2.75, + -1.75 + ], + "scale": [ + 2, + 2, + 2 + ] + } + }, + "groups": [ + { + "name": "group", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "children": [ + { + "name": "group", + "origin": [ + 0, + 0, + 0 + ], + "color": 9, + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7 + ] + }, + { + "name": "group", + "origin": [ + 0, + 0, + 0 + ], + "color": 9, + "children": [ + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21 + ] + }, + { + "name": "group", + "origin": [ + 7.96066, + 1.75, + 8 + ], + "color": 0, + "children": [ + 22, + 23, + 24, + 25, + 26 + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/claymore_mine.json b/src/main/resources/assets/superbwarfare/models/item/claymore_mine.json new file mode 100644 index 000000000..c36affc55 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/claymore_mine.json @@ -0,0 +1,7 @@ +{ + "parent": "superbwarfare:custom/claymore", + "textures": { + "1": "superbwarfare:block/claymore", + "particle": "superbwarfare:item/claymore" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/container.json b/src/main/resources/assets/superbwarfare/models/item/container.json new file mode 100644 index 000000000..18f715db5 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/container.json @@ -0,0 +1,124 @@ +{ + "credit": "Made with Blockbench", + "parent": "builtin/entity", + "texture_size": [ + 128, + 128 + ], + "display": { + "thirdperson_righthand": { + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + -2, + -6 + ], + "scale": [ + 0.4, + 0.4, + 0.4 + ] + }, + "thirdperson_lefthand": { + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + -2, + -6 + ], + "scale": [ + 0.4, + 0.4, + 0.4 + ] + }, + "firstperson_righthand": { + "rotation": [ + -176.35, + 27.92, + -176.98 + ], + "translation": [ + -2, + 0, + 0 + ], + "scale": [ + 0.4, + 0.4, + 0.4 + ] + }, + "firstperson_lefthand": { + "rotation": [ + -176.35, + 27.92, + -176.98 + ], + "translation": [ + -2, + 0, + 0 + ], + "scale": [ + 0.4, + 0.4, + 0.4 + ] + }, + "ground": { + "translation": [ + 0, + -1.75, + 0 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] + }, + "gui": { + "rotation": [ + -155, + -45, + 180 + ], + "translation": [ + 0, + -4.5, + 0 + ], + "scale": [ + 0.65, + 0.65, + 0.65 + ] + }, + "head": { + "translation": [ + 0, + -7, + 0 + ] + }, + "fixed": { + "translation": [ + 0, + -7.75, + 1 + ] + } + }, + "textures": { + "particle": "superbwarfare:block/container" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/creative_ammo_box.json b/src/main/resources/assets/superbwarfare/models/item/creative_ammo_box.json new file mode 100644 index 000000000..6ffac9385 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/creative_ammo_box.json @@ -0,0 +1,7 @@ +{ + "parent": "superbwarfare:custom/ammobox", + "textures": { + "0": "superbwarfare:block/creativeammobox", + "particle": "superbwarfare:item/hk4163d" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/curse_flame_bullet.json b/src/main/resources/assets/superbwarfare/models/item/curse_flame_bullet.json new file mode 100644 index 000000000..107ef04c3 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/curse_flame_bullet.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/perk/curse_flame_bullet" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/desperado.json b/src/main/resources/assets/superbwarfare/models/item/desperado.json new file mode 100644 index 000000000..f1542a66e --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/desperado.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/perk/desperado" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/detonator.json b/src/main/resources/assets/superbwarfare/models/item/detonator.json new file mode 100644 index 000000000..d48048ea6 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/detonator.json @@ -0,0 +1,1416 @@ +{ + "credit": "Made with Blockbench", + "textures": { + "1": "superbwarfare:item/detonator" + }, + "elements": [ + { + "name": "zhu", + "from": [ + 7.5, + 2.8345, + 8.81392 + ], + "to": [ + 8.5, + 3.74231, + 9.56392 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 3.11732, + 9.18892 + ] + }, + "faces": { + "east": { + "uv": [ + 6, + 7, + 6.75, + 8 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 6, + 6, + 7, + 7 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7, + 6, + 7.75, + 7 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8, + 7, + 7, + 7.75 + ], + "texture": "#1" + } + } + }, + { + "name": "zhu", + "from": [ + 7.5, + 0, + 7.9 + ], + "to": [ + 8.5, + 0.25, + 9.66563 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 0, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 10, + 1, + 10.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9, + 4, + 10.75, + 4.25 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 10, + 0, + 11, + 0.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9, + 5, + 10.75, + 5.25 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5, + 5.75, + 4, + 4 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6, + 0, + 5, + 1.75 + ], + "texture": "#1" + } + } + }, + { + "name": "zhu", + "from": [ + 8.5, + -0.46875, + 7.15 + ], + "to": [ + 8.6, + -0.36875, + 8.16563 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 8.55, + -0.3, + 7.38281 + ] + }, + "faces": { + "north": { + "uv": [ + 11, + 8, + 11.25, + 8.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1, + 10, + 2, + 10.25 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 9, + 11, + 9.25, + 11.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10, + 1, + 11, + 1.25 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2.25, + 11, + 2, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10.25, + 2, + 10, + 3 + ], + "texture": "#1" + } + } + }, + { + "name": "zhu", + "from": [ + 7.5, + -0.46875, + 7.15 + ], + "to": [ + 8.5, + -0.36875, + 7.25 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 8.55, + -0.3, + 7.38281 + ] + }, + "faces": { + "north": { + "uv": [ + 3, + 10, + 4, + 10.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11, + 9, + 11.25, + 9.25 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 10, + 3, + 11, + 3.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10, + 11, + 10.25, + 11.25 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5, + 10.25, + 4, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6, + 10, + 5, + 10.25 + ], + "texture": "#1" + } + } + }, + { + "name": "zhu", + "from": [ + 7.4, + -0.46875, + 7.15 + ], + "to": [ + 7.5, + -0.36875, + 8.16563 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 7.45, + -0.3, + 7.38281 + ] + }, + "faces": { + "north": { + "uv": [ + 11, + 10, + 11.25, + 10.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6, + 10, + 7, + 10.25 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 11, + 11, + 11.25, + 11.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10, + 6, + 11, + 6.25 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.25, + 11, + 7, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10.25, + 7, + 10, + 8 + ], + "texture": "#1" + } + } + }, + { + "name": "zhu", + "from": [ + 7.5, + 0.25, + 7.75 + ], + "to": [ + 8.5, + 3, + 9.64219 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 0, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 3, + 1, + 5.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 2, + 2.75 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 1, + 3, + 2, + 5.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2, + 0, + 4, + 2.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5, + 0, + 4, + 2 + ], + "texture": "#1" + } + } + }, + { + "name": "zhu", + "from": [ + 7.5, + 3.23824, + 7.3462 + ], + "to": [ + 8.5, + 3.83824, + 9.2962 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + -0.00001, + 8.00001 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 7, + 9, + 7.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7, + 0, + 9, + 0.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7, + 1, + 9, + 1.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5, + 4, + 4, + 2 + ], + "texture": "#1" + } + } + }, + { + "name": "zhu", + "from": [ + 7.5, + 2.99606, + 7.74619 + ], + "to": [ + 8.5, + 3.23825, + 8.94619 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 0, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 10, + 9, + 10.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9, + 8, + 10.25, + 8.25 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 9, + 10, + 10, + 10.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9, + 9, + 10.25, + 9.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6, + 6, + 5, + 7.25 + ], + "texture": "#1" + } + } + }, + { + "name": "zhu", + "from": [ + 7.5, + 3.12379, + 7.3716 + ], + "to": [ + 8.5, + 3.36598, + 7.9216 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 3.24489, + 7.6466 + ] + }, + "faces": { + "east": { + "uv": [ + 11, + 6, + 11.5, + 6.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7, + 11, + 7.5, + 11.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9, + 8, + 8, + 8.5 + ], + "texture": "#1" + } + } + }, + { + "name": "zhu", + "from": [ + 7.7, + 3.75, + 8.4 + ], + "to": [ + 8.3, + 6.5, + 9 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 0, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 6, + 0, + 6.5, + 2.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1, + 6, + 1.5, + 8.75 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 6, + 3, + 6.5, + 5.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4, + 6, + 4.5, + 8.75 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 10.5, + 10.5, + 10, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.5, + 11, + 0, + 11.5 + ], + "texture": "#1" + } + } + }, + { + "name": "zhu", + "from": [ + 7.75, + 0.24428, + 7.4373 + ], + "to": [ + 8.25, + 1.74428, + 7.8873 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 0, + 8.1 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 2, + 8.5, + 3.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8, + 4, + 8.5, + 5.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5, + 8, + 5.5, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6, + 8, + 6.5, + 9.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 11.5, + 0.5, + 11, + 0 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.5, + 11, + 1, + 11.5 + ], + "texture": "#1" + } + } + }, + { + "name": "zhu", + "from": [ + 7.55, + 2.93166, + 7.09493 + ], + "to": [ + 8.45, + 3.63166, + 7.64493 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 8, + 3.43166, + 7.46993 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 6, + 9, + 6.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9, + 6, + 9.5, + 6.75 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 8, + 8, + 8.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7, + 9, + 7.5, + 9.75 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 10, + 0.5, + 9, + 0 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2, + 9, + 1, + 9.5 + ], + "texture": "#1" + } + } + }, + { + "name": "zhu", + "from": [ + 7.5, + 3.27155, + 7.01494 + ], + "to": [ + 8.5, + 3.47155, + 7.21494 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 0, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 11, + 1, + 12, + 1.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 12, + 0.25, + 12.25 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 2, + 11, + 3, + 11.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 12, + 0, + 12.25, + 0.25 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 12, + 2.25, + 11, + 2 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4, + 11, + 3, + 11.25 + ], + "texture": "#1" + } + } + }, + { + "name": "ba", + "from": [ + 7.8, + 0.12709, + 6.61152 + ], + "to": [ + 8.2, + 1.87709, + 7.06152 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 8, + 1.36928, + 6.8373 + ] + }, + "faces": { + "north": { + "uv": [ + 2, + 7, + 2.5, + 8.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7, + 2, + 7.5, + 3.75 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3, + 7, + 3.5, + 8.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7, + 4, + 7.5, + 5.75 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 11.5, + 3.5, + 11, + 3 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.5, + 11, + 4, + 11.5 + ], + "texture": "#1" + } + } + }, + { + "name": "ba", + "from": [ + 7.8, + 0.84173, + 6.39688 + ], + "to": [ + 8.2, + 1.84173, + 6.59688 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 8, + 1.33392, + 6.87266 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 1, + 9.5, + 2 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11, + 4, + 11.25, + 5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 2, + 9, + 2.5, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5, + 11, + 5.25, + 12 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 11.5, + 7.25, + 11, + 7 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.5, + 11, + 8, + 11.25 + ], + "texture": "#1" + } + } + }, + { + "name": "ba", + "from": [ + 7.65, + 0.09818, + 6.1459 + ], + "to": [ + 8.35, + 3.29818, + 6.6459 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 1.36928, + 6.8373 + ] + }, + "faces": { + "north": { + "uv": [ + 2, + 3, + 2.75, + 6.25 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5, + 2, + 5.5, + 5.25 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3, + 3, + 3.75, + 6.25 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 6, + 0.5, + 9.25 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 9.75, + 7.5, + 9, + 7 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.75, + 9, + 8, + 9.5 + ], + "texture": "#1" + } + } + }, + { + "name": "tanhuang", + "from": [ + 7.75, + 2.2, + 6.7 + ], + "to": [ + 8.25, + 2.7, + 7.81563 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 0, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 11, + 5, + 11.5, + 5.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9, + 2, + 10, + 2.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 6, + 11, + 6.5, + 11.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3, + 9, + 4, + 9.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 9.5, + 4, + 9, + 3 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.5, + 9, + 4, + 10 + ], + "texture": "#1" + } + } + } + ], + "gui_light": "front", + "display": { + "thirdperson_righthand": { + "translation": [ + -1, + 4.5, + 0 + ] + }, + "thirdperson_lefthand": { + "translation": [ + -1, + 4.5, + 0 + ] + }, + "firstperson_righthand": { + "rotation": [ + 0, + 0, + -17 + ], + "translation": [ + -1.5, + 10.5, + 4.25 + ] + }, + "firstperson_lefthand": { + "rotation": [ + 0, + 0, + -17 + ], + "translation": [ + -1.5, + 10.5, + 4.25 + ] + }, + "ground": { + "translation": [ + 0, + 5, + 0 + ] + }, + "gui": { + "rotation": [ + 90, + 45, + -90 + ], + "translation": [ + 8, + 8.75, + 0.5 + ], + "scale": [ + 2.2, + 2.2, + 2.2 + ] + }, + "head": { + "translation": [ + 0, + 14.75, + 0 + ] + }, + "fixed": { + "rotation": [ + 90, + -45, + 90 + ], + "translation": [ + -9, + 9.75, + 0.5 + ], + "scale": [ + 2.5, + 2.5, + 2.5 + ] + } + }, + "groups": [ + { + "name": "bone", + "origin": [ + 8, + 10, + 8 + ], + "color": 0, + "children": [ + { + "name": "0", + "origin": [ + 8, + 0, + 8 + ], + "color": 1, + "children": [ + { + "name": "zhu", + "origin": [ + 8, + 3.41452, + 7.379 + ], + "color": 3, + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ] + }, + { + "name": "ba", + "origin": [ + 8, + 3.35, + 7.07 + ], + "color": 4, + "children": [ + 13, + 14, + 15 + ] + }, + { + "name": "tanhuang", + "origin": [ + 8, + 2.45, + 7.25781 + ], + "color": 5, + "children": [ + 16 + ] + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/devotion.json b/src/main/resources/assets/superbwarfare/models/item/devotion.json new file mode 100644 index 000000000..e033c84f5 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/devotion.json @@ -0,0 +1,27 @@ +{ + "loader": "forge:separate_transforms", + "gui_light": "front", + "base": { + "parent": "superbwarfare:item/devotion_base" + }, + "perspectives": { + "gui": { + "parent": "superbwarfare:item/devotion_icon" + }, + "thirdperson_righthand": { + "parent": "superbwarfare:item/devotion3d" + }, + "thirdperson_lefthand": { + "parent": "superbwarfare:item/devotion3d" + }, + "ground": { + "parent": "superbwarfare:item/devotion3d" + }, + "fixed": { + "parent": "superbwarfare:item/devotion3d" + }, + "head": { + "parent": "superbwarfare:item/devotion3d" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/devotion3d.json b/src/main/resources/assets/superbwarfare/models/item/devotion3d.json new file mode 100644 index 000000000..aa8fdb830 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/devotion3d.json @@ -0,0 +1,1495 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 64, + 64 + ], + "textures": { + "0": "superbwarfare:item/devotion3d", + "particle": "superbwarfare:item/devotion3d" + }, + "elements": [ + { + "from": [ + 7, + 2, + 0 + ], + "to": [ + 9, + 5, + 20 + ], + "shade": false, + "faces": { + "north": { + "uv": [ + 5.5, + 6.75, + 6, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 5, + 0.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 6.25, + 7.25, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0.75, + 5, + 1.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0.5, + 8, + 0, + 3 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 3, + 0.5, + 8 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7, + 3, + 20 + ], + "to": [ + 9, + 5, + 32 + ], + "shade": false, + "faces": { + "north": { + "uv": [ + 4.5, + 7.25, + 5, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 3, + 5, + 3.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 4.75, + 7.75, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 3.5, + 5, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 7, + 2, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 4, + 2.5, + 7 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7, + -1, + 31 + ], + "to": [ + 9, + 3, + 32 + ], + "shade": false, + "faces": { + "north": { + "uv": [ + 5, + 3, + 5.5, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 7.25, + 5.25, + 8.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 6.25, + 2, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 7.25, + 5.5, + 8.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 1, + 7, + 0.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.75, + 7.75, + 2.25, + 8 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7, + -0.08135, + 20.38164 + ], + "to": [ + 9, + 0.91865, + 31.38164 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 0.41865, + 28.88164 + ] + }, + "shade": false, + "faces": { + "north": { + "uv": [ + 3.5, + 7.75, + 4, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 2.25, + 8.75, + 2.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 3.75, + 8.25, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 2.5, + 8.75, + 2.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 6.75, + 3, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 4, + 3.5, + 6.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7, + 1, + 7 + ], + "to": [ + 9, + 2, + 20 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 0, + 0, + 3 + ] + }, + "shade": false, + "faces": { + "north": { + "uv": [ + 7.75, + 4, + 8.25, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 1.75, + 9.25, + 2 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 4.25, + 8.25, + 4.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 2, + 9.25, + 2.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 6.25, + 1, + 3 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 3, + 1.5, + 6.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7, + -5, + 19 + ], + "to": [ + 9, + 2, + 21 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + -0.5, + 18 + ] + }, + "shade": false, + "faces": { + "north": { + "uv": [ + 4.5, + 5.5, + 5, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 5.5, + 5.5, + 7.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 5, + 6, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 0, + 6.5, + 1.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 5.75, + 7.25, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 7.25, + 6.25, + 7.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7, + -2.5, + 14 + ], + "to": [ + 9, + 1, + 14.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 0, + 0, + 3 + ] + }, + "shade": false, + "faces": { + "north": { + "uv": [ + 6.25, + 3.75, + 6.75, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 6.25, + 7.5, + 7.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 4.75, + 6.75, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 7.25, + 7.5, + 8.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 8, + 4.5, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 4.5, + 7.75, + 4.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7, + -3.42806, + 8.87536 + ], + "to": [ + 9, + 1.57194, + 9.87536 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + -3.42806, + 9.37536 + ] + }, + "shade": false, + "faces": { + "north": { + "uv": [ + 5, + 0, + 5.5, + 1.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 7.25, + 1.75, + 8.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 0, + 6, + 1.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 7.25, + 2, + 8.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 5, + 7.75, + 4.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 5, + 7.75, + 5.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7, + -3.6194, + 8.91342 + ], + "to": [ + 9, + -2.6194, + 11.41342 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + -3.1194, + 11.41342 + ] + }, + "shade": false, + "faces": { + "north": { + "uv": [ + 7.75, + 5.25, + 8.25, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 1.5, + 8.25, + 1.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 5.5, + 8.25, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 7.25, + 8.25, + 7.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 0.75, + 7, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 7, + 2, + 7.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 4, + -4, + 11 + ], + "to": [ + 12, + 2, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 0, + 0, + 3 + ] + }, + "shade": false, + "faces": { + "north": { + "uv": [ + 0, + 1.5, + 2, + 3 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 4, + 4.75, + 5.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 1.5, + 4, + 3 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 4, + 5.5, + 5.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 2.25, + 4, + 1.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 2.25, + 4, + 3 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7, + 5, + 7 + ], + "to": [ + 9, + 5.5, + 15 + ], + "shade": false, + "faces": { + "north": { + "uv": [ + 6.25, + 7.75, + 6.75, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 5.75, + 8.25, + 6 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 7.75, + 7.25, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 6, + 8.25, + 6.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 5, + 5.5, + 3 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 5.5, + 4, + 7.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7, + 5, + 15 + ], + "to": [ + 9, + 5.7, + 18.7 + ], + "shade": false, + "faces": { + "north": { + "uv": [ + 7.75, + 7.5, + 8.25, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 1.25, + 6, + 1.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 7.75, + 8.25, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 1.5, + 7.5, + 1.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 7.25, + 6.25, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 0, + 6.5, + 1 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.8, + 5, + 15 + ], + "to": [ + 7, + 7.2, + 16.7 + ], + "shade": false, + "faces": { + "north": { + "uv": [ + 2.75, + 7.75, + 3, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 0, + 8, + 0.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 8, + 0.25, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 0.5, + 8, + 1 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 0.5, + 8, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.5, + 8, + 0.25, + 8.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 9, + 5, + 15 + ], + "to": [ + 9.2, + 7.2, + 16.7 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 16, + 0, + 0 + ] + }, + "shade": false, + "faces": { + "north": { + "uv": [ + 0.5, + 8, + 0.75, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 7.5, + 4.5, + 8 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 0.5, + 8.25, + 1 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 7.5, + 6, + 8 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 8.5, + 0.75, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 8, + 2.25, + 8.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7, + 1.5, + -7 + ], + "to": [ + 7.5, + 2, + 3 + ], + "shade": false, + "faces": { + "north": { + "uv": [ + 2.5, + 8, + 2.75, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 2.75, + 8.5, + 3 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 8, + 4.75, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 3, + 8.5, + 3.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 5.75, + 6, + 3.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 5.75, + 6, + 8.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.5, + 1.5, + -7 + ], + "to": [ + 9, + 2, + 3 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 16, + 0, + 0 + ] + }, + "shade": false, + "faces": { + "north": { + "uv": [ + 4.75, + 8, + 5, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 3.25, + 8.75, + 3.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 8, + 5.75, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 3.5, + 8.75, + 3.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 8.75, + 1, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 6.25, + 1.25, + 8.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 3.75, + -8 + ], + "to": [ + 8.5, + 4.75, + 0 + ], + "shade": false, + "faces": { + "north": { + "uv": [ + 5.75, + 8, + 6, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 1, + 8.5, + 1.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 8, + 6.5, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 1.25, + 8.5, + 1.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 8.75, + 3, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 6.75, + 3.25, + 8.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 3.5, + -11.9 + ], + "to": [ + 8.75, + 5, + -8 + ], + "shade": false, + "faces": { + "north": { + "uv": [ + 7.5, + 6.25, + 8, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 3.75, + 7.75, + 4.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 6.75, + 8, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 4.25, + 7.75, + 4.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 7.75, + 3.5, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 4.75, + 6.75, + 5.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 2.5, + -0.9 + ], + "to": [ + 8.75, + 5, + 0 + ], + "shade": false, + "faces": { + "north": { + "uv": [ + 2.5, + 7, + 3, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 7.5, + 7.75, + 8.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 7, + 7.25, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 7.75, + 2.25, + 8.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 8.25, + 3.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 8, + 4, + 8.25 + ], + "texture": "#0" + } + } + } + ], + "gui_light": "front", + "display": { + "thirdperson_righthand": { + "translation": [ + -1.25, + 2.5, + -4 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] + }, + "thirdperson_lefthand": { + "translation": [ + -1.25, + 2.5, + -4 + ], + "scale": [ + 0, + 0, + 0 + ] + }, + "ground": { + "translation": [ + 0, + 4, + -2.25 + ], + "scale": [ + 0.4, + 0.4, + 0.4 + ] + }, + "head": { + "translation": [ + 0, + 18.25, + -7.75 + ] + }, + "fixed": { + "rotation": [ + 0, + 90, + 0 + ], + "translation": [ + -3.5, + 6, + 0 + ] + } + }, + "groups": [ + { + "name": "group", + "origin": [ + 0, + 0, + 0 + ], + "color": 0, + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18 + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/devotion_base.json b/src/main/resources/assets/superbwarfare/models/item/devotion_base.json new file mode 100644 index 000000000..47b0e2377 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/devotion_base.json @@ -0,0 +1,6 @@ +{ + "parent": "superbwarfare:displaysettings/devotion.item", + "textures": { + "layer0": "superbwarfare:item/devotion" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/devotion_icon.json b/src/main/resources/assets/superbwarfare/models/item/devotion_icon.json new file mode 100644 index 000000000..953445bd7 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/devotion_icon.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/devotion_icon" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/dragon_teeth.json b/src/main/resources/assets/superbwarfare/models/item/dragon_teeth.json new file mode 100644 index 000000000..28eeb2841 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/dragon_teeth.json @@ -0,0 +1,126 @@ +{ + "parent": "superbwarfare:block/dragon_teeth", + "display": { + "thirdperson_righthand": { + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + -2, + -6.25 + ], + "scale": [ + 0.35, + 0.35, + 0.35 + ] + }, + "thirdperson_lefthand": { + "rotation": [ + 90, + 0, + 0 + ], + "translation": [ + 0, + -2, + -6.25 + ], + "scale": [ + 0.35, + 0.35, + 0.35 + ] + }, + "firstperson_righthand": { + "rotation": [ + 13, + 0, + 0 + ], + "translation": [ + -1.5, + 1.25, + 0.5 + ], + "scale": [ + 0.35, + 0.35, + 0.35 + ] + }, + "firstperson_lefthand": { + "rotation": [ + 13, + 0, + 0 + ], + "translation": [ + -1.5, + 1.25, + 0.5 + ], + "scale": [ + 0.35, + 0.35, + 0.35 + ] + }, + "ground": { + "translation": [ + 0, + 0.25, + 0 + ], + "scale": [ + 0.4, + 0.4, + 0.4 + ] + }, + "gui": { + "rotation": [ + 45, + -45, + 0 + ], + "translation": [ + 0, + 0.25, + 0 + ], + "scale": [ + 0.45, + 0.45, + 0.45 + ] + }, + "head": { + "translation": [ + 0, + 11.5, + 0 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + }, + "fixed": { + "translation": [ + 0, + -2.5, + 0 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/explosive_mine.json b/src/main/resources/assets/superbwarfare/models/item/explosive_mine.json new file mode 100644 index 000000000..396265aad --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/explosive_mine.json @@ -0,0 +1,7 @@ +{ + "parent": "superbwarfare:custom/c4", + "textures": { + "1": "superbwarfare:block/c4", + "particle": "superbwarfare:item/c4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/field_doctor.json b/src/main/resources/assets/superbwarfare/models/item/field_doctor.json new file mode 100644 index 000000000..6c551dee7 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/field_doctor.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/perk/field_doctor" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/fourth_times_charm.json b/src/main/resources/assets/superbwarfare/models/item/fourth_times_charm.json new file mode 100644 index 000000000..ef3d7c932 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/fourth_times_charm.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/perk/fourth_times_charm" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/fumo_25.json b/src/main/resources/assets/superbwarfare/models/item/fumo_25.json new file mode 100644 index 000000000..aa7779ed0 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/fumo_25.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/fumo_25" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/glock17_3d.json b/src/main/resources/assets/superbwarfare/models/item/glock17_3d.json new file mode 100644 index 000000000..cb0e866ef --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/glock17_3d.json @@ -0,0 +1,467 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 32, + 32 + ], + "textures": { + "0": "superbwarfare:item/glock17_3d", + "particle": "superbwarfare:item/glock17_3d" + }, + "elements": [ + { + "from": [ + 7, + 6, + 2 + ], + "to": [ + 9, + 8, + 15 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7, + 6, + 2 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 1.5, + 8, + 2.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 6.5, + 1 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 2.5, + 8, + 3.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 1, + 6.5, + 2 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 8.5, + 0, + 2 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 2, + 1, + 8.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7, + 5, + 2.25 + ], + "to": [ + 9, + 6, + 14.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7, + 4, + 2 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 4.5, + 8, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 5.5, + 12, + 6 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 5, + 8, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 6, + 12, + 6.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 8, + 2, + 2 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 2, + 3, + 8 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.75, + 3.25, + 7.75 + ], + "to": [ + 8.25, + 5, + 8 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7, + 4, + 1 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 0, + 8, + 1 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 0, + 8.5, + 1 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 1, + 8.5, + 2 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 8, + 2.5, + 9 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 2, + 6.5, + 1.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 1, + 7.5, + 1.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.75, + 3.25, + 8 + ], + "to": [ + 8.25, + 3.5, + 11.75 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 3.375, + 8.875 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 2, + 8.5, + 2.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 3.5, + 9, + 4 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 8, + 3, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 4, + 9, + 4.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 8.5, + 7, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 6.5, + 7.5, + 8.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.00781, + -0.51537, + 11.15224 + ], + "to": [ + 8.99219, + 6.23463, + 14.15224 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 7, + 4.23463, + 12.15224 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 5.5, + 5, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 2, + 5.5, + 5.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 5.5, + 6, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 2, + 7, + 5.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 1.5, + 6.5, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 6.5, + 6, + 8 + ], + "texture": "#0" + } + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [ + -1, + 1.5, + 0 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] + }, + "thirdperson_lefthand": { + "scale": [ + 0, + 0, + 0 + ] + }, + "firstperson_lefthand": { + "translation": [ + 0, + -80, + 0 + ], + "scale": [ + 0, + 0, + 0 + ] + }, + "ground": { + "translation": [ + 0, + -0.25, + 0 + ], + "scale": [ + 0.75, + 0.75, + 0.75 + ] + }, + "head": { + "translation": [ + 0, + 10.25, + 0 + ] + }, + "fixed": { + "rotation": [ + 90, + 45, + -90 + ], + "translation": [ + 1.25, + 4, + 0 + ], + "scale": [ + 1.2, + 1.2, + 1.2 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/glock17_icon.json b/src/main/resources/assets/superbwarfare/models/item/glock17_icon.json new file mode 100644 index 000000000..0cbe82479 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/glock17_icon.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/glock17_icon" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/glock_17.json b/src/main/resources/assets/superbwarfare/models/item/glock_17.json new file mode 100644 index 000000000..4ed94e656 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/glock_17.json @@ -0,0 +1,27 @@ +{ + "loader": "forge:separate_transforms", + "gui_light": "front", + "base": { + "parent": "superbwarfare:item/glock_17_base" + }, + "perspectives": { + "gui": { + "parent": "superbwarfare:item/glock17_icon" + }, + "thirdperson_righthand": { + "parent": "superbwarfare:item/glock17_3d" + }, + "thirdperson_lefthand": { + "parent": "superbwarfare:item/glock17_3d" + }, + "ground": { + "parent": "superbwarfare:item/glock17_3d" + }, + "fixed": { + "parent": "superbwarfare:item/glock17_3d" + }, + "head": { + "parent": "superbwarfare:item/glock17_3d" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/glock_17_base.json b/src/main/resources/assets/superbwarfare/models/item/glock_17_base.json new file mode 100644 index 000000000..e45180174 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/glock_17_base.json @@ -0,0 +1,6 @@ +{ + "parent": "superbwarfare:displaysettings/glock17.item", + "textures": { + "layer0": "superbwarfare:item/glock17" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/glock_18.json b/src/main/resources/assets/superbwarfare/models/item/glock_18.json new file mode 100644 index 000000000..4ed94e656 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/glock_18.json @@ -0,0 +1,27 @@ +{ + "loader": "forge:separate_transforms", + "gui_light": "front", + "base": { + "parent": "superbwarfare:item/glock_17_base" + }, + "perspectives": { + "gui": { + "parent": "superbwarfare:item/glock17_icon" + }, + "thirdperson_righthand": { + "parent": "superbwarfare:item/glock17_3d" + }, + "thirdperson_lefthand": { + "parent": "superbwarfare:item/glock17_3d" + }, + "ground": { + "parent": "superbwarfare:item/glock17_3d" + }, + "fixed": { + "parent": "superbwarfare:item/glock17_3d" + }, + "head": { + "parent": "superbwarfare:item/glock17_3d" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/grenade_40mm.json b/src/main/resources/assets/superbwarfare/models/item/grenade_40mm.json new file mode 100644 index 000000000..fa7f4702c --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/grenade_40mm.json @@ -0,0 +1,7 @@ +{ + "parent": "superbwarfare:custom/gungranade", + "textures": { + "0": "superbwarfare:block/gungranade", + "particle": "superbwarfare:item/gungranade" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/gutshot_straight.json b/src/main/resources/assets/superbwarfare/models/item/gutshot_straight.json new file mode 100644 index 000000000..c0a946002 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/gutshot_straight.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/perk/gutshot_straight" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/hammer.json b/src/main/resources/assets/superbwarfare/models/item/hammer.json new file mode 100644 index 000000000..b7ee54b50 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/hammer.json @@ -0,0 +1,7 @@ +{ + "parent": "superbwarfare:custom/hammer", + "textures": { + "0": "superbwarfare:block/hammer", + "particle": "superbwarfare:item/hammer" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/hand_grenade.json b/src/main/resources/assets/superbwarfare/models/item/hand_grenade.json new file mode 100644 index 000000000..b41611ae6 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/hand_grenade.json @@ -0,0 +1,1668 @@ +{ + "credit": "Made with Blockbench", + "textures": { + "1": "superbwarfare:item/hand_grenade" + }, + "elements": [ + { + "name": "bone176", + "from": [ + 7.4625, + 6.70236, + 7.4625 + ], + "to": [ + 8.5375, + 9.29764, + 8.5375 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 8, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 1, + 2.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 1, + 0, + 2, + 2.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 9, + 3, + 8, + 2 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4, + 8, + 3, + 9 + ], + "texture": "#1" + } + } + }, + { + "name": "bone178", + "from": [ + 6.70236, + 7.4625, + 7.4625 + ], + "to": [ + 9.29764, + 8.5375, + 8.5375 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 8, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 2, + 0, + 4.5, + 1 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8, + 3, + 9, + 4 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 2, + 1, + 4.5, + 2 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4, + 8, + 5, + 9 + ], + "texture": "#1" + } + } + }, + { + "name": "bone176", + "from": [ + 7.4625, + 6.70236, + 7.4625 + ], + "to": [ + 8.5375, + 9.29764, + 8.5375 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8, + 8, + 8 + ] + }, + "faces": { + "east": { + "uv": [ + 2, + 2, + 3, + 4.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 3, + 1, + 5.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6, + 9, + 5, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9, + 6, + 8, + 7 + ], + "texture": "#1" + } + } + }, + { + "name": "bone177", + "from": [ + 7.4625, + 6.70236, + 7.4625 + ], + "to": [ + 8.5375, + 9.29764, + 8.5375 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 8, + 8, + 8 + ] + }, + "faces": { + "east": { + "uv": [ + 1, + 3, + 2, + 5.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3, + 2, + 4, + 4.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8, + 9, + 7, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9, + 7, + 8, + 8 + ], + "texture": "#1" + } + } + }, + { + "name": "bone179", + "from": [ + 7.4625, + 7.4625, + 6.70236 + ], + "to": [ + 8.5375, + 8.5375, + 9.29764 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 8, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 8, + 9, + 9 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4, + 2, + 6.5, + 3 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 9, + 1, + 10 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4, + 3, + 6.5, + 4 + ], + "texture": "#1" + } + } + }, + { + "name": "bone177", + "from": [ + 6.70236, + 7.4625, + 7.4625 + ], + "to": [ + 9.29764, + 8.5375, + 8.5375 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8, + 8, + 8 + ] + }, + "faces": { + "east": { + "uv": [ + 9, + 0, + 10, + 1 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1, + 9, + 2, + 10 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6.5, + 5, + 4, + 4 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.5, + 0, + 5, + 1 + ], + "texture": "#1" + } + } + }, + { + "name": "bone178", + "from": [ + 6.70236, + 7.4625, + 7.4625 + ], + "to": [ + 9.29764, + 8.5375, + 8.5375 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 8, + 8, + 8 + ] + }, + "faces": { + "east": { + "uv": [ + 9, + 1, + 10, + 2 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2, + 9, + 3, + 10 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.5, + 2, + 5, + 1 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.5, + 5, + 2, + 6 + ], + "texture": "#1" + } + } + }, + { + "name": "bone179", + "from": [ + 7.4625, + 7.4625, + 6.70236 + ], + "to": [ + 8.5375, + 8.5375, + 9.29764 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 2, + 10, + 3 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3, + 9, + 4, + 10 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6, + 7.5, + 5, + 5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1, + 6, + 0, + 8.5 + ], + "texture": "#1" + } + } + }, + { + "name": "bone180", + "from": [ + 7.4625, + 7.4625, + 6.70236 + ], + "to": [ + 8.5375, + 8.5375, + 9.29764 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 8, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 3, + 10, + 4 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 4, + 9, + 5, + 10 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2, + 8.5, + 1, + 6 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3, + 6, + 2, + 8.5 + ], + "texture": "#1" + } + } + }, + { + "name": "bone177", + "from": [ + 7.5625, + 9.29764, + 7.4625 + ], + "to": [ + 8.4375, + 9.59764, + 8.5375 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 0, + 11, + 0.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1, + 10, + 2, + 10.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 10, + 1, + 11, + 1.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2, + 10, + 3, + 10.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.55, + 9.6, + 7.4 + ], + "to": [ + 8.45, + 10.45, + 8.75 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7, + 9.2, + 7 + ] + }, + "faces": { + "east": { + "uv": [ + 7, + 4, + 8.5, + 5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 9, + 4, + 10, + 5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7, + 5, + 8.5, + 6 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 7, + 6, + 8.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.55, + 9.6, + 8.75 + ], + "to": [ + 8.45, + 10.45, + 9.05 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7, + 9.2, + 7 + ] + }, + "faces": { + "east": { + "uv": [ + 10, + 2, + 10.5, + 3 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3, + 10, + 3.5, + 11 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11, + 3, + 10, + 3.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.55, + 9.6, + 9.05 + ], + "to": [ + 8.45, + 9.95, + 9.35 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7, + 9.2, + 7 + ] + }, + "faces": { + "east": { + "uv": [ + 11, + 7, + 11.5, + 7.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 4, + 10, + 5, + 10.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8, + 11, + 8.5, + 11.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11, + 4, + 10, + 4.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.55, + 9.95, + 9.05 + ], + "to": [ + 8.45, + 10.25, + 9.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 10.1, + 9.15 + ] + }, + "faces": { + "east": { + "uv": [ + 11, + 8, + 11.5, + 8.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5, + 10, + 6, + 10.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9, + 11, + 9.5, + 11.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 10, + 6, + 10.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.55, + 9.47737, + 7.58352 + ], + "to": [ + 8.45, + 10.41644, + 7.9343 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 7, + 9.07737, + 7.18352 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 9, + 6, + 10 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10, + 6, + 10.5, + 7 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7, + 10, + 7.5, + 11 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 11, + 7.5, + 10, + 7 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11, + 8, + 10, + 8.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.5, + 10.45, + 6.9 + ], + "to": [ + 8.5, + 10.65, + 9.1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7, + 8.95, + 7 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 10, + 10, + 10.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9, + 5, + 11, + 5.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6, + 9, + 8, + 9.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4, + 8, + 3, + 6 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5, + 6, + 4, + 8 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.4, + 10.32266, + 8.87031 + ], + "to": [ + 8.6, + 10.42266, + 8.97031 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 10.37266, + 8.92031 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 9, + 11, + 9.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11, + 9, + 11.5, + 9.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 10, + 10, + 11, + 10.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10, + 11, + 10.5, + 11.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 12, + 0.5, + 11, + 0 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2, + 11, + 1, + 11.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.35, + 10.32266, + 8.57031 + ], + "to": [ + 7.45, + 10.42266, + 9.27031 + ], + "rotation": { + "angle": -22.5, + "axis": "z", + "origin": [ + 7.4, + 10.37266, + 8.92031 + ] + }, + "faces": { + "north": { + "uv": [ + 11, + 10, + 11.5, + 10.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11, + 11, + 11.5, + 11.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 12, + 0.5, + 12.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 12, + 0, + 12.5, + 0.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 1.5, + 12.5, + 1, + 12 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 12.5, + 1, + 12, + 1.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.04385, + 9.58355, + 8.57031 + ], + "to": [ + 7.14385, + 9.68355, + 9.27031 + ], + "rotation": { + "angle": -22.5, + "axis": "z", + "origin": [ + 7.09385, + 9.63355, + 8.92031 + ] + }, + "faces": { + "north": { + "uv": [ + 2, + 12, + 2.5, + 12.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 12, + 2, + 12.5, + 2.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3, + 12, + 3.5, + 12.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 12, + 3, + 12.5, + 3.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4.5, + 12.5, + 4, + 12 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 12.5, + 4, + 12, + 4.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.21606, + 9.5493, + 9.27031 + ], + "to": [ + 7.31606, + 10.4493, + 9.37031 + ], + "rotation": { + "angle": -22.5, + "axis": "z", + "origin": [ + 7.26606, + 10.0493, + 9.32031 + ] + }, + "faces": { + "north": { + "uv": [ + 11, + 1, + 11.5, + 2 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2, + 11, + 2.5, + 12 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 11, + 2, + 11.5, + 3 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3, + 11, + 3.5, + 12 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5.5, + 12.5, + 5, + 12 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 12.5, + 5, + 12, + 5.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.21606, + 9.5493, + 8.47031 + ], + "to": [ + 7.31606, + 10.4493, + 8.57031 + ], + "rotation": { + "angle": -22.5, + "axis": "z", + "origin": [ + 7.26606, + 10.0493, + 8.52031 + ] + }, + "faces": { + "north": { + "uv": [ + 11, + 3, + 11.5, + 4 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4, + 11, + 4.5, + 12 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 11, + 4, + 11.5, + 5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5, + 11, + 5.5, + 12 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6.5, + 12.5, + 6, + 12 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 12.5, + 6, + 12, + 6.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.5, + 8.06466, + 9.10594 + ], + "to": [ + 8.5, + 10.01466, + 9.30594 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 7, + 9.81466, + 7.60594 + ] + }, + "faces": { + "north": { + "uv": [ + 6, + 5, + 7, + 7 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9, + 6, + 9.5, + 8 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 2, + 8, + 4 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8, + 9, + 8.5, + 11 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 12, + 5.5, + 11, + 5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 11, + 6, + 11.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.5, + 7.39843, + 9.64623 + ], + "to": [ + 8.5, + 8.84843, + 9.84623 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 7, + 8.64843, + 8.14623 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 6, + 8, + 7.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9, + 8, + 9.5, + 9.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 0, + 9, + 1.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 10, + 0.5, + 11.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 12, + 6.5, + 11, + 6 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8, + 11, + 7, + 11.5 + ], + "texture": "#1" + } + } + } + ], + "display": { + "firstperson_righthand": { + "rotation": [ + -3, + -19, + -7.25 + ], + "translation": [ + 5.5, + -0.75, + -3.5 + ], + "scale": [ + 2, + 2, + 2 + ] + }, + "firstperson_lefthand": { + "rotation": [ + -3, + -19, + -7.25 + ], + "translation": [ + 5.5, + -0.75, + -3.5 + ], + "scale": [ + 2, + 2, + 2 + ] + }, + "ground": { + "translation": [ + 0, + -2, + 0 + ] + }, + "gui": { + "rotation": [ + -140.06, + -16.8, + -135.22 + ], + "translation": [ + -1.5, + -2.25, + 0 + ], + "scale": [ + 3, + 3, + 3 + ] + }, + "head": { + "translation": [ + 0, + -1.75, + -6.75 + ], + "scale": [ + 1.5, + 1.5, + 1.5 + ] + }, + "fixed": { + "rotation": [ + 90, + -45, + 90 + ], + "translation": [ + 0.75, + -0.5, + 0 + ], + "scale": [ + 2, + 2, + 2 + ] + } + }, + "groups": [ + { + "name": "group", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "children": [ + { + "name": "bone175", + "origin": [ + 8, + 7.99219, + -17.72809 + ], + "color": 2, + "children": [ + 0, + 1 + ] + }, + { + "name": "bone175", + "origin": [ + 8, + 7.99219, + -17.72809 + ], + "color": 2, + "children": [ + 2, + 3, + 4 + ] + }, + { + "name": "bone175", + "origin": [ + 8, + 7.99219, + -17.72809 + ], + "color": 2, + "children": [ + 5, + 6, + 7, + 8 + ] + }, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22 + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/handgun_ammo_box.json b/src/main/resources/assets/superbwarfare/models/item/handgun_ammo_box.json new file mode 100644 index 000000000..22973f72c --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/handgun_ammo_box.json @@ -0,0 +1,7 @@ +{ + "parent": "superbwarfare:custom/handgunammobox", + "textures": { + "0": "superbwarfare:block/handgunammobox", + "particle": "superbwarfare:item/hk4163d" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/he_5_inches.json b/src/main/resources/assets/superbwarfare/models/item/he_5_inches.json new file mode 100644 index 000000000..24322f207 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/he_5_inches.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/shells/he_5_inches" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/he_bullet.json b/src/main/resources/assets/superbwarfare/models/item/he_bullet.json new file mode 100644 index 000000000..0f67c16c9 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/he_bullet.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/perk/he_bullet" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/head_seeker.json b/src/main/resources/assets/superbwarfare/models/item/head_seeker.json new file mode 100644 index 000000000..2e0a1b75f --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/head_seeker.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/perk/head_seeker" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/heal_clip.json b/src/main/resources/assets/superbwarfare/models/item/heal_clip.json new file mode 100644 index 000000000..b1f051c31 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/heal_clip.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/perk/heal_clip" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/hk4163d.json b/src/main/resources/assets/superbwarfare/models/item/hk4163d.json new file mode 100644 index 000000000..3b633914d --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/hk4163d.json @@ -0,0 +1,1488 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 32, + 32 + ], + "textures": { + "0": "superbwarfare:item/hk4163d", + "particle": "superbwarfare:item/hk4163d" + }, + "elements": [ + { + "from": [ + 7.25, + 5.75, + 6.5 + ], + "to": [ + 8.75, + 8, + 13.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 7, + 6.5 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 8.5, + 9.5, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 3.5, + 1 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 9, + 1, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 1, + 3.5, + 2 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 5.5, + 0, + 2 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 2, + 1, + 5.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 6.75, + 13.25 + ], + "to": [ + 8.75, + 8, + 20.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 7, + 6.5 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 6, + 11, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 4, + 10.5, + 4.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 7, + 11, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 6.5, + 11.5, + 7 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 5.5, + 2, + 2 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 2, + 3, + 5.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 3.75, + 19.25 + ], + "to": [ + 8.75, + 8, + 20.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 7, + 6.5 + ] + }, + "faces": { + "north": { + "uv": [ + 2, + 6.5, + 3, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 0, + 9.5, + 2 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 6.5, + 4, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 9, + 1.5, + 11 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 8, + 10, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 9.5, + 10, + 10 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 5.25, + 15.25 + ], + "to": [ + 8.75, + 6.75, + 20.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 7, + 6.5 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 2, + 10, + 3 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 5.5, + 2.5, + 6.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 3, + 10, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 5.5, + 5, + 6.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 8, + 5, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 2, + 6, + 4.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 5.25, + 15.5 + ], + "to": [ + 8.75, + 7, + 20.75 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 7.375, + 16.75 + ] + }, + "faces": { + "north": { + "uv": [ + 6, + 9, + 7, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 4.5, + 8.5, + 5.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 9, + 8, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 5.5, + 8.5, + 6.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 9, + 0, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 6.5, + 1, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 5.89011, + 14.78195 + ], + "to": [ + 8.75, + 7.14011, + 17.03195 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 8.01511, + 16.03195 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 10, + 11, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 0, + 11.5, + 0.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 0.5, + 11.5, + 1 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 1, + 11.5, + 1.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 8, + 9, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 0, + 9.5, + 1 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 4.5, + 6.5 + ], + "to": [ + 8.75, + 5.75, + 9 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 7, + 6.5 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 1.5, + 11.5, + 2 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 6, + 10, + 6.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 2, + 11.5, + 2.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 9, + 11, + 9.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 8.5, + 8, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 8.5, + 2, + 10 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 4.5, + 11 + ], + "to": [ + 8.75, + 5.75, + 12.75 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 7, + 11 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 2.5, + 11.5, + 3 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 3, + 11.5, + 3.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 3.5, + 11.5, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 4, + 11.5, + 4.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 2, + 9.5, + 1 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 9.5, + 8, + 10.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 0.92388, + 10.61732 + ], + "to": [ + 8.75, + 4.42388, + 12.36732 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 5.42388, + 10.61732 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 6.5, + 5, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 6.5, + 7, + 8.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 0, + 8, + 2 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 2, + 8, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 9, + 9.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 9.5, + 9, + 10.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 4.5, + 9 + ], + "to": [ + 8.75, + 4.75, + 11 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 7, + 6.5 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 10.5, + 9, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 8, + 11.5, + 8.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 8.5, + 11.5, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 10.5, + 10, + 11 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 11, + 0, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 10, + 1.5, + 11 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.45, + 0, + 6.4 + ], + "to": [ + 8.55, + 3.5, + 8.65 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 2.75, + 8.15 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 2, + 10.5, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 6.5, + 8, + 8.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 10, + 3, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 0, + 9, + 2 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 10, + 1.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 10.5, + 10, + 11.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.45, + 3.25157, + 6.64895 + ], + "to": [ + 8.55, + 6.75157, + 8.89895 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 6.00157, + 8.39895 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 10, + 5.5, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 2, + 9, + 4 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 10, + 6, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 8, + 6, + 10 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 11.5, + 10.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.5, + 11, + 0, + 12 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7, + 6, + 0.75 + ], + "to": [ + 9, + 8, + 6.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 7, + 6.5 + ] + }, + "faces": { + "north": { + "uv": [ + 6, + 10, + 7, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 0, + 7, + 1 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 10, + 8, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 1, + 7, + 2 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 5.5, + 4, + 2 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 2, + 5, + 5.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 6.5, + -1.25 + ], + "to": [ + 8.5, + 7.5, + 4 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 7, + 6.5 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 9, + 8.5, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 4.5, + 11.5, + 5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 8, + 9.5, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 5, + 11.5, + 5.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 11.5, + 3, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 8.5, + 3.5, + 11.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7, + 7.5, + 6.85 + ], + "to": [ + 9, + 8.75, + 9.35 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 7, + 6.5 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 11, + 4.5, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 11, + 5, + 12 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 5.5, + 11.5, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 11, + 6.5, + 12 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 11.5, + 9, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 9, + 11, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7, + 9.75, + 8.1 + ], + "to": [ + 9, + 10, + 9.35 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 7, + 6.5 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 11, + 4.5, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 11, + 5, + 12 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 5.5, + 11.5, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 11, + 6.5, + 12 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 11.5, + 9, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 9, + 11, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7, + 8.75, + 8.1 + ], + "to": [ + 7.25, + 9.75, + 9.35 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 7, + 6.5 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 11, + 4.5, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 11, + 5, + 12 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 5.5, + 11.5, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 11, + 6.5, + 12 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 11.5, + 9, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 9, + 11, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.75, + 8.75, + 8.1 + ], + "to": [ + 9, + 9.75, + 9.35 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 7, + 6.5 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 11, + 4.5, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 11, + 5, + 12 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 5.5, + 11.5, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 11, + 6.5, + 12 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 11.5, + 9, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 9, + 11, + 9.5 + ], + "texture": "#0" + } + } + } + ], + "gui_light": "front", + "display": { + "thirdperson_righthand": { + "translation": [ + -0.75, + 1.5, + -1.5 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + }, + "thirdperson_lefthand": { + "scale": [ + 0, + 0, + 0 + ] + }, + "ground": { + "translation": [ + 0, + 5.5, + 0 + ], + "scale": [ + 0.8, + 0.8, + 0.8 + ] + }, + "head": { + "translation": [ + 0, + 12.5, + -2.25 + ] + }, + "fixed": { + "rotation": [ + 90, + -45, + 90 + ], + "translation": [ + -1.5, + 1, + 0 + ], + "scale": [ + 0.9, + 0.9, + 0.9 + ] + } + }, + "groups": [ + { + "name": "m4", + "origin": [ + 8, + 7, + 6.5 + ], + "color": 0, + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17 + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/hk416_base.json b/src/main/resources/assets/superbwarfare/models/item/hk416_base.json new file mode 100644 index 000000000..538135c92 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/hk416_base.json @@ -0,0 +1,6 @@ +{ + "parent": "superbwarfare:displaysettings/hk416.item", + "textures": { + "layer0": "superbwarfare:item/hk416" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/hk416_icon.json b/src/main/resources/assets/superbwarfare/models/item/hk416_icon.json new file mode 100644 index 000000000..ecdc357e8 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/hk416_icon.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/hk416_a5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/hk_416.json b/src/main/resources/assets/superbwarfare/models/item/hk_416.json new file mode 100644 index 000000000..14d9be343 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/hk_416.json @@ -0,0 +1,27 @@ +{ + "loader": "forge:separate_transforms", + "gui_light": "front", + "base": { + "parent": "superbwarfare:item/hk416_base" + }, + "perspectives": { + "gui": { + "parent": "superbwarfare:item/hk416_icon" + }, + "thirdperson_righthand": { + "parent": "superbwarfare:item/hk4163d" + }, + "thirdperson_lefthand": { + "parent": "superbwarfare:item/hk4163d" + }, + "ground": { + "parent": "superbwarfare:item/hk4163d" + }, + "fixed": { + "parent": "superbwarfare:item/hk4163d" + }, + "head": { + "parent": "superbwarfare:item/hk4163d" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/homemade_shotgun.json b/src/main/resources/assets/superbwarfare/models/item/homemade_shotgun.json new file mode 100644 index 000000000..5ad7ee28f --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/homemade_shotgun.json @@ -0,0 +1,27 @@ +{ + "loader": "forge:separate_transforms", + "gui_light": "front", + "base": { + "parent": "superbwarfare:item/homemade_shotgun_base" + }, + "perspectives": { + "gui": { + "parent": "superbwarfare:item/homemade_shotgun3d" + }, + "thirdperson_righthand": { + "parent": "superbwarfare:item/homemade_shotgun3d" + }, + "thirdperson_lefthand": { + "parent": "superbwarfare:item/homemade_shotgun3d" + }, + "ground": { + "parent": "superbwarfare:item/homemade_shotgun3d" + }, + "fixed": { + "parent": "superbwarfare:item/homemade_shotgun3d" + }, + "head": { + "parent": "superbwarfare:item/homemade_shotgun3d" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/homemade_shotgun3d.json b/src/main/resources/assets/superbwarfare/models/item/homemade_shotgun3d.json new file mode 100644 index 000000000..08f1f7da1 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/homemade_shotgun3d.json @@ -0,0 +1,10927 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 64, + 64 + ], + "textures": { + "0": "superbwarfare:item/homemade_shotgun", + "particle": "superbwarfare:item/homemade_shotgun" + }, + "elements": [ + { + "from": [ + 7, + 3.5, + 4 + ], + "to": [ + 9, + 3.6, + 10.8 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.5, + 8.5 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 7, + 5.5, + 7.0625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 5, + 6.9375, + 5.0625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 5, + 7.5, + 5.0625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 5.25, + 6.9375, + 5.3125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 1.6875, + 1, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 0, + 1.5, + 1.6875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7, + 3, + 4 + ], + "to": [ + 9, + 3.5, + 11.8 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.5, + 8.5 + ] + }, + "faces": { + "north": { + "uv": [ + 6.25, + 4.25, + 6.75, + 4.375 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 0, + 3.9375, + 0.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 4.5, + 6.75, + 4.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 0.25, + 3.9375, + 0.375 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0.5, + 1.9375, + 0, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 0, + 0.5, + 1.9375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.34375, + 3.99219, + 10.875 + ], + "to": [ + 7.43359, + 4.08203, + 11.17969 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.06055, + 3.99414, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 4.75, + 9, + 4.8125, + 9.0625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 4.75, + 9.0625, + 4.8125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 9, + 5.0625, + 9.0625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 5, + 9.0625, + 5.0625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.3125, + 9.0625, + 5.25, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.0625, + 5.25, + 9, + 5.3125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.33089, + 3.99219, + 11.21072 + ], + "to": [ + 8.13949, + 4.08203, + 11.30057 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 7.48324, + 4.03711, + 11.25565 + ] + }, + "faces": { + "north": { + "uv": [ + 6.25, + 8, + 6.4375, + 8.0625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 9, + 5.5625, + 9.0625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 6.25, + 8.1875, + 6.3125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 5.5, + 9.0625, + 5.5625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.6875, + 8.0625, + 6.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.1875, + 6.5, + 8, + 6.5625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.9071, + 3.4939, + 11.85546 + ], + "to": [ + 9.5157, + 3.58374, + 11.9453 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 9.05945, + 3.53882, + 11.40038 + ] + }, + "faces": { + "north": { + "uv": [ + 6.75, + 8.5, + 6.875, + 8.5625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 9, + 5.8125, + 9.0625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 6.75, + 8.625, + 6.8125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 5.75, + 9.0625, + 5.8125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.125, + 8.5625, + 7, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.625, + 7, + 8.5, + 7.0625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.88672, + 3.93731, + 11.66161 + ], + "to": [ + 8.69532, + 4.02715, + 11.75145 + ], + "rotation": { + "angle": -22.5, + "axis": "z", + "origin": [ + 8.03907, + 3.98223, + 11.70653 + ] + }, + "faces": { + "north": { + "uv": [ + 6.75, + 8, + 6.9375, + 8.0625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 9, + 6.0625, + 9.0625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 6.75, + 8.1875, + 6.8125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 6, + 9.0625, + 6.0625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.1875, + 8.0625, + 7, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.1875, + 7, + 8, + 7.0625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.62817, + 3.68959, + 11.66161 + ], + "to": [ + 9.03677, + 3.77943, + 11.75145 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.78052, + 3.73451, + 11.70653 + ] + }, + "faces": { + "north": { + "uv": [ + 7.25, + 8.5, + 7.375, + 8.5625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 9, + 6.3125, + 9.0625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 7.25, + 8.625, + 7.3125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 6.25, + 9.0625, + 6.3125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.625, + 8.5625, + 7.5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.625, + 7.5, + 8.5, + 7.5625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.96038, + 3.68959, + 11.56704 + ], + "to": [ + 9.36898, + 3.77943, + 11.65688 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 9.11273, + 3.73451, + 11.61196 + ] + }, + "faces": { + "north": { + "uv": [ + 7.75, + 8.5, + 7.875, + 8.5625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 9, + 6.5625, + 9.0625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 7.75, + 8.625, + 7.8125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 6.5, + 9.0625, + 6.5625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.125, + 8.5625, + 8, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.625, + 8, + 8.5, + 8.0625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 9.23584, + 3.56871, + 10.46679 + ], + "to": [ + 9.32569, + 3.65855, + 11.47539 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 9.28076, + 3.61363, + 11.32304 + ] + }, + "faces": { + "north": { + "uv": [ + 6.75, + 9, + 6.8125, + 9.0625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 2.5, + 8, + 2.5625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 6.75, + 9.0625, + 6.8125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.75, + 7.75, + 3, + 7.8125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.8125, + 3, + 7.75, + 2.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.0625, + 7.75, + 3, + 8 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 9.18096, + 2.97641, + 10.16954 + ], + "to": [ + 9.27081, + 3.06625, + 10.77813 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 9.22588, + 3.02133, + 10.62579 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 9, + 7.0625, + 9.0625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 8.5, + 8.375, + 8.5625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 7, + 9.0625, + 7.0625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 8.25, + 8.625, + 8.3125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.5625, + 8.625, + 8.5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.0625, + 8.75, + 0, + 8.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 9.00294, + 2.92153, + 9.80727 + ], + "to": [ + 9.09279, + 3.01137, + 10.21587 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 9.04787, + 2.96645, + 10.06352 + ] + }, + "faces": { + "north": { + "uv": [ + 7.25, + 9, + 7.3125, + 9.0625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 0, + 8.875, + 0.0625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 7.25, + 9.0625, + 7.3125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.25, + 8.75, + 0.375, + 8.8125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.8125, + 0.375, + 8.75, + 0.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.5625, + 8.75, + 0.5, + 8.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.907, + 2.82005, + 8.77795 + ], + "to": [ + 8.99684, + 2.90989, + 9.88655 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 8.95192, + 2.86497, + 9.73225 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 9, + 7.5625, + 9.0625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 3, + 8, + 3.0625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 7.5, + 9.0625, + 7.5625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 7.75, + 3.5, + 7.8125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.8125, + 3.5, + 7.75, + 3.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5625, + 7.75, + 3.5, + 8 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 9.04408, + 3.8217, + 12.01847 + ], + "to": [ + 9.45267, + 3.91155, + 12.10832 + ], + "rotation": { + "angle": -22.5, + "axis": "z", + "origin": [ + 8.19642, + 3.86662, + 12.0634 + ] + }, + "faces": { + "north": { + "uv": [ + 8.75, + 0.5, + 8.875, + 0.5625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 9, + 7.8125, + 9.0625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0.75, + 8.75, + 0.875, + 8.8125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 7.75, + 9.0625, + 7.8125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.875, + 0.8125, + 8.75, + 0.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.125, + 8.75, + 1, + 8.8125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 9.28439, + 2.74686, + 11.86086 + ], + "to": [ + 9.37424, + 3.45545, + 11.9507 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 9.32932, + 3.25116, + 11.90578 + ] + }, + "faces": { + "north": { + "uv": [ + 7.25, + 8, + 7.3125, + 8.1875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 7.25, + 8.0625, + 7.4375 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 8, + 7.5625, + 8.1875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 7.5, + 8.0625, + 7.6875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.0625, + 9.0625, + 8, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.0625, + 8, + 9, + 8.0625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 9.28439, + 2.8628, + 11.07236 + ], + "to": [ + 9.37424, + 2.95264, + 11.58095 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 9.32932, + 2.90772, + 11.37665 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 9, + 8.3125, + 9.0625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 1, + 8.875, + 1.0625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 8.25, + 9.0625, + 8.3125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.25, + 8.75, + 1.375, + 8.8125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.8125, + 1.375, + 8.75, + 1.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5625, + 8.75, + 1.5, + 8.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 9.28439, + 2.78804, + 10.79651 + ], + "to": [ + 9.37424, + 2.87788, + 11.1051 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 9.32932, + 2.83296, + 10.9008 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 9, + 8.5625, + 9.0625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 8.5, + 9.0625, + 8.5625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 9, + 8.8125, + 9.0625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 8.75, + 9.0625, + 8.8125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.0625, + 9.0625, + 9, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.0625, + 9.25, + 0, + 9.3125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 9.15309, + 2.75154, + 10.50464 + ], + "to": [ + 9.24294, + 2.84139, + 10.91324 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 9.19801, + 2.79647, + 10.70894 + ] + }, + "faces": { + "north": { + "uv": [ + 9.25, + 0, + 9.3125, + 0.0625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 1.5, + 8.875, + 1.5625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0.25, + 9.25, + 0.3125, + 9.3125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 8.75, + 1.875, + 8.8125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.8125, + 1.875, + 8.75, + 1.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.0625, + 8.75, + 2, + 8.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.94019, + 2.75154, + 8.98601 + ], + "to": [ + 9.03003, + 2.84139, + 10.59461 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 8.98511, + 2.79647, + 10.39031 + ] + }, + "faces": { + "north": { + "uv": [ + 9.25, + 0.25, + 9.3125, + 0.3125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.25, + 7.25, + 0.625, + 7.3125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0.5, + 9.25, + 0.5625, + 9.3125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 0.25, + 7.625, + 0.3125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.3125, + 0.875, + 7.25, + 0.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.8125, + 7.25, + 0.75, + 7.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.56641, + 3.99219, + 10.875 + ], + "to": [ + 8.65625, + 4.08203, + 11.17969 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.06055, + 3.99414, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 9.25, + 0.5, + 9.3125, + 0.5625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.75, + 9.25, + 0.8125, + 9.3125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 0.75, + 9.3125, + 0.8125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 9.25, + 1.0625, + 9.3125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.3125, + 1.0625, + 9.25, + 1 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.3125, + 9.25, + 1.25, + 9.3125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.56641, + 6.05086, + 11.95961 + ], + "to": [ + 8.65625, + 6.14071, + 12.66429 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 8.06055, + 6.05282, + 9.08461 + ] + }, + "faces": { + "north": { + "uv": [ + 9.25, + 1.25, + 9.3125, + 1.3125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 8, + 7.9375, + 8.0625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 9.25, + 1.5625, + 9.3125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 7.75, + 8.1875, + 7.8125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.0625, + 8.1875, + 8, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.0625, + 8.25, + 0, + 8.4375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.85, + 3.55, + 4 + ], + "to": [ + 8.15, + 4.43281, + 10 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.5, + 8.5 + ] + }, + "faces": { + "north": { + "uv": [ + 7.75, + 3.5, + 7.8125, + 3.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 1.75, + 2.5, + 2 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 7.75, + 3.8125, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 2, + 1.5, + 2.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.8125, + 7, + 2.75, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.3125, + 5.5, + 5.25, + 7 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.45, + 1.25, + 10.25 + ], + "to": [ + 8.55, + 2.83047, + 11.5 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 2.25, + 10.625 + ] + }, + "faces": { + "north": { + "uv": [ + 5.5, + 3.5, + 5.75, + 3.875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 2.25, + 0.3125, + 2.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 5.5, + 5.75, + 5.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.5, + 2.25, + 0.8125, + 2.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 6.3125, + 3.5, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 4, + 6, + 4.3125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.45, + -0.08903, + 10.46608 + ], + "to": [ + 8.55, + 1.66097, + 11.81608 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 0.91097, + 10.94108 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 3.5, + 5.25, + 3.9375 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 2, + 1.8125, + 2.4375 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 3.5, + 5.5, + 3.9375 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 2, + 2.3125, + 2.4375 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 6.3125, + 5.5, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 5.5, + 6, + 5.8125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 2.51097, + 9.71608 + ], + "to": [ + 8.75, + 3.16097, + 11.11608 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 0.91097, + 10.94108 + ] + }, + "faces": { + "north": { + "uv": [ + 6, + 1.5, + 6.375, + 1.6875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 6, + 6.125, + 6.1875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 0, + 6.625, + 0.1875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 0.25, + 6.625, + 0.4375 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.375, + 0.875, + 2, + 0.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.375, + 1, + 2, + 1.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 2.21097, + 8.46608 + ], + "to": [ + 8.5, + 3.16097, + 9.86608 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 2.68597, + 9.16608 + ] + }, + "faces": { + "north": { + "uv": [ + 6.25, + 5.5, + 6.5, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 3.5, + 6.125, + 3.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 6.25, + 6, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 3.75, + 6.125, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 4.375, + 5.75, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 5.5, + 5.75, + 5.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 2.46097, + 4.74733 + ], + "to": [ + 8.5, + 3.16097, + 6.23717 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 2.68597, + 9.16608 + ] + }, + "faces": { + "north": { + "uv": [ + 6.5, + 1.75, + 6.75, + 1.9375 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 6.25, + 1.375, + 6.4375 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 6.5, + 3.25, + 6.6875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 3.5, + 6.625, + 3.6875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 0.375, + 6, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.75, + 6, + 2.5, + 6.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 2.46097, + 6.49733 + ], + "to": [ + 8.5, + 3.16097, + 7.98717 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 2.68597, + 9.16608 + ] + }, + "faces": { + "north": { + "uv": [ + 3.25, + 6.5, + 3.5, + 6.6875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 3.75, + 6.625, + 3.9375 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 6.5, + 3.75, + 6.6875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 4, + 6.625, + 4.1875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 6.375, + 3, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 6, + 3.25, + 6.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.9, + 1.96097, + 8.76608 + ], + "to": [ + 8.1, + 2.21097, + 8.96608 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 2.68597, + 9.16608 + ] + }, + "faces": { + "north": { + "uv": [ + 9.25, + 1.5, + 9.3125, + 1.5625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 9.25, + 1.8125, + 9.3125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 1.75, + 9.3125, + 1.8125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 9.25, + 2.0625, + 9.3125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.3125, + 2.0625, + 9.25, + 2 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.3125, + 9.25, + 2.25, + 9.3125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.9, + 1.96097, + 9.41608 + ], + "to": [ + 8.1, + 2.21097, + 9.61608 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 2.68597, + 9.16608 + ] + }, + "faces": { + "north": { + "uv": [ + 9.25, + 2.25, + 9.3125, + 2.3125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 9.25, + 2.5625, + 9.3125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 2.5, + 9.3125, + 2.5625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.75, + 9.25, + 2.8125, + 9.3125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.3125, + 2.8125, + 9.25, + 2.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.0625, + 9.25, + 3, + 9.3125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.14006, + 3.83712, + 3.44366 + ], + "to": [ + 8.28949, + 4.21071, + 10.84984 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.58836, + 4.02391, + 8.08394 + ] + }, + "faces": { + "north": { + "uv": [ + 9.25, + 3, + 9.3125, + 3.0625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 1.5, + 3.875, + 1.5625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 9.25, + 3.3125, + 9.3125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 0.5, + 4.375, + 0.5625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.0625, + 4.125, + 1, + 2.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.3125, + 2.25, + 1.25, + 4.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.40235, + 4.32466, + 3.44366 + ], + "to": [ + 8.77594, + 4.4741, + 10.84984 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 8.58914, + 4.02579, + 8.08394 + ] + }, + "faces": { + "north": { + "uv": [ + 9.25, + 3.25, + 9.3125, + 3.3125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 0.75, + 4.375, + 0.8125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 9.25, + 3.5625, + 9.3125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 1, + 4.375, + 1.0625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.5625, + 4.375, + 1.5, + 2.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.8125, + 2.5, + 1.75, + 4.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.40423, + 4.32544, + 3.44366 + ], + "to": [ + 8.77781, + 4.47487, + 10.84984 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.59102, + 4.02657, + 8.08394 + ] + }, + "faces": { + "north": { + "uv": [ + 9.25, + 3.5, + 9.3125, + 3.5625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 1.25, + 4.375, + 1.3125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 9.25, + 3.8125, + 9.3125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 1.75, + 4.375, + 1.8125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.0625, + 4.375, + 2, + 2.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5625, + 2, + 2.5, + 3.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.89177, + 3.839, + 3.44366 + ], + "to": [ + 9.0412, + 4.21258, + 10.84984 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 8.5929, + 4.02579, + 8.08394 + ] + }, + "faces": { + "north": { + "uv": [ + 9.25, + 3.75, + 9.3125, + 3.8125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 2, + 4.625, + 2.0625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 9.25, + 4.0625, + 9.3125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.75, + 2.25, + 4.625, + 2.3125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.3125, + 4.375, + 2.25, + 2.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.0625, + 2.75, + 0, + 4.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.89254, + 3.83712, + 3.44366 + ], + "to": [ + 9.04198, + 4.21071, + 10.84984 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.59367, + 4.02391, + 8.08394 + ] + }, + "faces": { + "north": { + "uv": [ + 9.25, + 4, + 9.3125, + 4.0625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 2.5, + 4.625, + 2.5625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 9.25, + 4.3125, + 9.3125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.75, + 2.75, + 4.625, + 2.8125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0.3125, + 4.625, + 0.25, + 2.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.5625, + 2.75, + 0.5, + 4.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.4061, + 3.57373, + 3.44366 + ], + "to": [ + 8.77969, + 3.72317, + 10.84984 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 8.5929, + 4.02204, + 8.08394 + ] + }, + "faces": { + "north": { + "uv": [ + 9.25, + 4.25, + 9.3125, + 4.3125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 3, + 4.625, + 3.0625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 9.25, + 4.5625, + 9.3125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.75, + 3.25, + 4.625, + 3.3125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0.8125, + 4.625, + 0.75, + 2.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.8125, + 3.5, + 2.75, + 5.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.40423, + 3.57295, + 3.44366 + ], + "to": [ + 8.77781, + 3.72239, + 10.84984 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.59102, + 4.02126, + 8.08394 + ] + }, + "faces": { + "north": { + "uv": [ + 9.25, + 4.5, + 9.3125, + 4.5625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 3.5, + 4.875, + 3.5625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 9.25, + 4.8125, + 9.3125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 3.75, + 4.875, + 3.8125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.5625, + 5.875, + 2.5, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.0625, + 4, + 3, + 5.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.14084, + 3.83524, + 3.44366 + ], + "to": [ + 8.29027, + 4.20883, + 10.84984 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 8.58914, + 4.02204, + 8.08394 + ] + }, + "faces": { + "north": { + "uv": [ + 9.25, + 4.75, + 9.3125, + 4.8125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 0, + 5.875, + 0.0625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 9.25, + 5.0625, + 9.3125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 0.25, + 5.875, + 0.3125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.3125, + 5.875, + 3.25, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5625, + 4, + 3.5, + 5.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.71051, + 3.83712, + 3.44366 + ], + "to": [ + 7.85994, + 4.21071, + 10.84984 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 7.41164, + 4.02391, + 8.08394 + ] + }, + "faces": { + "north": { + "uv": [ + 9.25, + 5, + 9.3125, + 5.0625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 1.5, + 5.875, + 1.5625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 9.25, + 5.3125, + 9.3125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 4, + 5.625, + 4.0625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.0625, + 6.125, + 1, + 4.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.3125, + 4.25, + 1.25, + 6.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.22406, + 4.32466, + 3.44366 + ], + "to": [ + 7.59765, + 4.4741, + 10.84984 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 7.41086, + 4.02579, + 8.08394 + ] + }, + "faces": { + "north": { + "uv": [ + 9.25, + 5.25, + 9.3125, + 5.3125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 4.25, + 5.625, + 4.3125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 9.25, + 5.5625, + 9.3125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 0.5, + 6.375, + 0.5625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.5625, + 6.375, + 1.5, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.8125, + 4.5, + 1.75, + 6.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.22219, + 4.32544, + 3.44366 + ], + "to": [ + 7.59577, + 4.47487, + 10.84984 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 7.40898, + 4.02657, + 8.08394 + ] + }, + "faces": { + "north": { + "uv": [ + 9.25, + 5.5, + 9.3125, + 5.5625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 0.75, + 6.375, + 0.8125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 9.25, + 5.8125, + 9.3125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 1, + 6.375, + 1.0625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.0625, + 6.375, + 2, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.3125, + 4.5, + 2.25, + 6.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.9588, + 3.839, + 3.44366 + ], + "to": [ + 7.10823, + 4.21258, + 10.84984 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 7.4071, + 4.02579, + 8.08394 + ] + }, + "faces": { + "north": { + "uv": [ + 9.25, + 5.75, + 9.3125, + 5.8125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 1.25, + 6.375, + 1.3125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 9.25, + 6.0625, + 9.3125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 1.75, + 6.375, + 1.8125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.8125, + 6.375, + 3.75, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.0625, + 4.5, + 4, + 6.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.95802, + 3.83712, + 3.44366 + ], + "to": [ + 7.10746, + 4.21071, + 10.84984 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 7.40633, + 4.02391, + 8.08394 + ] + }, + "faces": { + "north": { + "uv": [ + 9.25, + 6, + 9.3125, + 6.0625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.25, + 4.5, + 6.125, + 4.5625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 9.25, + 6.3125, + 9.3125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 2, + 6.625, + 2.0625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0.0625, + 6.625, + 0, + 4.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.3125, + 4.75, + 0.25, + 6.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.22031, + 3.57373, + 3.44366 + ], + "to": [ + 7.5939, + 3.72317, + 10.84984 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 7.4071, + 4.02204, + 8.08394 + ] + }, + "faces": { + "north": { + "uv": [ + 9.25, + 6.25, + 9.3125, + 6.3125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 2.25, + 6.625, + 2.3125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 9.25, + 6.5625, + 9.3125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 2.5, + 6.625, + 2.5625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0.5625, + 6.625, + 0.5, + 4.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.8125, + 4.75, + 0.75, + 6.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.22219, + 3.57295, + 3.44366 + ], + "to": [ + 7.59577, + 3.72239, + 10.84984 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.40898, + 4.02126, + 8.08394 + ] + }, + "faces": { + "north": { + "uv": [ + 9.25, + 6.5, + 9.3125, + 6.5625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 2.75, + 6.625, + 2.8125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 9.25, + 6.8125, + 9.3125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 3, + 6.625, + 3.0625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.3125, + 6.625, + 4.25, + 4.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5625, + 4.75, + 4.5, + 6.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.70973, + 3.83524, + 3.44366 + ], + "to": [ + 7.85916, + 4.20883, + 10.84984 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 7.41086, + 4.02204, + 8.08394 + ] + }, + "faces": { + "north": { + "uv": [ + 9.25, + 6.75, + 9.3125, + 6.8125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 3.25, + 6.625, + 3.3125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 9.25, + 7.0625, + 9.3125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 4.75, + 6.625, + 4.8125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.8125, + 6.875, + 4.75, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.0625, + 5, + 5, + 6.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.23078, + 3.82204, + 10.11484 + ], + "to": [ + 7.89068, + 4.22177, + 10.88484 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 7.41099, + 4.0219, + 7.92532 + ] + }, + "faces": { + "north": { + "uv": [ + 1, + 7.25, + 1.1875, + 7.375 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 1, + 7.4375, + 1.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1.25, + 7.25, + 1.4375, + 7.375 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 1.25, + 7.4375, + 1.375 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.4375, + 6.9375, + 4.25, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.9375, + 4.25, + 6.75, + 4.4375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.23161, + 3.82404, + 10.11484 + ], + "to": [ + 7.89151, + 4.22378, + 10.88484 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 7.41182, + 4.02391, + 7.92532 + ] + }, + "faces": { + "north": { + "uv": [ + 1.5, + 7.25, + 1.6875, + 7.375 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 1.5, + 7.4375, + 1.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 7.25, + 1.9375, + 7.375 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 1.75, + 7.4375, + 1.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.6875, + 6.9375, + 4.5, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.9375, + 4.5, + 6.75, + 4.6875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.21112, + 3.84571, + 10.11484 + ], + "to": [ + 7.61086, + 4.50561, + 10.88484 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 7.41099, + 4.02592, + 7.92532 + ] + }, + "faces": { + "north": { + "uv": [ + 2, + 7.25, + 2.125, + 7.4375 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 4.75, + 6.9375, + 4.9375 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 2, + 7.375, + 2.1875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 6.75, + 5.6875, + 6.9375 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.375, + 7.4375, + 2.25, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.375, + 2.25, + 7.25, + 2.4375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.20911, + 3.84655, + 10.11484 + ], + "to": [ + 7.60885, + 4.50644, + 10.88484 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 7.40898, + 4.02675, + 7.92532 + ] + }, + "faces": { + "north": { + "uv": [ + 2.5, + 7.25, + 2.625, + 7.4375 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 5.5, + 6.9375, + 5.6875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 2.5, + 7.375, + 2.6875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 6.75, + 5.9375, + 6.9375 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.875, + 7.4375, + 2.75, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.375, + 2.75, + 7.25, + 2.9375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.92729, + 3.82605, + 10.11484 + ], + "to": [ + 7.58718, + 4.22579, + 10.88484 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 7.40697, + 4.02592, + 7.92532 + ] + }, + "faces": { + "north": { + "uv": [ + 3, + 7.25, + 3.1875, + 7.375 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 3, + 7.4375, + 3.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 7.25, + 3.4375, + 7.375 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 3.25, + 7.4375, + 3.375 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.9375, + 5.9375, + 6.75, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.1875, + 6.75, + 6, + 6.9375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.92645, + 3.82404, + 10.11484 + ], + "to": [ + 7.58635, + 4.22378, + 10.88484 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 7.40614, + 4.02391, + 7.92532 + ] + }, + "faces": { + "north": { + "uv": [ + 3.5, + 7.25, + 3.6875, + 7.375 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 3.5, + 7.4375, + 3.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 7.25, + 3.9375, + 7.375 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 3.75, + 7.4375, + 3.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.9375, + 6.1875, + 6.75, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.4375, + 6.75, + 6.25, + 6.9375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.2071, + 3.54222, + 10.11484 + ], + "to": [ + 7.60684, + 4.20211, + 10.88484 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 7.40697, + 4.0219, + 7.92532 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 7.25, + 4.125, + 7.4375 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 6.25, + 6.9375, + 6.4375 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 4, + 7.375, + 4.1875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 6.75, + 6.6875, + 6.9375 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.375, + 7.4375, + 4.25, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.375, + 4.25, + 7.25, + 4.4375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.20911, + 3.54139, + 10.11484 + ], + "to": [ + 7.60885, + 4.20128, + 10.88484 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.40898, + 4.02107, + 7.92532 + ] + }, + "faces": { + "north": { + "uv": [ + 4.5, + 7.25, + 4.625, + 7.4375 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 6.5, + 6.9375, + 6.6875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 4.5, + 7.375, + 4.6875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 6.75, + 6.9375, + 6.9375 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.875, + 7.4375, + 4.75, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.375, + 4.75, + 7.25, + 4.9375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.10932, + 3.82204, + 10.11484 + ], + "to": [ + 8.76922, + 4.22177, + 10.88484 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 8.58901, + 4.0219, + 7.92532 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 7.25, + 5.1875, + 7.375 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 7.25, + 5.4375, + 7.375 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 5.25, + 7.4375, + 5.375 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 7.25, + 5.6875, + 7.375 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0.1875, + 7.1875, + 0, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.1875, + 0, + 7, + 0.1875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.10849, + 3.82404, + 10.11484 + ], + "to": [ + 8.76839, + 4.22378, + 10.88484 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.58818, + 4.02391, + 7.92532 + ] + }, + "faces": { + "north": { + "uv": [ + 7.25, + 5.5, + 7.4375, + 5.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 7.25, + 5.9375, + 7.375 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 5.75, + 7.4375, + 5.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 7.25, + 6.1875, + 7.375 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0.4375, + 7.1875, + 0.25, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.1875, + 0.25, + 7, + 0.4375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.38914, + 3.84571, + 10.11484 + ], + "to": [ + 8.78888, + 4.50561, + 10.88484 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 8.58901, + 4.02592, + 7.92532 + ] + }, + "faces": { + "north": { + "uv": [ + 7.25, + 6, + 7.375, + 6.1875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.5, + 7, + 0.6875, + 7.1875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 7.25, + 6.375, + 7.4375 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 0.5, + 7.1875, + 0.6875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.375, + 6.4375, + 7.25, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.625, + 7.25, + 6.5, + 7.4375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.39115, + 3.84655, + 10.11484 + ], + "to": [ + 8.79089, + 4.50644, + 10.88484 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.59102, + 4.02675, + 7.92532 + ] + }, + "faces": { + "north": { + "uv": [ + 7.25, + 6.5, + 7.375, + 6.6875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.75, + 7, + 0.9375, + 7.1875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 7.25, + 6.875, + 7.4375 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 0.75, + 7.1875, + 0.9375 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.375, + 6.9375, + 7.25, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.125, + 7.25, + 7, + 7.4375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.41282, + 3.82605, + 10.11484 + ], + "to": [ + 9.07271, + 4.22579, + 10.88484 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 8.59303, + 4.02592, + 7.92532 + ] + }, + "faces": { + "north": { + "uv": [ + 7.25, + 7, + 7.4375, + 7.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 7.25, + 7.4375, + 7.375 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 7.5, + 0.1875, + 7.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 0, + 7.6875, + 0.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.1875, + 7.1875, + 1, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.1875, + 1, + 7, + 1.1875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.41365, + 3.82404, + 10.11484 + ], + "to": [ + 9.07355, + 4.22378, + 10.88484 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.59386, + 4.02391, + 7.92532 + ] + }, + "faces": { + "north": { + "uv": [ + 0.25, + 7.5, + 0.4375, + 7.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.5, + 7.5, + 0.6875, + 7.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 0.5, + 7.6875, + 0.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 0.75, + 7.6875, + 0.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.4375, + 7.1875, + 1.25, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.1875, + 1.25, + 7, + 1.4375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.39316, + 3.54222, + 10.11484 + ], + "to": [ + 8.7929, + 4.20211, + 10.88484 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 8.59303, + 4.0219, + 7.92532 + ] + }, + "faces": { + "north": { + "uv": [ + 1, + 7.5, + 1.125, + 7.6875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 7, + 1.6875, + 7.1875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 1, + 7.625, + 1.1875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 1.5, + 7.1875, + 1.6875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.375, + 7.6875, + 1.25, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.625, + 1.25, + 7.5, + 1.4375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.39115, + 3.54139, + 10.11484 + ], + "to": [ + 8.79089, + 4.20128, + 10.88484 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.59102, + 4.02107, + 7.92532 + ] + }, + "faces": { + "north": { + "uv": [ + 1.5, + 7.5, + 1.625, + 7.6875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 7, + 1.9375, + 7.1875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 1.5, + 7.625, + 1.6875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 1.75, + 7.1875, + 1.9375 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.875, + 7.6875, + 1.75, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.625, + 1.75, + 7.5, + 1.9375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.68254, + 3.99462, + 4.05 + ], + "to": [ + 6.73254, + 4.09462, + 4.71875 + ], + "rotation": { + "angle": 22.5, + "axis": "z", + "origin": [ + 7.73254, + 4.49462, + 8.05 + ] + }, + "faces": { + "north": { + "uv": [ + 9.25, + 7, + 9.3125, + 7.0625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 0, + 8.4375, + 0.0625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 9.25, + 7.3125, + 9.3125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.25, + 8.25, + 0.4375, + 8.3125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.3125, + 0.4375, + 8.25, + 0.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.5625, + 8.25, + 0.5, + 8.4375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.95, + 2.96484, + 4.05 + ], + "to": [ + 7, + 3.65, + 4.71875 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.5, + 8.05 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 0.5, + 8.3125, + 0.6875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 2, + 7.1875, + 2.1875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0.75, + 8.25, + 0.8125, + 8.4375 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 7, + 2.4375, + 7.1875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.3125, + 0.9375, + 8.25, + 0.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.0625, + 8.25, + 1, + 8.4375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.95, + 2.96484, + 4.05 + ], + "to": [ + 8.01328, + 3.01484, + 4.71875 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 7.1, + 5.01484, + 8.05 + ] + }, + "faces": { + "north": { + "uv": [ + 7.75, + 3.75, + 8, + 3.8125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 1, + 8.4375, + 1.0625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 7.75, + 4.25, + 7.8125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.25, + 8.25, + 1.4375, + 8.3125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 6.6875, + 3.75, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 6.5, + 4, + 6.6875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.1912, + 4.45595, + 4.05 + ], + "to": [ + 8.05448, + 4.50595, + 4.71875 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 7.3412, + 4.25595, + 8.05 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 1.25, + 8.4375, + 1.3125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 8.25, + 1.6875, + 8.3125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 1.5, + 8.4375, + 1.5625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 8.25, + 1.9375, + 8.3125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.6875, + 7.1875, + 2.5, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.9375, + 7, + 2.75, + 7.1875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.91554, + 3.72325, + 4.05 + ], + "to": [ + 6.96554, + 4.23029, + 4.71875 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.96554, + 4.22325, + 8.05 + ] + }, + "faces": { + "north": { + "uv": [ + 8.75, + 2, + 8.8125, + 2.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 7.5, + 2.1875, + 7.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2.25, + 8.75, + 2.3125, + 8.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 2, + 7.6875, + 2.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.3125, + 1.9375, + 8.25, + 1.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.0625, + 8.25, + 2, + 8.4375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.96155, + 3.34138, + 4.05 + ], + "to": [ + 7.01155, + 3.73122, + 4.71875 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.01155, + 3.84138, + 8.05 + ] + }, + "faces": { + "north": { + "uv": [ + 8.75, + 2.25, + 8.8125, + 2.375 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 7.5, + 2.4375, + 7.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 8.75, + 2.5625, + 8.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 2.25, + 7.6875, + 2.375 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.3125, + 2.1875, + 8.25, + 2 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.3125, + 8.25, + 2.25, + 8.4375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 9.26746, + 3.99462, + 4.05 + ], + "to": [ + 9.31746, + 4.09462, + 4.71875 + ], + "rotation": { + "angle": -22.5, + "axis": "z", + "origin": [ + 8.26746, + 4.49462, + 8.05 + ] + }, + "faces": { + "north": { + "uv": [ + 9.25, + 7.25, + 9.3125, + 7.3125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 2.25, + 8.4375, + 2.3125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 9.25, + 7.5625, + 9.3125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 8.25, + 2.6875, + 8.3125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.3125, + 2.6875, + 8.25, + 2.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.8125, + 8.25, + 2.75, + 8.4375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 9, + 2.96484, + 4.05 + ], + "to": [ + 9.05, + 3.65, + 4.71875 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.5, + 8.05 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 2.75, + 8.3125, + 2.9375 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 7, + 3.1875, + 7.1875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 8.25, + 3.0625, + 8.4375 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 3, + 7.1875, + 3.1875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.3125, + 3.1875, + 8.25, + 3 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.3125, + 8.25, + 3.25, + 8.4375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.98672, + 2.96484, + 4.05 + ], + "to": [ + 9.05, + 3.01484, + 4.71875 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.9, + 5.01484, + 8.05 + ] + }, + "faces": { + "north": { + "uv": [ + 7.75, + 4, + 8, + 4.0625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 3.25, + 8.4375, + 3.3125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 7.75, + 4.5, + 7.8125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 8.25, + 3.6875, + 8.3125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 6.6875, + 5.5, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 5.5, + 6.5, + 5.6875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.94552, + 4.45595, + 4.05 + ], + "to": [ + 8.8088, + 4.50595, + 4.71875 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.6588, + 4.25595, + 8.05 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 3.5, + 8.4375, + 3.5625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 8.25, + 3.9375, + 8.3125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 3.75, + 8.4375, + 3.8125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 8.25, + 4.1875, + 8.3125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.4375, + 7.1875, + 3.25, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.1875, + 3.25, + 7, + 3.4375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 9.03446, + 3.72325, + 4.05 + ], + "to": [ + 9.08446, + 4.23029, + 4.71875 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.03446, + 4.22325, + 8.05 + ] + }, + "faces": { + "north": { + "uv": [ + 8.75, + 2.5, + 8.8125, + 2.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 7.5, + 2.6875, + 7.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2.75, + 8.75, + 2.8125, + 8.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 2.5, + 7.6875, + 2.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.3125, + 4.1875, + 8.25, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.3125, + 8.25, + 4.25, + 8.4375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.98845, + 3.34138, + 4.05 + ], + "to": [ + 9.03845, + 3.73122, + 4.71875 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.98845, + 3.84138, + 8.05 + ] + }, + "faces": { + "north": { + "uv": [ + 8.75, + 2.75, + 8.8125, + 2.875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 7.5, + 2.9375, + 7.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 8.75, + 3.0625, + 8.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 2.75, + 7.6875, + 2.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.3125, + 4.4375, + 8.25, + 4.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5625, + 8.25, + 4.5, + 8.4375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.68254, + 3.99462, + 8.35078 + ], + "to": [ + 6.73254, + 4.09462, + 8.96484 + ], + "rotation": { + "angle": 22.5, + "axis": "z", + "origin": [ + 7.73254, + 4.49462, + 12.16328 + ] + }, + "faces": { + "north": { + "uv": [ + 9.25, + 7.5, + 9.3125, + 7.5625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 3, + 8.875, + 3.0625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 9.25, + 7.8125, + 9.3125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 8.75, + 3.375, + 8.8125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.8125, + 3.375, + 8.75, + 3.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5625, + 8.75, + 3.5, + 8.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.95, + 2.96484, + 8.35078 + ], + "to": [ + 7, + 3.65, + 8.96484 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.5, + 12.16328 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 4.5, + 8.3125, + 4.6875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 7.5, + 3.125, + 7.6875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 8.25, + 4.8125, + 8.4375 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 3, + 7.625, + 3.1875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.8125, + 3.625, + 8.75, + 3.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.8125, + 8.75, + 3.75, + 8.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.95, + 2.96484, + 8.35078 + ], + "to": [ + 8.01328, + 3.01484, + 8.96484 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 7.1, + 5.01484, + 12.16328 + ] + }, + "faces": { + "north": { + "uv": [ + 7.75, + 4.25, + 8, + 4.3125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 3.75, + 8.875, + 3.8125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 7.75, + 4.75, + 7.8125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 8.75, + 4.125, + 8.8125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 5.375, + 7, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 7, + 5.5, + 7.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.1912, + 4.45595, + 8.35078 + ], + "to": [ + 8.05448, + 4.50595, + 8.96484 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 7.3412, + 4.25595, + 12.16328 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 4.75, + 8.4375, + 4.8125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 4, + 8.875, + 4.0625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 8.25, + 5.1875, + 8.3125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 8.75, + 4.375, + 8.8125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.4375, + 7.625, + 3.25, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.6875, + 3.25, + 7.5, + 3.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.91554, + 3.72325, + 8.35078 + ], + "to": [ + 6.96554, + 4.23029, + 8.96484 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.96554, + 4.22325, + 12.16328 + ] + }, + "faces": { + "north": { + "uv": [ + 8.75, + 4.25, + 8.8125, + 4.375 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 4.5, + 7.875, + 4.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 8.75, + 4.5625, + 8.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 7.75, + 4.875, + 7.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.8125, + 4.625, + 8.75, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.8125, + 8.75, + 4.75, + 8.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.96155, + 3.34138, + 8.35078 + ], + "to": [ + 7.01155, + 3.73122, + 8.96484 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.01155, + 3.84138, + 12.16328 + ] + }, + "faces": { + "north": { + "uv": [ + 8.75, + 4.75, + 8.8125, + 4.875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 4.75, + 7.875, + 4.875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 8.75, + 5.0625, + 8.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 7.75, + 5.125, + 7.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.8125, + 5.125, + 8.75, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.3125, + 8.75, + 5.25, + 8.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 9.26746, + 3.99462, + 8.35078 + ], + "to": [ + 9.31746, + 4.09462, + 8.96484 + ], + "rotation": { + "angle": -22.5, + "axis": "z", + "origin": [ + 8.26746, + 4.49462, + 12.16328 + ] + }, + "faces": { + "north": { + "uv": [ + 9.25, + 7.75, + 9.3125, + 7.8125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 5.25, + 8.875, + 5.3125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 9.25, + 8.0625, + 9.3125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 8.75, + 5.625, + 8.8125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.8125, + 5.625, + 8.75, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.8125, + 8.75, + 5.75, + 8.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 9, + 2.96484, + 8.35078 + ], + "to": [ + 9.05, + 3.65, + 8.96484 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.5, + 12.16328 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 5, + 8.3125, + 5.1875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 7.5, + 3.625, + 7.6875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 8.25, + 5.3125, + 8.4375 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 3.5, + 7.625, + 3.6875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.8125, + 5.875, + 8.75, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.0625, + 8.75, + 6, + 8.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.98672, + 2.96484, + 8.35078 + ], + "to": [ + 9.05, + 3.01484, + 8.96484 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.9, + 5.01484, + 12.16328 + ] + }, + "faces": { + "north": { + "uv": [ + 5.25, + 7.75, + 5.5, + 7.8125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 6, + 8.875, + 6.0625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 5.25, + 8, + 5.3125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 8.75, + 6.375, + 8.8125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 5.625, + 7, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 7, + 5.75, + 7.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.94552, + 4.45595, + 8.35078 + ], + "to": [ + 8.8088, + 4.50595, + 8.96484 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.6588, + 4.25595, + 12.16328 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 5.25, + 8.4375, + 5.3125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 6.25, + 8.875, + 6.3125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 8.25, + 5.6875, + 8.3125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 8.75, + 6.625, + 8.8125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.9375, + 7.625, + 3.75, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.6875, + 3.75, + 7.5, + 3.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 9.03446, + 3.72325, + 8.35078 + ], + "to": [ + 9.08446, + 4.23029, + 8.96484 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.03446, + 4.22325, + 12.16328 + ] + }, + "faces": { + "north": { + "uv": [ + 8.75, + 6.5, + 8.8125, + 6.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 5.5, + 7.875, + 5.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 8.75, + 6.8125, + 8.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 5.75, + 7.875, + 5.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.8125, + 6.875, + 8.75, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.0625, + 8.75, + 7, + 8.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.98845, + 3.34138, + 8.35078 + ], + "to": [ + 9.03845, + 3.73122, + 8.96484 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.98845, + 3.84138, + 12.16328 + ] + }, + "faces": { + "north": { + "uv": [ + 8.75, + 7, + 8.8125, + 7.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 6, + 7.875, + 6.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 8.75, + 7.3125, + 8.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 7.75, + 6.625, + 7.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.8125, + 7.375, + 8.75, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5625, + 8.75, + 7.5, + 8.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.68254, + 3.99462, + 6.37031 + ], + "to": [ + 6.73254, + 4.09462, + 6.64063 + ], + "rotation": { + "angle": 22.5, + "axis": "z", + "origin": [ + 7.73254, + 4.49462, + 10.18281 + ] + }, + "faces": { + "north": { + "uv": [ + 9.25, + 8, + 9.3125, + 8.0625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 9.25, + 8.3125, + 9.3125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.25, + 8.25, + 9.3125, + 8.3125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 9.25, + 8.5625, + 9.3125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.3125, + 8.5625, + 9.25, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.8125, + 9.25, + 8.75, + 9.3125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.95, + 2.96484, + 6.37031 + ], + "to": [ + 7, + 3.65, + 6.64063 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.5, + 10.18281 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 5.5, + 8.3125, + 5.6875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 8.25, + 5.8125, + 8.4375 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 5.75, + 8.3125, + 5.9375 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 8.25, + 6.0625, + 8.4375 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.3125, + 8.8125, + 9.25, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.0625, + 9.25, + 9, + 9.3125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.95, + 2.96484, + 6.37031 + ], + "to": [ + 8.01328, + 3.01484, + 6.64063 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 7.1, + 5.01484, + 10.18281 + ] + }, + "faces": { + "north": { + "uv": [ + 6.75, + 7.75, + 7, + 7.8125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.25, + 9, + 9.3125, + 9.0625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 7, + 8, + 7.0625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 9.25, + 9.3125, + 9.3125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 7.3125, + 7.75, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 7.5, + 7.75, + 7.5625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.1912, + 4.45595, + 6.37031 + ], + "to": [ + 8.05448, + 4.50595, + 6.64063 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 7.3412, + 4.25595, + 10.18281 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 6, + 8.4375, + 6.0625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 9.5, + 0.0625, + 9.5625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 8.25, + 6.4375, + 8.3125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 0, + 9.5625, + 0.0625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.4375, + 6.3125, + 8.25, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.6875, + 8.25, + 6.5, + 8.3125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.91554, + 3.72325, + 6.37031 + ], + "to": [ + 6.96554, + 4.23029, + 6.64063 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.96554, + 4.22325, + 10.18281 + ] + }, + "faces": { + "north": { + "uv": [ + 8.75, + 7.5, + 8.8125, + 7.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 8.75, + 7.8125, + 8.875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 7.75, + 8.8125, + 7.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 8.75, + 8.0625, + 8.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0.3125, + 9.5625, + 0.25, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5625, + 0.25, + 9.5, + 0.3125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.96155, + 3.34138, + 6.37031 + ], + "to": [ + 7.01155, + 3.73122, + 6.64063 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.01155, + 3.84138, + 10.18281 + ] + }, + "faces": { + "north": { + "uv": [ + 8.75, + 8, + 8.8125, + 8.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 8.75, + 8.3125, + 8.875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.75, + 8.25, + 8.8125, + 8.375 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 8.75, + 8.5625, + 8.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0.5625, + 9.5625, + 0.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5625, + 0.5, + 9.5, + 0.5625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 9.26746, + 3.99462, + 6.37031 + ], + "to": [ + 9.31746, + 4.09462, + 6.64063 + ], + "rotation": { + "angle": -22.5, + "axis": "z", + "origin": [ + 8.26746, + 4.49462, + 10.18281 + ] + }, + "faces": { + "north": { + "uv": [ + 0.75, + 9.5, + 0.8125, + 9.5625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 0.75, + 9.5625, + 0.8125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 9.5, + 1.0625, + 9.5625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 1, + 9.5625, + 1.0625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.3125, + 9.5625, + 1.25, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5625, + 1.25, + 9.5, + 1.3125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 9, + 2.96484, + 6.37031 + ], + "to": [ + 9.05, + 3.65, + 6.64063 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.5, + 10.18281 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 6.5, + 8.3125, + 6.6875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 8.25, + 6.8125, + 8.4375 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 6.75, + 8.3125, + 6.9375 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 8.25, + 7.0625, + 8.4375 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.5625, + 9.5625, + 1.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5625, + 1.5, + 9.5, + 1.5625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.98672, + 2.96484, + 6.37031 + ], + "to": [ + 9.05, + 3.01484, + 6.64063 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.9, + 5.01484, + 10.18281 + ] + }, + "faces": { + "north": { + "uv": [ + 7.75, + 7.75, + 8, + 7.8125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 9.5, + 1.8125, + 9.5625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 8, + 0.25, + 8.0625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 1.75, + 9.5625, + 1.8125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0.5, + 8.0625, + 0.25, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 0.25, + 8, + 0.3125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.94552, + 4.45595, + 6.37031 + ], + "to": [ + 8.8088, + 4.50595, + 6.64063 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.6588, + 4.25595, + 10.18281 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 7, + 8.4375, + 7.0625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 9.5, + 2.0625, + 9.5625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 8.25, + 7.4375, + 8.3125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 2, + 9.5625, + 2.0625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.4375, + 7.3125, + 8.25, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.6875, + 8.25, + 7.5, + 8.3125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 9.03446, + 3.72325, + 6.37031 + ], + "to": [ + 9.08446, + 4.23029, + 6.64063 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.03446, + 4.22325, + 10.18281 + ] + }, + "faces": { + "north": { + "uv": [ + 8.75, + 8.5, + 8.8125, + 8.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 8.75, + 8.8125, + 8.875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 9, + 0.0625, + 9.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 0, + 9.0625, + 0.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.3125, + 9.5625, + 2.25, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5625, + 2.25, + 9.5, + 2.3125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.98845, + 3.34138, + 6.37031 + ], + "to": [ + 9.03845, + 3.73122, + 6.64063 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.98845, + 3.84138, + 10.18281 + ] + }, + "faces": { + "north": { + "uv": [ + 0.25, + 9, + 0.3125, + 9.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 0.25, + 9.0625, + 0.375 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0.5, + 9, + 0.5625, + 9.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 0.5, + 9.0625, + 0.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.5625, + 9.5625, + 2.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5625, + 2.5, + 9.5, + 2.5625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.68254, + 3.99462, + 8.99141 + ], + "to": [ + 6.73254, + 4.09462, + 9.66016 + ], + "rotation": { + "angle": 22.5, + "axis": "z", + "origin": [ + 7.73254, + 4.49462, + 12.99141 + ] + }, + "faces": { + "north": { + "uv": [ + 2.75, + 9.5, + 2.8125, + 9.5625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.25, + 7.5, + 8.4375, + 7.5625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 2.75, + 9.5625, + 2.8125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 8.25, + 7.9375, + 8.3125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.3125, + 7.9375, + 8.25, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.0625, + 8.25, + 8, + 8.4375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.95, + 2.96484, + 8.99141 + ], + "to": [ + 7, + 3.65, + 9.66016 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.5, + 12.99141 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 8, + 8.3125, + 8.1875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 7, + 3.9375, + 7.1875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 8.25, + 8.3125, + 8.4375 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 7, + 4.1875, + 7.1875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0.0625, + 8.6875, + 0, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5625, + 0, + 8.5, + 0.1875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.95, + 2.96484, + 8.99141 + ], + "to": [ + 8.01328, + 3.01484, + 9.66016 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 7.1, + 5.01484, + 12.99141 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 0.5, + 8.25, + 0.5625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.25, + 8.5, + 0.4375, + 8.5625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 0.75, + 8.25, + 0.8125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 0.25, + 8.6875, + 0.3125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 6.6875, + 5.75, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 6.5, + 6, + 6.6875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.1912, + 4.45595, + 8.99141 + ], + "to": [ + 8.05448, + 4.50595, + 9.66016 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 7.3412, + 4.25595, + 12.99141 + ] + }, + "faces": { + "north": { + "uv": [ + 0.5, + 8.5, + 0.6875, + 8.5625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 0.5, + 8.6875, + 0.5625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0.75, + 8.5, + 0.9375, + 8.5625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 0.75, + 8.6875, + 0.8125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.4375, + 7.1875, + 4.25, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.1875, + 4.25, + 7, + 4.4375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.91554, + 3.72325, + 8.99141 + ], + "to": [ + 6.96554, + 4.23029, + 9.66016 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.96554, + 4.22325, + 12.99141 + ] + }, + "faces": { + "north": { + "uv": [ + 0.75, + 9, + 0.8125, + 9.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 7.5, + 4.1875, + 7.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 0.75, + 9.0625, + 0.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 4, + 7.6875, + 4.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.0625, + 8.6875, + 1, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5625, + 1, + 8.5, + 1.1875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.96155, + 3.34138, + 8.99141 + ], + "to": [ + 7.01155, + 3.73122, + 9.66016 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.01155, + 3.84138, + 12.99141 + ] + }, + "faces": { + "north": { + "uv": [ + 1, + 9, + 1.0625, + 9.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.25, + 7.5, + 4.4375, + 7.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 1, + 9.0625, + 1.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 4.25, + 7.6875, + 4.375 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.3125, + 8.6875, + 1.25, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5625, + 1.25, + 8.5, + 1.4375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 9.26746, + 3.99462, + 8.99141 + ], + "to": [ + 9.31746, + 4.09462, + 9.66016 + ], + "rotation": { + "angle": -22.5, + "axis": "z", + "origin": [ + 8.26746, + 4.49462, + 12.99141 + ] + }, + "faces": { + "north": { + "uv": [ + 3, + 9.5, + 3.0625, + 9.5625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 8.5, + 1.6875, + 8.5625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 3, + 9.5625, + 3.0625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 1.5, + 8.6875, + 1.5625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.8125, + 8.6875, + 1.75, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5625, + 1.75, + 8.5, + 1.9375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 9, + 2.96484, + 8.99141 + ], + "to": [ + 9.05, + 3.65, + 9.66016 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.5, + 12.99141 + ] + }, + "faces": { + "north": { + "uv": [ + 2, + 8.5, + 2.0625, + 8.6875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 7, + 4.6875, + 7.1875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 2, + 8.5625, + 2.1875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 4.5, + 7.1875, + 4.6875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.3125, + 8.6875, + 2.25, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5625, + 2.25, + 8.5, + 2.4375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.98672, + 2.96484, + 8.99141 + ], + "to": [ + 9.05, + 3.01484, + 9.66016 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.9, + 5.01484, + 12.99141 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 1, + 8.25, + 1.0625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 8.5, + 2.6875, + 8.5625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 8, + 1.75, + 8.0625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 2.5, + 8.6875, + 2.5625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 6.6875, + 6.25, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 6.25, + 6.5, + 6.4375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.94552, + 4.45595, + 8.99141 + ], + "to": [ + 8.8088, + 4.50595, + 9.66016 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.6588, + 4.25595, + 12.99141 + ] + }, + "faces": { + "north": { + "uv": [ + 2.75, + 8.5, + 2.9375, + 8.5625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 2.75, + 8.6875, + 2.8125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 8.5, + 3.1875, + 8.5625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 3, + 8.6875, + 3.0625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.9375, + 7.1875, + 4.75, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.1875, + 4.75, + 7, + 4.9375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 9.03446, + 3.72325, + 8.99141 + ], + "to": [ + 9.08446, + 4.23029, + 9.66016 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.03446, + 4.22325, + 12.99141 + ] + }, + "faces": { + "north": { + "uv": [ + 1.25, + 9, + 1.3125, + 9.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 7.5, + 4.6875, + 7.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 1.25, + 9.0625, + 1.375 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 4.5, + 7.6875, + 4.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.3125, + 8.6875, + 3.25, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5625, + 3.25, + 8.5, + 3.4375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.98845, + 3.34138, + 8.99141 + ], + "to": [ + 9.03845, + 3.73122, + 9.66016 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.98845, + 3.84138, + 12.99141 + ] + }, + "faces": { + "north": { + "uv": [ + 1.5, + 9, + 1.5625, + 9.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 7.5, + 4.9375, + 7.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 1.5, + 9.0625, + 1.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 4.75, + 7.6875, + 4.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.5625, + 8.6875, + 3.5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5625, + 3.5, + 8.5, + 3.6875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.68254, + 3.99462, + 4.99922 + ], + "to": [ + 6.73254, + 4.09462, + 5.92969 + ], + "rotation": { + "angle": 22.5, + "axis": "z", + "origin": [ + 7.73254, + 4.49462, + 8.99922 + ] + }, + "faces": { + "north": { + "uv": [ + 3.25, + 9.5, + 3.3125, + 9.5625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 8, + 2, + 8.0625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 3.25, + 9.5625, + 3.3125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 2, + 8.25, + 2.0625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.0625, + 2.5, + 8, + 2.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.0625, + 2.5, + 8, + 2.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.95, + 2.98047, + 4.99922 + ], + "to": [ + 7, + 3.65, + 5.92969 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.5, + 8.99922 + ] + }, + "faces": { + "north": { + "uv": [ + 3.75, + 8.5, + 3.8125, + 8.6875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 6.5, + 6.75, + 6.6875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 3.75, + 8.5625, + 3.9375 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 6.75, + 0.25, + 6.9375 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.8125, + 8.25, + 2.75, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.0625, + 2.75, + 8, + 3 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.74853, + 3.00358, + 4.99922 + ], + "to": [ + 6.79853, + 3.76686, + 5.92969 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.79853, + 3.61686, + 8.99922 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 8.5, + 4.0625, + 8.6875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 0, + 7, + 0.1875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 4, + 8.5625, + 4.1875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.25, + 6.75, + 0.5, + 6.9375 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.0625, + 8.25, + 3, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.0625, + 3, + 8, + 3.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.48972, + 2.44075, + 4.99922 + ], + "to": [ + 8.053, + 2.49075, + 5.92969 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 7.63972, + 4.49075, + 8.99922 + ] + }, + "faces": { + "north": { + "uv": [ + 1.75, + 9, + 1.875, + 9.0625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 8, + 3.5, + 8.0625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 1.75, + 9.125, + 1.8125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 3.25, + 8.25, + 3.3125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.125, + 6, + 7, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.125, + 7, + 6, + 7.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.1912, + 4.45595, + 4.99922 + ], + "to": [ + 8.05448, + 4.50595, + 5.92969 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 7.3412, + 4.25595, + 8.99922 + ] + }, + "faces": { + "north": { + "uv": [ + 4.25, + 8.5, + 4.4375, + 8.5625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 8, + 3.75, + 8.0625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 4.25, + 8.6875, + 4.3125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 3.5, + 8.25, + 3.5625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.9375, + 0.5, + 6.75, + 0.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.6875, + 6.75, + 0.5, + 7 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.91554, + 3.72325, + 4.99922 + ], + "to": [ + 6.96554, + 4.23029, + 5.92969 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.96554, + 4.22325, + 8.99922 + ] + }, + "faces": { + "north": { + "uv": [ + 2, + 9, + 2.0625, + 9.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 6, + 7.25, + 6.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 2, + 9.0625, + 2.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 7, + 6.5, + 7.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.8125, + 8.25, + 3.75, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.0625, + 3.75, + 8, + 4 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.96155, + 3.34138, + 4.99922 + ], + "to": [ + 7.01155, + 3.73122, + 5.92969 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.01155, + 3.84138, + 8.99922 + ] + }, + "faces": { + "north": { + "uv": [ + 2.25, + 9, + 2.3125, + 9.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 6.25, + 7.25, + 6.375 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 2.25, + 9.0625, + 2.375 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 7, + 6.75, + 7.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.0625, + 8.25, + 4, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.0625, + 4, + 8, + 4.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 9.26746, + 3.99462, + 4.99922 + ], + "to": [ + 9.31746, + 4.09462, + 5.92969 + ], + "rotation": { + "angle": -22.5, + "axis": "z", + "origin": [ + 8.26746, + 4.49462, + 8.99922 + ] + }, + "faces": { + "north": { + "uv": [ + 3.5, + 9.5, + 3.5625, + 9.5625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.25, + 8, + 4.5, + 8.0625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 3.5, + 9.5625, + 3.5625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 4.25, + 8.25, + 4.3125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.5625, + 8.25, + 4.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.0625, + 4.5, + 8, + 4.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 9, + 2.98047, + 4.99922 + ], + "to": [ + 9.05, + 3.65, + 5.92969 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.5, + 8.99922 + ] + }, + "faces": { + "north": { + "uv": [ + 4.5, + 8.5, + 4.5625, + 8.6875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.75, + 6.75, + 1, + 6.9375 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 4.5, + 8.5625, + 4.6875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 0.75, + 7, + 0.9375 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.8125, + 8.25, + 4.75, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.0625, + 4.75, + 8, + 5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 9.20147, + 3.00358, + 4.99922 + ], + "to": [ + 9.25147, + 3.76686, + 5.92969 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.20147, + 3.61686, + 8.99922 + ] + }, + "faces": { + "north": { + "uv": [ + 4.75, + 8.5, + 4.8125, + 8.6875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 1, + 7, + 1.1875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 4.75, + 8.5625, + 4.9375 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.25, + 6.75, + 1.5, + 6.9375 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.0625, + 8.25, + 5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.0625, + 5, + 8, + 5.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.947, + 2.44075, + 4.99922 + ], + "to": [ + 8.51028, + 2.49075, + 5.92969 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.36028, + 4.49075, + 8.99922 + ] + }, + "faces": { + "north": { + "uv": [ + 2.5, + 9, + 2.625, + 9.0625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 8, + 5.5, + 8.0625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 2.5, + 9.125, + 2.5625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 5.25, + 8.25, + 5.3125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.125, + 6.75, + 7, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.875, + 7, + 6.75, + 7.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.94552, + 4.45595, + 4.99922 + ], + "to": [ + 8.8088, + 4.50595, + 5.92969 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.6588, + 4.25595, + 8.99922 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 8.5, + 5.1875, + 8.5625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 8, + 5.75, + 8.0625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 5, + 8.6875, + 5.0625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 5.5, + 8.25, + 5.5625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.6875, + 7, + 1.5, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.9375, + 6.75, + 1.75, + 7 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 9.03446, + 3.72325, + 4.99922 + ], + "to": [ + 9.08446, + 4.23029, + 5.92969 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.03446, + 4.22325, + 8.99922 + ] + }, + "faces": { + "north": { + "uv": [ + 2.75, + 9, + 2.8125, + 9.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 6.75, + 7.25, + 6.875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 2.75, + 9.0625, + 2.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 7, + 7.25, + 7.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.8125, + 8.25, + 5.75, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.0625, + 5.75, + 8, + 6 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.98845, + 3.34138, + 4.99922 + ], + "to": [ + 9.03845, + 3.73122, + 5.92969 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.98845, + 3.84138, + 8.99922 + ] + }, + "faces": { + "north": { + "uv": [ + 3, + 9, + 3.0625, + 9.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 7.25, + 0.25, + 7.375 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 3, + 9.0625, + 3.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 0, + 7.5, + 0.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.0625, + 8.25, + 6, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.0625, + 6, + 8, + 6.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.68254, + 3.99462, + 6.64375 + ], + "to": [ + 6.73254, + 4.09462, + 7.79688 + ], + "rotation": { + "angle": 22.5, + "axis": "z", + "origin": [ + 7.73254, + 4.49462, + 10.64375 + ] + }, + "faces": { + "north": { + "uv": [ + 3.75, + 9.5, + 3.8125, + 9.5625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 7.5, + 5.3125, + 7.5625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 3.75, + 9.5625, + 3.8125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 5, + 7.8125, + 5.0625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.5625, + 5.5625, + 7.5, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5625, + 7.5, + 5.5, + 7.8125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.95, + 2.98047, + 6.64375 + ], + "to": [ + 7, + 3.65, + 7.79688 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.5, + 10.64375 + ] + }, + "faces": { + "north": { + "uv": [ + 5.25, + 8.5, + 5.3125, + 8.6875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 5.75, + 6.5625, + 5.9375 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 5.25, + 8.5625, + 5.4375 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 6.25, + 6.3125, + 6.4375 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.8125, + 7.8125, + 5.75, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5625, + 5.75, + 7.5, + 6.0625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.74853, + 3.00358, + 6.64375 + ], + "to": [ + 6.79853, + 3.76686, + 7.79688 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.79853, + 3.61686, + 10.64375 + ] + }, + "faces": { + "north": { + "uv": [ + 5.5, + 8.5, + 5.5625, + 8.6875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 6, + 6.5625, + 6.1875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 5.5, + 8.5625, + 5.6875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 0.5, + 6.8125, + 0.6875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.0625, + 7.8125, + 6, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.3125, + 7.5, + 6.25, + 7.8125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.48972, + 2.44075, + 6.64375 + ], + "to": [ + 8.053, + 2.49075, + 7.79688 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 7.63972, + 4.49075, + 10.64375 + ] + }, + "faces": { + "north": { + "uv": [ + 3.25, + 9, + 3.375, + 9.0625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 6.25, + 7.8125, + 6.3125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 3.25, + 9.125, + 3.3125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 7.5, + 6.8125, + 7.5625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.875, + 2.0625, + 6.75, + 1.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.125, + 6.75, + 2, + 7.0625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.1912, + 4.45595, + 6.64375 + ], + "to": [ + 8.05448, + 4.50595, + 7.79688 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 7.3412, + 4.25595, + 10.64375 + ] + }, + "faces": { + "north": { + "uv": [ + 5.75, + 8.5, + 5.9375, + 8.5625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 6.5, + 7.8125, + 6.5625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 5.75, + 8.6875, + 5.8125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 6.75, + 7.8125, + 6.8125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.6875, + 1.0625, + 6.5, + 0.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.1875, + 6.5, + 1, + 6.8125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.91554, + 3.72325, + 6.64375 + ], + "to": [ + 6.96554, + 4.23029, + 7.79688 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.96554, + 4.22325, + 10.64375 + ] + }, + "faces": { + "north": { + "uv": [ + 3.5, + 9, + 3.5625, + 9.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 2.25, + 7.0625, + 2.375 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 3.5, + 9.0625, + 3.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 2.5, + 7.0625, + 2.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.0625, + 7.8125, + 7, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5625, + 7, + 7.5, + 7.3125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.96155, + 3.34138, + 6.64375 + ], + "to": [ + 7.01155, + 3.73122, + 7.79688 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.01155, + 3.84138, + 10.64375 + ] + }, + "faces": { + "north": { + "uv": [ + 3.75, + 9, + 3.8125, + 9.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 2.75, + 7.0625, + 2.875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 3.75, + 9.0625, + 3.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 6.75, + 3.3125, + 6.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.3125, + 7.8125, + 7.25, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5625, + 7.5, + 7.5, + 7.8125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 9.26746, + 3.99462, + 6.64375 + ], + "to": [ + 9.31746, + 4.09462, + 7.79688 + ], + "rotation": { + "angle": -22.5, + "axis": "z", + "origin": [ + 8.26746, + 4.49462, + 10.64375 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 9.5, + 4.0625, + 9.5625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 7.75, + 0.3125, + 7.8125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 4, + 9.5625, + 4.0625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 0, + 8.0625, + 0.0625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.8125, + 0.5625, + 7.75, + 0.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.5625, + 7.75, + 0.5, + 8.0625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 9, + 2.98047, + 6.64375 + ], + "to": [ + 9.05, + 3.65, + 7.79688 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.5, + 10.64375 + ] + }, + "faces": { + "north": { + "uv": [ + 6, + 8.5, + 6.0625, + 8.6875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.25, + 6.5, + 1.5625, + 6.6875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 6, + 8.5625, + 6.1875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 1.25, + 6.8125, + 1.4375 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0.8125, + 8.0625, + 0.75, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.8125, + 0.75, + 7.75, + 1.0625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 9.20147, + 3.00358, + 6.64375 + ], + "to": [ + 9.25147, + 3.76686, + 7.79688 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.20147, + 3.61686, + 10.64375 + ] + }, + "faces": { + "north": { + "uv": [ + 6.25, + 8.5, + 6.3125, + 8.6875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 1.5, + 6.8125, + 1.6875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 6.25, + 8.5625, + 6.4375 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 6.5, + 2.0625, + 6.6875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.0625, + 8.0625, + 1, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.3125, + 7.75, + 1.25, + 8.0625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.947, + 2.44075, + 6.64375 + ], + "to": [ + 8.51028, + 2.49075, + 7.79688 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.36028, + 4.49075, + 10.64375 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 9, + 4.125, + 9.0625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 1.25, + 8.0625, + 1.3125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 4, + 9.125, + 4.0625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 7.75, + 1.8125, + 7.8125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.875, + 3.3125, + 6.75, + 3 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.625, + 6.75, + 3.5, + 7.0625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.94552, + 4.45595, + 6.64375 + ], + "to": [ + 8.8088, + 4.50595, + 7.79688 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.6588, + 4.25595, + 10.64375 + ] + }, + "faces": { + "north": { + "uv": [ + 6.5, + 8.5, + 6.6875, + 8.5625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 1.5, + 8.0625, + 1.5625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 6.5, + 8.6875, + 6.5625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 1.75, + 8.0625, + 1.8125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.4375, + 6.8125, + 2.25, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.6875, + 6.5, + 2.5, + 6.8125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 9.03446, + 3.72325, + 6.64375 + ], + "to": [ + 9.08446, + 4.23029, + 7.79688 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.03446, + 4.22325, + 10.64375 + ] + }, + "faces": { + "north": { + "uv": [ + 4.25, + 9, + 4.3125, + 9.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 3.5, + 7.0625, + 3.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 4.25, + 9.0625, + 4.375 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 6.75, + 4.0625, + 6.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.0625, + 8.0625, + 2, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.8125, + 2, + 7.75, + 2.3125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.98845, + 3.34138, + 6.64375 + ], + "to": [ + 9.03845, + 3.73122, + 7.79688 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.98845, + 3.84138, + 10.64375 + ] + }, + "faces": { + "north": { + "uv": [ + 4.5, + 9, + 4.5625, + 9.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 3.75, + 7.0625, + 3.875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 4.5, + 9.0625, + 4.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 4, + 7.0625, + 4.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.3125, + 8.0625, + 2.25, + 7.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5625, + 7.75, + 2.5, + 8.0625 + ], + "texture": "#0" + } + } + } + ], + "gui_light": "front", + "display": { + "thirdperson_righthand": { + "translation": [ + 0, + 5.5, + -0.25 + ] + }, + "thirdperson_lefthand": { + "scale": [ + 0, + 0, + 0 + ] + }, + "firstperson_righthand": { + "translation": [ + -2.25, + 14.5, + -14.5 + ], + "scale": [ + 3, + 3, + 3 + ] + }, + "firstperson_lefthand": { + "scale": [ + 0, + 0, + 0 + ] + }, + "ground": { + "translation": [ + 0, + 4.25, + 0 + ], + "scale": [ + 1.2, + 1.2, + 1.2 + ] + }, + "gui": { + "rotation": [ + 165.69, + -39.63, + 178.66 + ], + "translation": [ + -0.75, + 10.75, + 0 + ], + "scale": [ + 1.9, + 1.9, + 1.9 + ] + }, + "head": { + "translation": [ + 0, + 23.75, + 0 + ], + "scale": [ + 3, + 3, + 3 + ] + }, + "fixed": { + "rotation": [ + 90, + -45, + 90 + ], + "translation": [ + -6.5, + 7.5, + 0 + ], + "scale": [ + 2, + 2, + 2 + ] + } + }, + "groups": [ + { + "name": "homemade_shotgun", + "origin": [ + 7.37626, + 3.80052, + 8 + ], + "color": 0, + "children": [ + 0, + 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, + { + "name": "guan", + "origin": [ + 7.37626, + 3.80052, + 8 + ], + "color": 9, + "children": [ + { + "name": "guan2", + "origin": [ + 7.37626, + 3.80052, + 8 + ], + "color": 9, + "children": [ + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36 + ] + }, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + { + "name": "gai", + "origin": [ + 7.40898, + 4.02107, + 7.92532 + ], + "color": 9, + "children": [ + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52 + ] + }, + { + "name": "gai", + "origin": [ + 7.40898, + 4.02107, + 7.92532 + ], + "color": 9, + "children": [ + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60 + ] + } + ] + }, + { + "name": "jiaodai", + "origin": [ + 8, + 3.5, + 8.5 + ], + "color": 4, + "children": [ + { + "name": "group", + "origin": [ + 7.98845, + 3.84138, + 8.3 + ], + "color": 0, + "children": [ + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72 + ] + }, + { + "name": "group", + "origin": [ + 7.98845, + 3.84138, + 8.3 + ], + "color": 0, + "children": [ + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84 + ] + }, + { + "name": "group", + "origin": [ + 7.98845, + 3.84138, + 8.3 + ], + "color": 0, + "children": [ + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96 + ] + }, + { + "name": "group", + "origin": [ + 7.98845, + 3.84138, + 8.3 + ], + "color": 0, + "children": [ + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108 + ] + }, + { + "name": "group", + "origin": [ + 7.98845, + 3.84138, + 8.3 + ], + "color": 0, + "children": [ + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122 + ] + }, + { + "name": "group", + "origin": [ + 7.98845, + 3.84138, + 8.3 + ], + "color": 0, + "children": [ + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136 + ] + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/homemade_shotgun_base.json b/src/main/resources/assets/superbwarfare/models/item/homemade_shotgun_base.json new file mode 100644 index 000000000..e985fd55d --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/homemade_shotgun_base.json @@ -0,0 +1,6 @@ +{ + "parent": "superbwarfare:displaysettings/homemade_shotgun.item", + "textures": { + "layer0": "superbwarfare:item/homemade_shotgun" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/hunting_rifle.json b/src/main/resources/assets/superbwarfare/models/item/hunting_rifle.json new file mode 100644 index 000000000..e0645bde1 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/hunting_rifle.json @@ -0,0 +1,27 @@ +{ + "loader": "forge:separate_transforms", + "gui_light": "front", + "base": { + "parent": "superbwarfare:item/hunting_rifle_base" + }, + "perspectives": { + "gui": { + "parent": "superbwarfare:item/hunting_rifle_icon" + }, + "thirdperson_righthand": { + "parent": "superbwarfare:item/hunting_rifle3d" + }, + "thirdperson_lefthand": { + "parent": "superbwarfare:item/hunting_rifle3d" + }, + "ground": { + "parent": "superbwarfare:item/hunting_rifle3d" + }, + "fixed": { + "parent": "superbwarfare:item/hunting_rifle3d" + }, + "head": { + "parent": "superbwarfare:item/hunting_rifle3d" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/hunting_rifle3d.json b/src/main/resources/assets/superbwarfare/models/item/hunting_rifle3d.json new file mode 100644 index 000000000..5ac3b6a69 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/hunting_rifle3d.json @@ -0,0 +1,863 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 64, + 64 + ], + "textures": { + "0": "superbwarfare:item/hunting_rifle3d", + "particle": "superbwarfare:item/hunting_rifle3d" + }, + "elements": [ + { + "from": [ + 7.5, + 7, + 16.6 + ], + "to": [ + 8.5, + 7.4, + 18.05 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 6.5, + 0.5 + ] + }, + "faces": { + "north": { + "uv": [ + 5.5, + 5, + 5.75, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 1, + 8.75, + 1.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 5.25, + 5.75, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 1.25, + 8.75, + 1.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 9.25, + 1, + 1.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 1.5, + 1.25, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 6, + -12 + ], + "to": [ + 8.5, + 7, + 18.75 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 6.5, + 0.5 + ] + }, + "faces": { + "north": { + "uv": [ + 5.5, + 5, + 5.75, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 1, + 8.75, + 1.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 5.25, + 5.75, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 1.25, + 8.75, + 1.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 9.25, + 1, + 1.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 1.5, + 1.25, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 7, + 7.7 + ], + "to": [ + 8.5, + 7.3, + 11.75 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 6.5, + 0.5 + ] + }, + "faces": { + "north": { + "uv": [ + 5.5, + 5, + 5.75, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 1, + 8.75, + 1.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 5.25, + 5.75, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 1.25, + 8.75, + 1.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 9.25, + 1, + 1.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 1.5, + 1.25, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.3, + 6.8, + 12.15 + ], + "to": [ + 9.5, + 7.2, + 12.55 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 6.5, + -3.6 + ] + }, + "faces": { + "north": { + "uv": [ + 5.5, + 5.5, + 5.75, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 3.5, + 6, + 3.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 3.75, + 6, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 5, + 6, + 5.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 5.5, + 5.75, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 5.75, + 5.5, + 6 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.7, + 7, + 11.75 + ], + "to": [ + 8.3, + 7.2, + 18.35 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 6.5, + 4 + ] + }, + "faces": { + "north": { + "uv": [ + 5.75, + 5.5, + 6, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 5.75, + 6, + 6 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 6, + 0.25, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.25, + 6, + 0.5, + 6.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0.75, + 6.25, + 0.5, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 0.5, + 6, + 0.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 4.75, + 3 + ], + "to": [ + 8.75, + 6.75, + 19 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 6.5, + 0.5 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 0.5, + 5.5, + 1 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 4, + 0.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 5, + 5.5, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0.5, + 4, + 1 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0.5, + 5, + 0, + 1 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 1, + 0.5, + 5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 0.28603, + 17.71424 + ], + "to": [ + 8.75, + 2.28603, + 29.91424 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 1.28603, + 29.57807 + ] + }, + "faces": { + "north": { + "uv": [ + 5.5, + 0.5, + 6, + 1 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 1.5, + 4.5, + 2 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 5.5, + 2, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 2, + 4.5, + 2.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 5.5, + 1.5, + 2.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 2.5, + 2, + 5.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 3.58658, + 21.6194 + ], + "to": [ + 8.75, + 5.58658, + 30.3694 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 3.83658, + 35.48323 + ] + }, + "faces": { + "north": { + "uv": [ + 5.5, + 1.5, + 6, + 2 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 3.5, + 5.75, + 4 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 5.5, + 2.5, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 0, + 6.25, + 0.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 6.25, + 3.5, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 4, + 4, + 6.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 1.78658, + 26.1194 + ], + "to": [ + 8.75, + 5.58658, + 30.3694 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 3.83658, + 35.48323 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 5, + 0.5, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 1.5, + 5.5, + 2.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0.5, + 5, + 1, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 4, + 5.5, + 5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 3.5, + 5, + 2.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 5, + 4.5, + 6 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + -0.21342, + 28.8694 + ], + "to": [ + 8.75, + 1.78658, + 30.3694 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 3.83658, + 35.48323 + ] + }, + "faces": { + "north": { + "uv": [ + 5.5, + 2, + 6, + 2.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 2.5, + 6, + 3 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 3, + 6, + 3.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 4, + 6, + 4.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 5, + 5.5, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 5.5, + 5, + 6 + ], + "texture": "#0" + } + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [ + -0.75, + 2.5, + -7.5 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + }, + "thirdperson_lefthand": { + "translation": [ + -0.75, + 2.5, + -7.5 + ], + "scale": [ + 0, + 0, + 0 + ] + }, + "ground": { + "translation": [ + 0, + 1.5, + 0 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] + }, + "head": { + "translation": [ + 0, + 9.75, + -4.25 + ] + }, + "fixed": { + "rotation": [ + 0, + -90, + 0 + ], + "translation": [ + 3.5, + 2.25, + 0 + ] + } + }, + "groups": [ + { + "name": "group", + "origin": [ + 8, + 3.83658, + 35.48323 + ], + "color": 0, + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9 + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/hunting_rifle_base.json b/src/main/resources/assets/superbwarfare/models/item/hunting_rifle_base.json new file mode 100644 index 000000000..b5e705817 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/hunting_rifle_base.json @@ -0,0 +1,6 @@ +{ + "parent": "superbwarfare:displaysettings/hunting_rifle.item", + "textures": { + "layer0": "superbwarfare:item/huntingrifle" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/hunting_rifle_icon.json b/src/main/resources/assets/superbwarfare/models/item/hunting_rifle_icon.json new file mode 100644 index 000000000..3effc16ba --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/hunting_rifle_icon.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/hunting_rifle_icon" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/incendiary_bullet.json b/src/main/resources/assets/superbwarfare/models/item/incendiary_bullet.json new file mode 100644 index 000000000..5e2f7c675 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/incendiary_bullet.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/perk/incendiary_bullet" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/intelligent_chip.json b/src/main/resources/assets/superbwarfare/models/item/intelligent_chip.json new file mode 100644 index 000000000..78cf776b8 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/intelligent_chip.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/perk/intelligent_chip" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/javelin.json b/src/main/resources/assets/superbwarfare/models/item/javelin.json new file mode 100644 index 000000000..82a8dd8e9 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/javelin.json @@ -0,0 +1,27 @@ +{ + "loader": "forge:separate_transforms", + "gui_light": "front", + "base": { + "parent": "superbwarfare:item/javelin_base" + }, + "perspectives": { + "gui": { + "parent": "superbwarfare:item/javelin_icon" + }, + "thirdperson_righthand": { + "parent": "superbwarfare:item/javelin_3d" + }, + "thirdperson_lefthand": { + "parent": "superbwarfare:item/javelin_3d" + }, + "ground": { + "parent": "superbwarfare:item/javelin_3d" + }, + "fixed": { + "parent": "superbwarfare:item/javelin_3d" + }, + "head": { + "parent": "superbwarfare:item/javelin_3d" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/javelin_3d.json b/src/main/resources/assets/superbwarfare/models/item/javelin_3d.json new file mode 100644 index 000000000..175ac8466 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/javelin_3d.json @@ -0,0 +1,674 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 64, + 64 + ], + "textures": { + "0": "superbwarfare:item/javelin_3d", + "particle": "superbwarfare:item/javelin_3d" + }, + "elements": [ + { + "from": [ + 4, + -1, + 4 + ], + "to": [ + 12, + 7, + 8 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7, + 0, + 6 + ] + }, + "faces": { + "north": { + "uv": [ + 2.5, + 2.5, + 4.5, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 4.25, + 7.25, + 6.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 4.5, + 4.5, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 6.25, + 7.25, + 8.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 7.5, + 2.5, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 0, + 6.75, + 1 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 1, + 0, + 4 + ], + "to": [ + 4, + 7, + 6 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7, + 0, + 6 + ] + }, + "faces": { + "north": { + "uv": [ + 7.25, + 5.5, + 8, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 7.75, + 6.25, + 9.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 7.25, + 8, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 5.5, + 8.5, + 7.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 1.5, + 8.75, + 1 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 1.5, + 8.75, + 2 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 1, + 2, + 6 + ], + "to": [ + 4, + 7, + 8 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7, + 0, + 6 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 7.75, + 5.75, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 8.5, + 3.5, + 9.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 1, + 8.75, + 2.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 5.75, + 9, + 7 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 9.25, + 3.5, + 8.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 8.75, + 4.25, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6, + -3, + 5 + ], + "to": [ + 11, + -1, + 8 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7, + 0, + 6 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 7, + 9.75, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 9, + 5.75, + 9.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 7.5, + 9.75, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 5.75, + 9.75, + 6.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 3, + 8, + 2.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.25, + 3, + 8, + 3.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 12, + 0, + 4 + ], + "to": [ + 17, + 2, + 8 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7, + 0, + 6 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 8, + 9.75, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.75, + 0, + 9.75, + 0.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 8.5, + 9.75, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.75, + 0.5, + 9.75, + 1 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 8.5, + 2.5, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 7.75, + 3.75, + 8.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 12, + 2.5, + -3 + ], + "to": [ + 16.5, + 7, + 24 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 7, + 2, + 6 + ] + }, + "faces": { + "north": { + "uv": [ + 6.75, + 1, + 8, + 2.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 6.75, + 1.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 4.25, + 8.5, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 1.25, + 6.75, + 2.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 9.25, + 0, + 2.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 2.5, + 1.25, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 11, + 1.5, + -5 + ], + "to": [ + 17.5, + 8, + -3 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 7, + 2, + 6 + ] + }, + "faces": { + "north": { + "uv": [ + 4.5, + 2.5, + 6.25, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 7.25, + 8.5, + 9 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 4.25, + 6.25, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 8.25, + 6.75, + 10 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.75, + 4.25, + 8, + 3.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 4.25, + 8.5, + 4.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 11, + 1.5, + 24 + ], + "to": [ + 17.5, + 8, + 26 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 7, + 2, + 6 + ] + }, + "faces": { + "north": { + "uv": [ + 4.5, + 6, + 6.25, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 8.25, + 7.25, + 10 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 2.5, + 8, + 4.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 8.5, + 3, + 10.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.25, + 5.25, + 8.5, + 4.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 5.25, + 8.5, + 5.75 + ], + "texture": "#0" + } + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [ + -6, + 8, + 2.25 + ], + "scale": [ + 1.1, + 1.1, + 1.1 + ] + }, + "ground": { + "translation": [ + 0, + 7.75, + 0 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + }, + "head": { + "translation": [ + 4.25, + 0, + 0 + ] + }, + "fixed": { + "rotation": [ + 0, + -90, + 0 + ], + "translation": [ + 3.5, + 5, + -6.75 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/javelin_base.json b/src/main/resources/assets/superbwarfare/models/item/javelin_base.json new file mode 100644 index 000000000..200026824 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/javelin_base.json @@ -0,0 +1,6 @@ +{ + "parent": "superbwarfare:displaysettings/javelin.item", + "textures": { + "layer0": "superbwarfare:item/javelin" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/javelin_icon.json b/src/main/resources/assets/superbwarfare/models/item/javelin_icon.json new file mode 100644 index 000000000..e59d06676 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/javelin_icon.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/javelin_icon" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/javelin_missile.json b/src/main/resources/assets/superbwarfare/models/item/javelin_missile.json new file mode 100644 index 000000000..73a06740e --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/javelin_missile.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/javelin_missile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/jhp_bullet.json b/src/main/resources/assets/superbwarfare/models/item/jhp_bullet.json new file mode 100644 index 000000000..2c23d137c --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/jhp_bullet.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/perk/jhp_bullet" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/k98_3d.json b/src/main/resources/assets/superbwarfare/models/item/k98_3d.json new file mode 100644 index 000000000..3886beb60 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/k98_3d.json @@ -0,0 +1,1415 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 64, + 64 + ], + "textures": { + "0": "superbwarfare:item/hunting_rifle3d", + "particle": "superbwarfare:item/hunting_rifle3d" + }, + "elements": [ + { + "from": [ + 7.5, + 7, + 15.7 + ], + "to": [ + 8.5, + 7.4, + 17.15 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 6.5, + 0.5 + ] + }, + "faces": { + "north": { + "uv": [ + 5.5, + 5, + 5.75, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 1, + 8.75, + 1.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 5.25, + 5.75, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 1.25, + 8.75, + 1.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 9.25, + 1, + 1.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 1.5, + 1.25, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.7, + 6.4, + -12 + ], + "to": [ + 8.3, + 7, + 18.75 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 6.5, + 0.5 + ] + }, + "faces": { + "north": { + "uv": [ + 5.5, + 5, + 5.75, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 1, + 8.75, + 1.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 5.25, + 5.75, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 1.25, + 8.75, + 1.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 9.25, + 1, + 1.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 1.5, + 1.25, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.7, + 7, + -11.9 + ], + "to": [ + 8.3, + 7.5, + -11.35 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 6.5, + 0.5 + ] + }, + "faces": { + "north": { + "uv": [ + 5.5, + 5, + 5.75, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 1, + 8.75, + 1.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 5.25, + 5.75, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 1.25, + 8.75, + 1.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 9.25, + 1, + 1.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 1.5, + 1.25, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.35, + 5.3, + -4.8 + ], + "to": [ + 8.65, + 7.1, + -4.05 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 6.5, + 0.5 + ] + }, + "faces": { + "north": { + "uv": [ + 5.5, + 5, + 5.75, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 1, + 8.75, + 1.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 5.25, + 5.75, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 1.25, + 8.75, + 1.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 9.25, + 1, + 1.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 1.5, + 1.25, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.35, + 5.3, + -3.5 + ], + "to": [ + 8.65, + 7.1, + -2.85 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 6.5, + 0.5 + ] + }, + "faces": { + "north": { + "uv": [ + 5.5, + 5, + 5.75, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 1, + 8.75, + 1.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 5.25, + 5.75, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 1.25, + 8.75, + 1.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 9.25, + 1, + 1.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 1.5, + 1.25, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 5.3, + 1.65 + ], + "to": [ + 8.75, + 7.2, + 2.7 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 6.5, + 0.5 + ] + }, + "faces": { + "north": { + "uv": [ + 5.5, + 5, + 5.75, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 1, + 8.75, + 1.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 5.25, + 5.75, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 1.25, + 8.75, + 1.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 9.25, + 1, + 1.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 1.5, + 1.25, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 7, + 7.7 + ], + "to": [ + 8.5, + 7.3, + 11.75 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 6.5, + 0.5 + ] + }, + "faces": { + "north": { + "uv": [ + 5.5, + 5, + 5.75, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 1, + 8.75, + 1.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 5.25, + 5.75, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 1.25, + 8.75, + 1.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 9.25, + 1, + 1.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 1.5, + 1.25, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.3, + 6.8, + 17.15 + ], + "to": [ + 9.1, + 7.2, + 17.55 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 6.5, + -3.6 + ] + }, + "faces": { + "north": { + "uv": [ + 5.5, + 5.5, + 5.75, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 3.5, + 6, + 3.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 3.75, + 6, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 5, + 6, + 5.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 5.5, + 5.75, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 5.75, + 5.5, + 6 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.8683, + 5.75391, + 17.15 + ], + "to": [ + 9.2683, + 7.15391, + 17.55 + ], + "rotation": { + "angle": 22.5, + "axis": "z", + "origin": [ + 9.0683, + 6.75391, + 17.35 + ] + }, + "faces": { + "north": { + "uv": [ + 5.5, + 5.5, + 5.75, + 5.75 + ], + "rotation": 270, + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 5.5, + 5.75, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 3.75, + 6, + 4 + ], + "rotation": 90, + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 5.75, + 5.5, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 5, + 6, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 3.5, + 6, + 3.75 + ], + "rotation": 90, + "texture": "#0" + } + } + }, + { + "from": [ + 7.7, + 7, + 11.75 + ], + "to": [ + 8.3, + 7.2, + 18.35 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 6.5, + 4 + ] + }, + "faces": { + "north": { + "uv": [ + 5.75, + 5.5, + 6, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 5.75, + 6, + 6 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 6, + 0.25, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.25, + 6, + 0.5, + 6.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0.75, + 6.25, + 0.5, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 0.5, + 6, + 0.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 5.05, + 9 + ], + "to": [ + 8.75, + 6.75, + 19 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 6.5, + 0.5 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 0.5, + 5.5, + 1 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 4, + 0.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 5, + 5.5, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0.5, + 4, + 1 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0.5, + 5, + 0, + 1 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 1, + 0.5, + 5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.45, + 5.35, + -4.9 + ], + "to": [ + 8.55, + 6.75, + 9 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 6.5, + 0.5 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 0.5, + 5.5, + 1 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 4, + 0.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 5, + 5.5, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0.5, + 4, + 1 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0.5, + 5, + 0, + 1 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 1, + 0.5, + 5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.45, + 6.75, + 0.7 + ], + "to": [ + 8.55, + 7.05, + 7.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 6.5, + 0.5 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 0.5, + 5.5, + 1 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 4, + 0.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 5, + 5.5, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0.5, + 4, + 1 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0.5, + 5, + 0, + 1 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 1, + 0.5, + 5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 0.48603, + 17.41424 + ], + "to": [ + 8.75, + 2.28603, + 29.91424 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 1.28603, + 29.57807 + ] + }, + "faces": { + "north": { + "uv": [ + 5.5, + 0.5, + 6, + 1 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 1.5, + 4.5, + 2 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 5.5, + 2, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 2, + 4.5, + 2.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 5.5, + 1.5, + 2.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 2.5, + 2, + 5.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 3.68658, + 21.6194 + ], + "to": [ + 8.75, + 5.58658, + 30.3694 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 3.83658, + 35.48323 + ] + }, + "faces": { + "north": { + "uv": [ + 5.5, + 1.5, + 6, + 2 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 3.5, + 5.75, + 4 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 5.5, + 2.5, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 0, + 6.25, + 0.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 6.25, + 3.5, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 4, + 4, + 6.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 1.88658, + 26.1194 + ], + "to": [ + 8.75, + 5.58658, + 30.3694 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 3.83658, + 35.48323 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 5, + 0.5, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 1.5, + 5.5, + 2.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0.5, + 5, + 1, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 4, + 5.5, + 5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 3.5, + 5, + 2.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 5, + 4.5, + 6 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 0.36705, + 29.34206 + ], + "to": [ + 8.75, + 1.88658, + 30.3694 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 3.93658, + 35.48323 + ] + }, + "faces": { + "north": { + "uv": [ + 5.5, + 2, + 6, + 2.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 2.5, + 6, + 3 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 3, + 6, + 3.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 4, + 6, + 4.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 5, + 5.5, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 5.5, + 5, + 6 + ], + "texture": "#0" + } + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [ + -1.5, + 2, + -4.75 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + }, + "thirdperson_lefthand": { + "translation": [ + -1.5, + 2, + -4.75 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + }, + "ground": { + "translation": [ + 0, + 1.5, + 0 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] + }, + "head": { + "translation": [ + 0, + 9.75, + -4.25 + ] + }, + "fixed": { + "rotation": [ + 0, + -90, + 0 + ], + "translation": [ + 3.5, + 2.25, + 0 + ] + } + }, + "groups": [ + { + "name": "group", + "origin": [ + 8, + 3.83658, + 35.48323 + ], + "color": 0, + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16 + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/k98_base.json b/src/main/resources/assets/superbwarfare/models/item/k98_base.json new file mode 100644 index 000000000..b190f595d --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/k98_base.json @@ -0,0 +1,6 @@ +{ + "parent": "superbwarfare:displaysettings/k98.item", + "textures": { + "layer0": "superbwarfare:item/k98" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/k98_icon.json b/src/main/resources/assets/superbwarfare/models/item/k98_icon.json new file mode 100644 index 000000000..acdb2840d --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/k98_icon.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/k98_icon" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/k_98.json b/src/main/resources/assets/superbwarfare/models/item/k_98.json new file mode 100644 index 000000000..119562448 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/k_98.json @@ -0,0 +1,27 @@ +{ + "loader": "forge:separate_transforms", + "gui_light": "front", + "base": { + "parent": "superbwarfare:item/k98_base" + }, + "perspectives": { + "gui": { + "parent": "superbwarfare:item/k98_icon" + }, + "thirdperson_righthand": { + "parent": "superbwarfare:item/k98_3d" + }, + "thirdperson_lefthand": { + "parent": "superbwarfare:item/k98_3d" + }, + "ground": { + "parent": "superbwarfare:item/k98_3d" + }, + "fixed": { + "parent": "superbwarfare:item/k98_3d" + }, + "head": { + "parent": "superbwarfare:item/k98_3d" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/kill_clip.json b/src/main/resources/assets/superbwarfare/models/item/kill_clip.json new file mode 100644 index 000000000..63a6874c5 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/kill_clip.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/perk/kill_clip" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/killing_tally.json b/src/main/resources/assets/superbwarfare/models/item/killing_tally.json new file mode 100644 index 000000000..6acca2cb4 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/killing_tally.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/perk/killing_tally" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/knife.json b/src/main/resources/assets/superbwarfare/models/item/knife.json new file mode 100644 index 000000000..64b6724d8 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/knife.json @@ -0,0 +1,6840 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 32, + 32 + ], + "textures": { + "2": "superbwarfare:item/knife" + }, + "elements": [ + { + "from": [ + 7.85, + 7.375, + 7.64089 + ], + "to": [ + 8.15, + 10.325, + 7.69089 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 1.625, + 1.5, + 1.5, + 3 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 1, + 1.5, + 1.125 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 1.625, + 1.5, + 1.5, + 0 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 1.5, + 1.5, + 1.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 7.5, + 3.5, + 7.625, + 3.625 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 4, + 7.5, + 4.125, + 7.625 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.64, + 7.375, + 7.85214 + ], + "to": [ + 7.69, + 10.325, + 8.15214 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 2.125, + 2, + 2, + 3.5 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 2, + 1.5, + 2.125 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 2.125, + 2, + 2, + 0.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 2, + 0, + 3.5, + 0.125 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 7.5, + 4, + 7.625, + 4.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 4.5, + 7.5, + 4.625, + 7.625 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.63787, + 7.375, + 7.85302 + ], + "to": [ + 7.68787, + 10.325, + 8.15302 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 2.625, + 2.5, + 2.5, + 4 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 2.5, + 1.5, + 2.625 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 2.625, + 2.5, + 2.5, + 1 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 2.5, + 0.5, + 4, + 0.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 7.5, + 4.5, + 7.625, + 4.625 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 5, + 7.5, + 5.125, + 7.625 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.63573, + 7.375, + 7.85214 + ], + "to": [ + 7.68573, + 10.325, + 8.15214 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 3.125, + 1.5, + 3, + 3 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 3, + 1.5, + 3.125 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 1.625, + 4.5, + 1.5, + 3 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 3, + 1, + 4.5, + 1.125 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 7.5, + 5, + 7.625, + 5.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 5.5, + 7.5, + 5.625, + 7.625 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.85, + 7.375, + 8.31515 + ], + "to": [ + 8.15, + 10.325, + 8.36515 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 2.125, + 3.5, + 2, + 5 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 3, + 3, + 4.5, + 3.125 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 3.625, + 3, + 3.5, + 1.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 3.5, + 1.5, + 3.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 7.5, + 5.5, + 7.625, + 5.625 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 6, + 7.5, + 6.125, + 7.625 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.84786, + 7.375, + 8.31427 + ], + "to": [ + 8.14786, + 10.325, + 8.36427 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0.625, + 4, + 0.5, + 5.5 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 3.5, + 0, + 5, + 0.125 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 0.125, + 5.5, + 0, + 4 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 3, + 3.5, + 4.5, + 3.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 7.5, + 6, + 7.625, + 6.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 6.5, + 7.5, + 6.625, + 7.625 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 8.31213, + 7.375, + 7.85302 + ], + "to": [ + 8.36213, + 10.325, + 8.15302 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 2.625, + 4, + 2.5, + 5.5 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 4, + 0.5, + 5.5, + 0.625 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 1.125, + 5.5, + 1, + 4 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 4, + 1.5, + 5.5, + 1.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 7.5, + 6.5, + 7.625, + 6.625 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 7, + 7.5, + 7.125, + 7.625 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 8.31, + 7.375, + 7.85214 + ], + "to": [ + 8.36, + 10.325, + 8.15214 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 3.625, + 4, + 3.5, + 5.5 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 4, + 2, + 5.5, + 2.125 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 3.125, + 5.5, + 3, + 4 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 4, + 2.5, + 5.5, + 2.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 7.5, + 7, + 7.625, + 7.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 7.5, + 7.5, + 7.625, + 7.625 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.83, + 6.625, + 7.60089 + ], + "to": [ + 8.17, + 7.375, + 8.15089 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 3.625, + 6.5, + 3.5, + 6.875 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 6, + 2, + 6.375, + 2.25 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 6.625, + 3.375, + 6.5, + 3 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 6, + 2.5, + 6.375, + 2.75 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 4, + 7, + 4.125, + 7.25 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 7, + 4, + 7.125, + 4.25 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.83, + 6.475, + 7.70089 + ], + "to": [ + 8.17, + 7.375, + 8.30089 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 6.625, + 1.5, + 6.5, + 2 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 1.5, + 6, + 2, + 6.25 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 1.625, + 7, + 1.5, + 6.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 6, + 1.5, + 6.5, + 1.75 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 4.5, + 7, + 4.625, + 7.25 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 7, + 4.5, + 7.125, + 4.75 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.59758, + 6.625, + 7.83799 + ], + "to": [ + 8.14758, + 7.375, + 8.17799 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 6.25, + 3, + 6, + 3.375 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 6.5, + 3.5, + 6.875, + 3.625 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 3.25, + 6.375, + 3, + 6 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 4, + 6.5, + 4.375, + 6.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 5, + 7, + 5.25, + 7.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 7, + 5, + 7.25, + 5.125 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.58958, + 6.625, + 7.84131 + ], + "to": [ + 8.13958, + 7.375, + 8.18131 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 4.25, + 6, + 4, + 6.375 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 4.5, + 6.5, + 4.875, + 6.625 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 3.75, + 6.375, + 3.5, + 6 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 6.5, + 4.5, + 6.875, + 4.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 5.5, + 7, + 5.75, + 7.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 7, + 5.5, + 7.25, + 5.625 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.58159, + 6.625, + 7.838 + ], + "to": [ + 8.13159, + 7.375, + 8.178 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 6.25, + 5, + 6, + 5.375 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 6.5, + 5, + 6.875, + 5.125 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 6.25, + 4.875, + 6, + 4.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 5.5, + 6.5, + 5.875, + 6.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 6, + 7, + 6.25, + 7.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 7, + 6, + 7.25, + 6.125 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.83, + 6.625, + 7.87172 + ], + "to": [ + 8.17, + 7.375, + 8.42172 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 6.125, + 6.5, + 6, + 6.875 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 5.5, + 6, + 5.875, + 6.25 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 6.625, + 5.875, + 6.5, + 5.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 6, + 5.5, + 6.375, + 5.75 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 6.5, + 7, + 6.625, + 7.25 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 7, + 6.5, + 7.125, + 6.75 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.86841, + 6.625, + 7.838 + ], + "to": [ + 8.41841, + 7.375, + 8.178 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0.25, + 6.5, + 0, + 6.875 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 6.5, + 6, + 6.875, + 6.125 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 6.25, + 6.375, + 6, + 6 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 6.5, + 6.5, + 6.875, + 6.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 7, + 7, + 7.25, + 7.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 7.5, + 0.25, + 7.625 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.86042, + 6.625, + 7.84131 + ], + "to": [ + 8.41042, + 7.375, + 8.18131 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0.75, + 6.5, + 0.5, + 6.875 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 7, + 0.375, + 7.125 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 6.75, + 0.375, + 6.5, + 0 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 7, + 0, + 7.375, + 0.125 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 7.5, + 0, + 7.75, + 0.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 0.5, + 7.5, + 0.75, + 7.625 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.85242, + 6.625, + 7.83799 + ], + "to": [ + 8.40242, + 7.375, + 8.17799 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 6.75, + 1, + 6.5, + 1.375 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 0.5, + 7, + 0.875, + 7.125 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 1.25, + 6.875, + 1, + 6.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 7, + 0.5, + 7.375, + 0.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 7.5, + 0.5, + 7.75, + 0.625 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 1, + 7.5, + 1.25, + 7.625 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.58, + 10.325, + 8.60089 + ], + "to": [ + 7.67, + 10.425, + 8.93089 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 8.125, + 1, + 8, + 1.125 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 8, + 0, + 8.125, + 0.125 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 1.125, + 8.125, + 1, + 8 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8, + 0.5, + 8.125, + 0.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 8, + 0.125, + 8.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 0.5, + 8, + 0.625, + 8.125 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.45924, + 10.325, + 7.61199 + ], + "to": [ + 7.54924, + 10.425, + 7.79199 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 8.125, + 2.5, + 8, + 2.625 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 8, + 1.5, + 8.125, + 1.625 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 2.625, + 8.125, + 2.5, + 8 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8, + 2, + 8.125, + 2.125 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 1.5, + 8, + 1.625, + 8.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 2, + 8, + 2.125, + 8.125 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.50924, + 10.325, + 7.61199 + ], + "to": [ + 7.59924, + 10.425, + 7.79199 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 8.125, + 4, + 8, + 4.125 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 8, + 3, + 8.125, + 3.125 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 4.125, + 8.125, + 4, + 8 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8, + 3.5, + 8.125, + 3.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 3, + 8, + 3.125, + 8.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 3.5, + 8, + 3.625, + 8.125 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 8.45076, + 10.325, + 7.61199 + ], + "to": [ + 8.54076, + 10.425, + 7.79199 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 8.125, + 5.5, + 8, + 5.625 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 8, + 4.5, + 8.125, + 4.625 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 5.625, + 8.125, + 5.5, + 8 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8, + 5, + 8.125, + 5.125 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 4.5, + 8, + 4.625, + 8.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 5, + 8, + 5.125, + 8.125 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 8.40076, + 10.325, + 7.61199 + ], + "to": [ + 8.49076, + 10.425, + 7.79199 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 8.125, + 7, + 8, + 7.125 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 8, + 6, + 8.125, + 6.125 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 7.125, + 8.125, + 7, + 8 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8, + 6.5, + 8.125, + 6.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 6, + 8, + 6.125, + 8.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 6.5, + 8, + 6.625, + 8.125 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.70406, + 10.325, + 6.97718 + ], + "to": [ + 7.79406, + 10.425, + 7.15718 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0.625, + 8.5, + 0.5, + 8.625 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 8, + 7.5, + 8.125, + 7.625 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 8.625, + 0.125, + 8.5, + 0 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 8.5, + 0.125, + 8.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 7.5, + 8, + 7.625, + 8.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 8, + 8, + 8.125, + 8.125 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 8.20594, + 10.325, + 6.97718 + ], + "to": [ + 8.29594, + 10.425, + 7.15718 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 2.125, + 8.5, + 2, + 8.625 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 1, + 8.5, + 1.125, + 8.625 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 8.625, + 1.625, + 8.5, + 1.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 1.5, + 8.5, + 1.625, + 8.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 8.5, + 0.5, + 8.625, + 0.625 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 8.5, + 1, + 8.625, + 1.125 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 8.8425, + 10.325, + 7.28601 + ], + "to": [ + 8.9325, + 10.425, + 7.48601 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 3.625, + 8.5, + 3.5, + 8.625 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 2.5, + 8.5, + 2.625, + 8.625 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 8.625, + 3.125, + 8.5, + 3 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 3, + 8.5, + 3.125, + 8.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 8.5, + 2, + 8.625, + 2.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 8.5, + 2.5, + 8.625, + 2.625 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 8.38672, + 10.325, + 7.1948 + ], + "to": [ + 8.47672, + 10.425, + 7.3948 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 5.125, + 8.5, + 5, + 8.625 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 4, + 8.5, + 4.125, + 8.625 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 8.625, + 4.625, + 8.5, + 4.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 4.5, + 8.5, + 4.625, + 8.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 8.5, + 3.5, + 8.625, + 3.625 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 8.5, + 4, + 8.625, + 4.125 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 8.60522, + 10.325, + 7.52329 + ], + "to": [ + 8.80522, + 10.425, + 7.61329 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 6.625, + 8.5, + 6.5, + 8.625 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 5.5, + 8.5, + 5.625, + 8.625 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 8.625, + 6.125, + 8.5, + 6 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 6, + 8.5, + 6.125, + 8.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 8.5, + 5, + 8.625, + 5.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 8.5, + 5.5, + 8.625, + 5.625 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 8.51398, + 10.325, + 7.0675 + ], + "to": [ + 8.71398, + 10.425, + 7.1575 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 8.125, + 8.5, + 8, + 8.625 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 7, + 8.5, + 7.125, + 8.625 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 8.625, + 7.625, + 8.5, + 7.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 7.5, + 8.5, + 7.625, + 8.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 8.5, + 6.5, + 8.625, + 6.625 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 8.5, + 7, + 8.625, + 7.125 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.84549, + 10.325, + 6.83576 + ], + "to": [ + 8.15449, + 10.425, + 6.92576 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 9.125, + 0.5, + 9, + 0.625 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 8.5, + 8.5, + 8.625, + 8.625 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 0.625, + 9.125, + 0.5, + 9 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9, + 0, + 9.125, + 0.125 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 8.5, + 8, + 8.625, + 8.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 9, + 0.125, + 9.125 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.69551, + 10.325, + 7.2086 + ], + "to": [ + 8.30451, + 10.425, + 7.6486 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 2.25, + 7.5, + 2, + 7.625 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 7.5, + 1, + 7.625, + 1.25 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 7.75, + 1.625, + 7.5, + 1.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 1.5, + 7.5, + 1.625, + 7.75 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 2, + 6.5, + 2.25, + 6.75 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 6.5, + 2, + 6.75, + 2.25 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.64203, + 10.325, + 7.28903 + ], + "to": [ + 7.73203, + 10.425, + 7.46903 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 9.125, + 2, + 9, + 2.125 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 9, + 1, + 9.125, + 1.125 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 2.125, + 9.125, + 2, + 9 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9, + 1.5, + 9.125, + 1.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 1, + 9, + 1.125, + 9.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 1.5, + 9, + 1.625, + 9.125 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 8.26797, + 10.325, + 7.28903 + ], + "to": [ + 8.35797, + 10.425, + 7.46903 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 9.125, + 3.5, + 9, + 3.625 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 9, + 2.5, + 9.125, + 2.625 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 3.625, + 9.125, + 3.5, + 9 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9, + 3, + 9.125, + 3.125 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 2.5, + 9, + 2.625, + 9.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 3, + 9, + 3.125, + 9.125 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.3972, + 10.325, + 7.30014 + ], + "to": [ + 7.4872, + 10.425, + 7.48014 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 9.125, + 5, + 9, + 5.125 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 9, + 4, + 9.125, + 4.125 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 5.125, + 9.125, + 5, + 9 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9, + 4.5, + 9.125, + 4.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 4, + 9, + 4.125, + 9.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 4.5, + 9, + 4.625, + 9.125 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 8.1453, + 10.325, + 7.47054 + ], + "to": [ + 8.2353, + 10.425, + 7.65054 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 9.125, + 6.5, + 9, + 6.625 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 9, + 5.5, + 9.125, + 5.625 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 6.625, + 9.125, + 6.5, + 9 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9, + 6, + 9.125, + 6.125 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 5.5, + 9, + 5.625, + 9.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 6, + 9, + 6.125, + 9.125 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 8.5128, + 10.325, + 7.30014 + ], + "to": [ + 8.6028, + 10.425, + 7.48014 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 9.125, + 8, + 9, + 8.125 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 9, + 7, + 9.125, + 7.125 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 8.125, + 9.125, + 8, + 9 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9, + 7.5, + 9.125, + 7.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 7, + 9, + 7.125, + 9.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 7.5, + 9, + 7.625, + 9.125 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.7647, + 10.325, + 7.47054 + ], + "to": [ + 7.8547, + 10.425, + 7.65054 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0.625, + 9.5, + 0.5, + 9.625 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 9, + 8.5, + 9.125, + 8.625 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 9.625, + 0.125, + 9.5, + 0 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 9.5, + 0.125, + 9.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 8.5, + 9, + 8.625, + 9.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 9, + 9, + 9.125, + 9.125 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.04478, + 10.325, + 8.36125 + ], + "to": [ + 7.13478, + 10.425, + 8.69125 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 2.125, + 9.5, + 2, + 9.625 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 1, + 9.5, + 1.125, + 9.625 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 9.625, + 1.625, + 9.5, + 1.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 1.5, + 9.5, + 1.625, + 9.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 9.5, + 0.5, + 9.625, + 0.625 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 9.5, + 1, + 9.625, + 1.125 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.78209, + 10.325, + 8.39188 + ], + "to": [ + 7.87209, + 10.425, + 8.72188 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 3.625, + 9.5, + 3.5, + 9.625 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 2.5, + 9.5, + 2.625, + 9.625 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 9.625, + 3.125, + 9.5, + 3 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 3, + 9.5, + 3.125, + 9.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 9.5, + 2, + 9.625, + 2.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 9.5, + 2.5, + 9.625, + 2.625 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 8.06808, + 10.325, + 8.38588 + ], + "to": [ + 8.15808, + 10.425, + 8.71588 + ], + "rotation": { + "angle": 22.5, + "axis": "y", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 5.125, + 9.5, + 5, + 9.625 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 4, + 9.5, + 4.125, + 9.625 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 9.625, + 4.625, + 9.5, + 4.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 4.5, + 9.5, + 4.625, + 9.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 9.5, + 3.5, + 9.625, + 3.625 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 9.5, + 4, + 9.625, + 4.125 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 8.33, + 10.325, + 8.60089 + ], + "to": [ + 8.42, + 10.425, + 8.93089 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 6.625, + 9.5, + 6.5, + 9.625 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 5.5, + 9.5, + 5.625, + 9.625 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 9.625, + 6.125, + 9.5, + 6 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 6, + 9.5, + 6.125, + 9.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 9.5, + 5, + 9.625, + 5.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 9.5, + 5.5, + 9.625, + 5.625 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 8.86522, + 10.325, + 8.36125 + ], + "to": [ + 8.95522, + 10.425, + 8.69125 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 8.125, + 9.5, + 8, + 9.625 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 7, + 9.5, + 7.125, + 9.625 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 9.625, + 7.625, + 9.5, + 7.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 7.5, + 9.5, + 7.625, + 9.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 9.5, + 6.5, + 9.625, + 6.625 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 9.5, + 7, + 9.625, + 7.125 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 8.12791, + 10.325, + 8.39188 + ], + "to": [ + 8.21791, + 10.425, + 8.72188 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 9.625, + 9.5, + 9.5, + 9.625 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 8.5, + 9.5, + 8.625, + 9.625 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 9.625, + 9.125, + 9.5, + 9 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9, + 9.5, + 9.125, + 9.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 9.5, + 8, + 9.625, + 8.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 9.5, + 8.5, + 9.625, + 8.625 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.84192, + 10.325, + 8.38588 + ], + "to": [ + 7.93192, + 10.425, + 8.71588 + ], + "rotation": { + "angle": -22.5, + "axis": "y", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 10.125, + 1, + 10, + 1.125 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 10, + 0, + 10.125, + 0.125 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 1.125, + 10.125, + 1, + 10 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10, + 0.5, + 10.125, + 0.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 10, + 0.125, + 10.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 0.5, + 10, + 0.625, + 10.125 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.81335, + 10.325, + 9.07424 + ], + "to": [ + 8.18735, + 10.425, + 9.16424 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 10.125, + 2.5, + 10, + 2.625 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 10, + 1.5, + 10.125, + 1.625 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 2.625, + 10.125, + 2.5, + 10 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10, + 2, + 10.125, + 2.125 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 1.5, + 10, + 1.625, + 10.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 2, + 10, + 2.125, + 10.125 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.63, + 10.325, + 7.60089 + ], + "to": [ + 8.37, + 10.425, + 8.35089 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 7.375, + 1.5, + 7, + 1.625 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 1, + 7, + 1.125, + 7.375 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 1.875, + 7.125, + 1.5, + 7 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 7, + 1, + 7.125, + 1.375 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 0, + 6, + 0.375, + 6.375 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 0.5, + 6, + 0.875, + 6.375 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.63, + 10.325, + 8.35089 + ], + "to": [ + 8.37, + 10.425, + 8.46089 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 7.375, + 2.5, + 7, + 2.625 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 3, + 10, + 3.125, + 10.125 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 2.875, + 7.125, + 2.5, + 7 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10, + 3, + 10.125, + 3.125 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 2, + 7, + 2.375, + 7.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 7, + 2, + 7.375, + 2.125 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.63, + 10.325, + 8.43089 + ], + "to": [ + 7.67, + 10.425, + 8.51089 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 10.125, + 4.5, + 10, + 4.625 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 10, + 3.5, + 10.125, + 3.625 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 4.625, + 10.125, + 4.5, + 10 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10, + 4, + 10.125, + 4.125 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 3.5, + 10, + 3.625, + 10.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 4, + 10, + 4.125, + 10.125 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 8.33, + 10.325, + 8.43089 + ], + "to": [ + 8.37, + 10.425, + 8.51089 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 10.125, + 6, + 10, + 6.125 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 10, + 5, + 10.125, + 5.125 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 6.125, + 10.125, + 6, + 10 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10, + 5.5, + 10.125, + 5.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 5, + 10, + 5.125, + 10.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 5.5, + 10, + 5.625, + 10.125 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.88, + 10.425, + 7.60089 + ], + "to": [ + 8.12, + 11.125, + 8.35089 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 7.125, + 3.5, + 7, + 3.875 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 1, + 6, + 1.375, + 6.375 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 3.625, + 7.375, + 3.5, + 7 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 6, + 1, + 6.375, + 1.375 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 3, + 7, + 3.125, + 7.375 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 7, + 3, + 7.125, + 3.375 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.93, + 11.125, + 7.60089 + ], + "to": [ + 8.07, + 14.225, + 8.00089 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 1.625, + 4.5, + 1.5, + 6 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 1.5, + 0.25 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 4.125, + 5.5, + 4, + 4 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 0.5, + 1.5, + 0.75 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 7.5, + 2, + 7.625, + 2.25 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 2.5, + 7.5, + 2.625, + 7.75 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.93, + 13.83754, + 6.45124 + ], + "to": [ + 8.07, + 14.28754, + 6.87124 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 3.625, + 7.5, + 3.5, + 7.75 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 6.5, + 2.5, + 6.75, + 2.75 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 7.625, + 3.25, + 7.5, + 3 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 3, + 6.5, + 3.25, + 6.75 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 7.5, + 2.5, + 7.625, + 2.75 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 3, + 7.5, + 3.125, + 7.75 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.93, + 14.83544, + 6.26243 + ], + "to": [ + 8.07, + 15.18544, + 6.38243 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 10.125, + 7.5, + 10, + 7.625 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 10, + 6.5, + 10.125, + 6.625 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 7.625, + 10.125, + 7.5, + 10 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10, + 7, + 10.125, + 7.125 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 6.5, + 10, + 6.625, + 10.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 7, + 10, + 7.125, + 10.125 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.93, + 15.14662, + 7.93312 + ], + "to": [ + 8.07, + 15.49662, + 8.05312 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 10.125, + 9, + 10, + 9.125 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 10, + 8, + 10.125, + 8.125 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 9.125, + 10.125, + 9, + 10 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10, + 8.5, + 10.125, + 8.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 8, + 10, + 8.125, + 10.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 8.5, + 10, + 8.625, + 10.125 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.93, + 14.96919, + 7.80832 + ], + "to": [ + 8.07, + 15.21919, + 7.97832 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0.625, + 10.5, + 0.5, + 10.625 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 10, + 9.5, + 10.125, + 9.625 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 10.625, + 0.125, + 10.5, + 0 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 10.5, + 0.125, + 10.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 9.5, + 10, + 9.625, + 10.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 10, + 10, + 10.125, + 10.125 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.93, + 14.33866, + 6.34135 + ], + "to": [ + 8.07, + 14.68866, + 6.56135 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 2.125, + 10.5, + 2, + 10.625 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 1, + 10.5, + 1.125, + 10.625 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 10.625, + 1.625, + 10.5, + 1.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 1.5, + 10.5, + 1.625, + 10.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 10.5, + 0.5, + 10.625, + 0.625 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 10.5, + 1, + 10.625, + 1.125 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.93, + 14.38002, + 7.69113 + ], + "to": [ + 8.07, + 14.73002, + 8.06113 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 3.625, + 10.5, + 3.5, + 10.625 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 2.5, + 10.5, + 2.625, + 10.625 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 10.625, + 3.125, + 10.5, + 3 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 3, + 10.5, + 3.125, + 10.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 10.5, + 2, + 10.625, + 2.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 10.5, + 2.5, + 10.625, + 2.625 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.93, + 11.125, + 8.20089 + ], + "to": [ + 8.07, + 13.875, + 8.35089 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 2.125, + 5, + 2, + 6.375 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 4.5, + 1, + 5.875, + 1.125 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 4.625, + 4.875, + 4.5, + 3.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 4.5, + 3, + 5.875, + 3.125 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 10.5, + 3.5, + 10.625, + 3.625 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 4, + 10.5, + 4.125, + 10.625 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.93, + 13.53264, + 9.22026 + ], + "to": [ + 8.07, + 13.73264, + 9.37026 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 5.625, + 10.5, + 5.5, + 10.625 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 4.5, + 10.5, + 4.625, + 10.625 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 10.625, + 5.125, + 10.5, + 5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 5, + 10.5, + 5.125, + 10.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 10.5, + 4, + 10.625, + 4.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 10.5, + 4.5, + 10.625, + 4.625 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.93, + 13.90621, + 9.30451 + ], + "to": [ + 8.07, + 14.10621, + 9.45451 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 7.125, + 10.5, + 7, + 10.625 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 6, + 10.5, + 6.125, + 10.625 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 10.625, + 6.625, + 10.5, + 6.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 6.5, + 10.5, + 6.625, + 10.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 10.5, + 5.5, + 10.625, + 5.625 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 10.5, + 6, + 10.625, + 6.125 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.93, + 14.27977, + 9.38876 + ], + "to": [ + 8.07, + 14.47977, + 9.53876 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 8.625, + 10.5, + 8.5, + 10.625 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 7.5, + 10.5, + 7.625, + 10.625 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 10.625, + 8.125, + 10.5, + 8 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8, + 10.5, + 8.125, + 10.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 10.5, + 7, + 10.625, + 7.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 10.5, + 7.5, + 10.625, + 7.625 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.93, + 14.65335, + 9.47302 + ], + "to": [ + 8.07, + 14.95335, + 9.62302 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 10.125, + 10.5, + 10, + 10.625 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 9, + 10.5, + 9.125, + 10.625 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 10.625, + 9.625, + 10.5, + 9.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9.5, + 10.5, + 9.625, + 10.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 10.5, + 8.5, + 10.625, + 8.625 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 10.5, + 9, + 10.625, + 9.125 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.93, + 14.00237, + 8.13577 + ], + "to": [ + 8.07, + 14.25237, + 8.28577 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 11.125, + 0.5, + 11, + 0.625 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 10.5, + 10.5, + 10.625, + 10.625 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 0.625, + 11.125, + 0.5, + 11 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11, + 0, + 11.125, + 0.125 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 10.5, + 10, + 10.625, + 10.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 0, + 11, + 0.125, + 11.125 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.93, + 14.37975, + 7.97065 + ], + "to": [ + 8.07, + 14.62975, + 8.22065 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 11.125, + 2, + 11, + 2.125 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 11, + 1, + 11.125, + 1.125 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 2.125, + 11.125, + 2, + 11 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11, + 1.5, + 11.125, + 1.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 1, + 11, + 1.125, + 11.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 1.5, + 11, + 1.625, + 11.125 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.93, + 14.65712, + 7.90553 + ], + "to": [ + 8.07, + 15.00712, + 8.15553 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 11.125, + 3.5, + 11, + 3.625 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 11, + 2.5, + 11.125, + 2.625 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 3.625, + 11.125, + 3.5, + 11 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11, + 3, + 11.125, + 3.125 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 2.5, + 11, + 2.625, + 11.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 3, + 11, + 3.125, + 11.125 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.88, + 13.525, + 8.00089 + ], + "to": [ + 8.12, + 13.675, + 8.20089 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 11.125, + 5, + 11, + 5.125 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 11, + 4, + 11.125, + 4.125 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 5.125, + 11.125, + 5, + 11 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11, + 4.5, + 11.125, + 4.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 4, + 11, + 4.125, + 11.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 4.5, + 11, + 4.625, + 11.125 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.88, + 13.875, + 8.05089 + ], + "to": [ + 8.12, + 14.025, + 8.20089 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 11.125, + 6.5, + 11, + 6.625 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 11, + 5.5, + 11.125, + 5.625 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 6.625, + 11.125, + 6.5, + 11 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11, + 6, + 11.125, + 6.125 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 5.5, + 11, + 5.625, + 11.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 6, + 11, + 6.125, + 11.125 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.88, + 13.72862, + 9.13908 + ], + "to": [ + 8.12, + 13.77862, + 9.28908 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 11.125, + 8, + 11, + 8.125 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 11, + 7, + 11.125, + 7.125 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 8.125, + 11.125, + 8, + 11 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11, + 7.5, + 11.125, + 7.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 7, + 11, + 7.125, + 11.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 7.5, + 11, + 7.625, + 11.125 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.88, + 13.97119, + 8.03176 + ], + "to": [ + 8.12, + 14.12119, + 8.18176 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 11.125, + 9.5, + 11, + 9.625 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 11, + 8.5, + 11.125, + 8.625 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 9.625, + 11.125, + 9.5, + 11 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11, + 9, + 11.125, + 9.125 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 8.5, + 11, + 8.625, + 11.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 9, + 11, + 9.125, + 11.125 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.88, + 13.82482, + 9.15822 + ], + "to": [ + 8.12, + 13.87482, + 9.30822 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 0.125, + 11.5, + 0, + 11.625 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 11, + 10, + 11.125, + 10.125 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 11.125, + 11.125, + 11, + 11 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11, + 10.5, + 11.125, + 10.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 10, + 11, + 10.125, + 11.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 10.5, + 11, + 10.625, + 11.125 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.88, + 14.06739, + 8.03262 + ], + "to": [ + 8.12, + 14.21739, + 8.16262 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 1.625, + 11.5, + 1.5, + 11.625 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 0.5, + 11.5, + 0.625, + 11.625 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 11.625, + 1.125, + 11.5, + 1 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 1, + 11.5, + 1.125, + 11.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 11.5, + 0, + 11.625, + 0.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 11.5, + 0.5, + 11.625, + 0.625 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.88, + 14.17119, + 8.02002 + ], + "to": [ + 8.12, + 14.27119, + 8.12002 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 3.125, + 11.5, + 3, + 11.625 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 2, + 11.5, + 2.125, + 11.625 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 11.625, + 2.625, + 11.5, + 2.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 2.5, + 11.5, + 2.625, + 11.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 11.5, + 1.5, + 11.625, + 1.625 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 11.5, + 2, + 11.625, + 2.125 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.88, + 14.21358, + 8.05829 + ], + "to": [ + 8.12, + 14.41358, + 8.10829 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 4.625, + 11.5, + 4.5, + 11.625 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 3.5, + 11.5, + 3.625, + 11.625 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 11.625, + 4.125, + 11.5, + 4 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 4, + 11.5, + 4.125, + 11.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 11.5, + 3, + 11.625, + 3.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 11.5, + 3.5, + 11.625, + 3.625 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.88, + 14.04062, + 6.8208 + ], + "to": [ + 8.12, + 14.14062, + 6.8708 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 6.125, + 11.5, + 6, + 11.625 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 5, + 11.5, + 5.125, + 11.625 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 11.625, + 5.625, + 11.5, + 5.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 5.5, + 11.5, + 5.625, + 11.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 11.5, + 4.5, + 11.625, + 4.625 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 11.5, + 5, + 11.625, + 5.125 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.88, + 13.92101, + 9.27736 + ], + "to": [ + 8.12, + 14.07101, + 9.32736 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 7.625, + 11.5, + 7.5, + 11.625 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 6.5, + 11.5, + 6.625, + 11.625 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 11.625, + 7.125, + 11.5, + 7 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 7, + 11.5, + 7.125, + 11.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 11.5, + 6, + 11.625, + 6.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 11.5, + 6.5, + 11.625, + 6.625 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.88, + 13.675, + 8.17589 + ], + "to": [ + 8.12, + 13.875, + 8.20089 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 9.125, + 11.5, + 9, + 11.625 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 8, + 11.5, + 8.125, + 11.625 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 11.625, + 8.625, + 11.5, + 8.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8.5, + 11.5, + 8.625, + 11.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 11.5, + 7.5, + 11.625, + 7.625 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 11.5, + 8, + 11.625, + 8.125 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.88, + 13.675, + 8.00089 + ], + "to": [ + 8.12, + 13.875, + 8.02589 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 10.625, + 11.5, + 10.5, + 11.625 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 9.5, + 11.5, + 9.625, + 11.625 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 11.625, + 10.125, + 11.5, + 10 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 10, + 11.5, + 10.125, + 11.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 11.5, + 9, + 11.625, + 9.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 11.5, + 9.5, + 11.625, + 9.625 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.88, + 13.875, + 8.00089 + ], + "to": [ + 8.12, + 14.125, + 8.05089 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 12.125, + 0, + 12, + 0.125 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 11, + 11.5, + 11.125, + 11.625 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 0.125, + 12.125, + 0, + 12 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 11.5, + 11.5, + 11.625, + 11.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 11.5, + 10.5, + 11.625, + 10.625 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 11.5, + 11, + 11.625, + 11.125 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.88, + 13.89823, + 6.85907 + ], + "to": [ + 8.12, + 13.94823, + 6.90907 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 12.125, + 1.5, + 12, + 1.625 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 12, + 0.5, + 12.125, + 0.625 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 1.625, + 12.125, + 1.5, + 12 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 12, + 1, + 12.125, + 1.125 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 0.5, + 12, + 0.625, + 12.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 1, + 12, + 1.125, + 12.125 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.88, + 11.125, + 8.10089 + ], + "to": [ + 8.12, + 13.525, + 8.20089 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 4.625, + 5, + 4.5, + 6.25 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 5, + 0, + 6.25, + 0.125 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 5.125, + 5.25, + 5, + 4 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 5, + 3.5, + 6.25, + 3.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 2, + 12, + 2.125, + 12.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 12, + 2, + 12.125, + 2.125 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.88, + 11.125, + 8.00089 + ], + "to": [ + 8.12, + 13.525, + 8.05089 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 2.625, + 5.5, + 2.5, + 6.75 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 5.5, + 1.25, + 5.625 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 5.625, + 2.75, + 5.5, + 1.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 5.5, + 0.5, + 6.75, + 0.625 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 2.5, + 12, + 2.625, + 12.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 12, + 2.5, + 12.125, + 2.625 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.93, + 11.125, + 8.05089 + ], + "to": [ + 8.07, + 13.525, + 8.10089 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 11.14145, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 5.125, + 5.5, + 5, + 6.75 + ], + "rotation": 180, + "texture": "#2" + }, + "east": { + "uv": [ + 3, + 5.5, + 4.25, + 5.625 + ], + "rotation": 270, + "texture": "#2" + }, + "south": { + "uv": [ + 5.625, + 5.75, + 5.5, + 4.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 5.5, + 4, + 6.75, + 4.125 + ], + "rotation": 90, + "texture": "#2" + }, + "up": { + "uv": [ + 3, + 12, + 3.125, + 12.125 + ], + "rotation": 180, + "texture": "#2" + }, + "down": { + "uv": [ + 12, + 3, + 12.125, + 3.125 + ], + "texture": "#2" + } + } + } + ], + "gui_light": "front", + "display": { + "thirdperson_righthand": { + "translation": [ + 0, + -2.75, + 1 + ], + "scale": [ + 1.5, + 1.5, + 1.5 + ] + }, + "thirdperson_lefthand": { + "translation": [ + 0, + -2.75, + 1 + ], + "scale": [ + 1.5, + 1.5, + 1.5 + ] + }, + "firstperson_righthand": { + "rotation": [ + 10.99, + 0.32, + -8.5 + ], + "translation": [ + -1, + -1.5, + 0 + ], + "scale": [ + 1.5, + 1.5, + 1.5 + ] + }, + "firstperson_lefthand": { + "rotation": [ + 10.99, + 0.32, + -8.5 + ], + "translation": [ + -1, + -1.5, + 0 + ], + "scale": [ + 1.5, + 1.5, + 1.5 + ] + }, + "ground": { + "rotation": [ + 45, + 0, + 0 + ], + "translation": [ + 0, + -2, + -0.5 + ], + "scale": [ + 1.2, + 1.2, + 1.2 + ] + }, + "gui": { + "rotation": [ + 90, + 45, + -90 + ], + "translation": [ + -4.25, + -4, + 0 + ], + "scale": [ + 2, + 2, + 2 + ] + }, + "head": { + "rotation": [ + -111.95, + 0, + 177.22 + ], + "translation": [ + 0.5, + -0.5, + -13.75 + ], + "scale": [ + 2, + 2, + 2 + ] + }, + "fixed": { + "rotation": [ + -90, + 45, + 90 + ], + "translation": [ + 4.25, + -4.75, + 0 + ], + "scale": [ + 2, + 2, + 2 + ] + } + }, + "groups": [ + { + "name": "group", + "origin": [ + 8, + 8, + 6.66589 + ], + "color": 0, + "children": [ + { + "name": "group", + "origin": [ + 8.23839, + 4.87374, + 12.66589 + ], + "color": 0, + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + { + "name": "group", + "origin": [ + 8, + 4.775, + 12.66589 + ], + "color": 6, + "children": [ + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16 + ] + }, + { + "name": "group", + "origin": [ + 8, + 4.775, + 12.66589 + ], + "color": 5, + "children": [ + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47 + ] + }, + { + "name": "group", + "origin": [ + 8, + 4.995, + 13.74089 + ], + "color": 0, + "children": [ + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80 + ] + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/light_saber.json b/src/main/resources/assets/superbwarfare/models/item/light_saber.json new file mode 100644 index 000000000..85ca9784e --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/light_saber.json @@ -0,0 +1,6 @@ +{ + "parent": "superbwarfare:displaysettings/lightsaber.item", + "textures": { + "layer0": "superbwarfare:item/lightsaber" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/longer_wire.json b/src/main/resources/assets/superbwarfare/models/item/longer_wire.json new file mode 100644 index 000000000..8606841f9 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/longer_wire.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/perk/longer_wire" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/lunge_mine.json b/src/main/resources/assets/superbwarfare/models/item/lunge_mine.json new file mode 100644 index 000000000..321ea2710 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/lunge_mine.json @@ -0,0 +1,27 @@ +{ + "loader": "forge:separate_transforms", + "gui_light": "front", + "base": { + "parent": "superbwarfare:item/lunge_mine_base" + }, + "perspectives": { + "gui": { + "parent": "superbwarfare:item/lunge_mine_icon" + }, + "thirdperson_righthand": { + "parent": "superbwarfare:item/lunge_mine_3d" + }, + "thirdperson_lefthand": { + "parent": "superbwarfare:item/lunge_mine_icon" + }, + "ground": { + "parent": "superbwarfare:item/lunge_mine_icon" + }, + "fixed": { + "parent": "superbwarfare:item/lunge_mine_icon" + }, + "head": { + "parent": "superbwarfare:item/lunge_mine_base" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/lunge_mine_3d.json b/src/main/resources/assets/superbwarfare/models/item/lunge_mine_3d.json new file mode 100644 index 000000000..e26ce451a --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/lunge_mine_3d.json @@ -0,0 +1,2265 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 32, + 32 + ], + "textures": { + "1": "superbwarfare:item/lunge_mine" + }, + "elements": [ + { + "name": "cube2", + "from": [ + 7.7901, + -15.35316, + 7.49326 + ], + "to": [ + 8.2099, + 19.64684, + 8.50674 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 5.14684, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 0.5, + 0, + 1 + ], + "rotation": 270, + "texture": "#1" + }, + "south": { + "uv": [ + 10.5, + 2.5, + 0, + 2 + ], + "rotation": 270, + "texture": "#1" + }, + "down": { + "uv": [ + 8, + 10, + 8.5, + 10.5 + ], + "texture": "#1" + } + } + }, + { + "name": "cube3", + "from": [ + 7.7901, + -15.35316, + 7.49326 + ], + "to": [ + 8.2099, + 19.64684, + 8.50674 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 8, + 5.14684, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 1, + 0, + 1.5 + ], + "rotation": 270, + "texture": "#1" + }, + "south": { + "uv": [ + 10.5, + 0.5, + 0, + 0 + ], + "rotation": 270, + "texture": "#1" + }, + "down": { + "uv": [ + 8, + 10, + 8.5, + 10.5 + ], + "texture": "#1" + } + } + }, + { + "name": "cube4", + "from": [ + 7.49326, + -15.35316, + 7.7901 + ], + "to": [ + 8.50674, + 19.64684, + 8.2099 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 8, + 5.14684, + 8 + ] + }, + "faces": { + "east": { + "uv": [ + 10.5, + 0.5, + 0, + 0 + ], + "rotation": 270, + "texture": "#1" + }, + "west": { + "uv": [ + 10.5, + 2, + 0, + 2.5 + ], + "rotation": 270, + "texture": "#1" + }, + "down": { + "uv": [ + 8, + 10, + 8.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + } + } + }, + { + "name": "cube3", + "from": [ + 7.49326, + -15.35316, + 7.7901 + ], + "to": [ + 8.50674, + 19.64684, + 8.2099 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 5.14684, + 8 + ] + }, + "faces": { + "east": { + "uv": [ + 10.5, + 0.5, + 0, + 0 + ], + "rotation": 270, + "texture": "#1" + }, + "west": { + "uv": [ + 10.5, + 1.5, + 0, + 2 + ], + "rotation": 270, + "texture": "#1" + }, + "down": { + "uv": [ + 8, + 10, + 8.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + } + } + }, + { + "name": "cube5", + "from": [ + 7.7901, + -15.35316, + 7.49326 + ], + "to": [ + 8.2099, + 19.64684, + 8.50674 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 8, + 5.14684, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 0.5, + 0, + 0 + ], + "rotation": 270, + "texture": "#1" + }, + "south": { + "uv": [ + 10.5, + 0.5, + 0, + 1 + ], + "rotation": 270, + "texture": "#1" + }, + "down": { + "uv": [ + 8, + 10, + 8.5, + 10.5 + ], + "rotation": 180, + "texture": "#1" + } + } + }, + { + "name": "cube4", + "from": [ + 7.7901, + -15.35316, + 7.49326 + ], + "to": [ + 8.2099, + 19.64684, + 8.50674 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 5.14684, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 0.5, + 0, + 0 + ], + "rotation": 270, + "texture": "#1" + }, + "south": { + "uv": [ + 10.5, + 0.5, + 0, + 1 + ], + "rotation": 270, + "texture": "#1" + }, + "down": { + "uv": [ + 8, + 10, + 8.5, + 10.5 + ], + "rotation": 180, + "texture": "#1" + } + } + }, + { + "name": "cube4", + "from": [ + 7.34124, + 19.64684, + 7.72713 + ], + "to": [ + 8.65876, + 22.64684, + 8.27287 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 25.64684, + 8 + ] + }, + "faces": { + "east": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "west": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "up": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + } + } + }, + { + "name": "cube5", + "from": [ + 7.34124, + 19.64684, + 7.72713 + ], + "to": [ + 8.65876, + 22.64684, + 8.27287 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 8, + 25.64684, + 8 + ] + }, + "faces": { + "east": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "west": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "up": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + } + } + }, + { + "name": "cube6", + "from": [ + 7.72713, + 19.64684, + 7.34124 + ], + "to": [ + 8.27287, + 22.64684, + 8.65876 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 25.64684, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "up": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 180, + "texture": "#1" + } + } + }, + { + "name": "cube7", + "from": [ + 7.72713, + 19.64684, + 7.34124 + ], + "to": [ + 8.27287, + 22.64684, + 8.65876 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 8, + 25.64684, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "up": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 180, + "texture": "#1" + } + } + }, + { + "name": "cube5", + "from": [ + 7.07774, + 22.64684, + 7.61799 + ], + "to": [ + 8.92226, + 24, + 8.38201 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 17.04684, + 8 + ] + }, + "faces": { + "east": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "west": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "up": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + } + } + }, + { + "name": "cube6", + "from": [ + 7.07774, + 22.64684, + 7.61799 + ], + "to": [ + 8.92226, + 24, + 8.38201 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 8, + 17.04684, + 8 + ] + }, + "faces": { + "east": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "west": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "up": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + } + } + }, + { + "name": "cube7", + "from": [ + 7.61799, + 22.64684, + 7.07774 + ], + "to": [ + 8.38201, + 24, + 8.92226 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 17.04684, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "up": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 180, + "texture": "#1" + } + } + }, + { + "name": "cube8", + "from": [ + 7.61799, + 22.64684, + 7.07774 + ], + "to": [ + 8.38201, + 24, + 8.92226 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 8, + 17.04684, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "up": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 180, + "texture": "#1" + } + } + }, + { + "name": "cube6", + "from": [ + 6.80106, + 24, + 7.50338 + ], + "to": [ + 9.19894, + 25.25, + 8.49662 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 14.96089, + 8 + ] + }, + "faces": { + "east": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "west": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "up": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + } + } + }, + { + "name": "cube7", + "from": [ + 6.80106, + 24, + 7.50338 + ], + "to": [ + 9.19894, + 25.25, + 8.49662 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 8, + 14.96089, + 8 + ] + }, + "faces": { + "east": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "west": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "up": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + } + } + }, + { + "name": "cube8", + "from": [ + 7.50338, + 24, + 6.80106 + ], + "to": [ + 8.49662, + 25.25, + 9.19894 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 14.96089, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "up": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 180, + "texture": "#1" + } + } + }, + { + "name": "cube9", + "from": [ + 7.50338, + 24, + 6.80106 + ], + "to": [ + 8.49662, + 25.25, + 9.19894 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 8, + 14.96089, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "up": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 180, + "texture": "#1" + } + } + }, + { + "name": "cube7", + "from": [ + 6.44138, + 25.25, + 7.3544 + ], + "to": [ + 9.55862, + 26.75, + 8.6456 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 11.87415, + 8 + ] + }, + "faces": { + "east": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "west": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "up": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + } + } + }, + { + "name": "cube8", + "from": [ + 6.44138, + 25.25, + 7.3544 + ], + "to": [ + 9.55862, + 26.75, + 8.6456 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 8, + 11.87415, + 8 + ] + }, + "faces": { + "east": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "west": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "up": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + } + } + }, + { + "name": "cube9", + "from": [ + 7.3544, + 25.25, + 6.44138 + ], + "to": [ + 8.6456, + 26.75, + 9.55862 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 11.87415, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "up": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 180, + "texture": "#1" + } + } + }, + { + "name": "cube10", + "from": [ + 7.3544, + 25.25, + 6.44138 + ], + "to": [ + 8.6456, + 26.75, + 9.55862 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 8, + 11.87415, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "up": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 180, + "texture": "#1" + } + } + }, + { + "name": "cube8", + "from": [ + 5.9738, + 26.75, + 7.16072 + ], + "to": [ + 10.0262, + 28.5, + 8.83928 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 25.775, + 8 + ] + }, + "faces": { + "east": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "west": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "up": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + } + } + }, + { + "name": "cube9", + "from": [ + 5.9738, + 26.75, + 7.16072 + ], + "to": [ + 10.0262, + 28.5, + 8.83928 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 8, + 25.775, + 8 + ] + }, + "faces": { + "east": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "west": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "up": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + } + } + }, + { + "name": "cube10", + "from": [ + 7.16072, + 26.75, + 5.9738 + ], + "to": [ + 8.83928, + 28.5, + 10.0262 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 25.775, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "up": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 180, + "texture": "#1" + } + } + }, + { + "name": "cube11", + "from": [ + 7.16072, + 26.75, + 5.9738 + ], + "to": [ + 8.83928, + 28.5, + 10.0262 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 8, + 25.775, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "up": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 180, + "texture": "#1" + } + } + }, + { + "name": "cube9", + "from": [ + 5.36593, + 28.5, + 6.90893 + ], + "to": [ + 10.63407, + 30.25, + 9.09107 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 27.3625, + 8 + ] + }, + "faces": { + "east": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "west": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "up": { + "uv": [ + 7, + 4.5, + 7.5, + 6.5 + ], + "rotation": 90, + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + } + } + }, + { + "name": "cube10", + "from": [ + 7.875, + 30.24093, + 9.875 + ], + "to": [ + 8.125, + 32, + 10.125 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 8, + 31.12047, + 10 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 7, + 8, + 8 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.5, + 7, + 8, + 8 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.5, + 7, + 8, + 8 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.5, + 7, + 8, + 8 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8, + 5.5, + 8.5, + 6 + ], + "texture": "#1" + } + } + }, + { + "name": "cube11", + "from": [ + 9.875, + 30.24093, + 6.875 + ], + "to": [ + 10.125, + 32, + 7.125 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 10, + 31.12047, + 7 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 7, + 8, + 8 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.5, + 7, + 8, + 8 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.5, + 7, + 8, + 8 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.5, + 7, + 8, + 8 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8, + 5.5, + 8.5, + 6 + ], + "texture": "#1" + } + } + }, + { + "name": "cube12", + "from": [ + 5.875, + 30.24093, + 6.875 + ], + "to": [ + 6.125, + 32, + 7.125 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 6, + 31.12047, + 7 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 7, + 7.5, + 8 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8, + 7, + 7.5, + 8 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 7, + 7.5, + 8 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8, + 7, + 7.5, + 8 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.5, + 5.5, + 8, + 6 + ], + "texture": "#1" + } + } + }, + { + "name": "cube10", + "from": [ + 5.36593, + 28.5, + 6.90893 + ], + "to": [ + 10.63407, + 30.25, + 9.09107 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 8, + 27.3625, + 8 + ] + }, + "faces": { + "east": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "west": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "up": { + "uv": [ + 7, + 4.5, + 7.5, + 6.5 + ], + "rotation": 90, + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + } + } + }, + { + "name": "cube11", + "from": [ + 6.90893, + 28.5, + 5.36593 + ], + "to": [ + 9.09107, + 30.25, + 10.63407 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 27.3625, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "up": { + "uv": [ + 7, + 4.5, + 7.5, + 6.5 + ], + "rotation": 180, + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "texture": "#1" + } + } + }, + { + "name": "cube12", + "from": [ + 6.90893, + 28.5, + 5.36593 + ], + "to": [ + 9.09107, + 30.25, + 10.63407 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 8, + 27.3625, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "rotation": 90, + "texture": "#1" + }, + "up": { + "uv": [ + 7, + 4.5, + 7.5, + 6.5 + ], + "rotation": 180, + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 10, + 7.5, + 10.5 + ], + "texture": "#1" + } + } + } + ], + "display": { + "thirdperson_righthand": { + "rotation": [ + 23.03, + 4.5, + 9.89 + ], + "translation": [ + -4.25, + 15.75, + 9 + ] + }, + "thirdperson_lefthand": { + "scale": [ + 0, + 0, + 0 + ] + }, + "firstperson_righthand": { + "translation": [ + -4.5, + 0, + 0 + ] + }, + "firstperson_lefthand": { + "scale": [ + 0, + 0, + 0 + ] + }, + "ground": { + "rotation": [ + -90, + 0, + 0 + ], + "translation": [ + 0, + 24.75, + 0 + ] + }, + "gui": { + "rotation": [ + 138.65, + -34.86, + 151.18 + ], + "translation": [ + 0, + -0.25, + 0 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] + }, + "head": { + "rotation": [ + -90, + 0, + 0 + ], + "translation": [ + 0, + 29.75, + 0 + ] + }, + "fixed": { + "rotation": [ + 90, + 45, + -90 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] + } + }, + "groups": [ + { + "name": "group", + "origin": [ + 8.5, + 9.14684, + -22.2099 + ], + "color": 0, + "children": [ + 0, + 1, + 2, + 3, + 4, + 5 + ] + }, + { + "name": "group", + "origin": [ + 8.5, + 9.14684, + -22.2099 + ], + "color": 0, + "children": [ + 6, + 7, + 8, + 9 + ] + }, + { + "name": "group", + "origin": [ + 8.5, + 9.14684, + -22.2099 + ], + "color": 0, + "children": [ + 10, + 11, + 12, + 13 + ] + }, + { + "name": "group", + "origin": [ + 8.5, + 9.14684, + -22.2099 + ], + "color": 0, + "children": [ + 14, + 15, + 16, + 17 + ] + }, + { + "name": "group", + "origin": [ + 8.5, + 9.14684, + -22.2099 + ], + "color": 0, + "children": [ + 18, + 19, + 20, + 21 + ] + }, + { + "name": "group", + "origin": [ + 8.5, + 9.14684, + -22.2099 + ], + "color": 0, + "children": [ + 22, + 23, + 24, + 25 + ] + }, + { + "name": "group", + "origin": [ + 8.5, + 9.14684, + -22.2099 + ], + "color": 0, + "children": [ + 26, + 27, + 28, + 29, + 30, + 31, + 32 + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/lunge_mine_base.json b/src/main/resources/assets/superbwarfare/models/item/lunge_mine_base.json new file mode 100644 index 000000000..6e3abc98c --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/lunge_mine_base.json @@ -0,0 +1,6 @@ +{ + "parent": "superbwarfare:displaysettings/lunge_mine", + "textures": { + "layer0": "superbwarfare:item/lunge_mine" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/lunge_mine_icon.json b/src/main/resources/assets/superbwarfare/models/item/lunge_mine_icon.json new file mode 100644 index 000000000..615f6a253 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/lunge_mine_icon.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/lunge_mine_icon" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/m1911_3d.json b/src/main/resources/assets/superbwarfare/models/item/m1911_3d.json new file mode 100644 index 000000000..50f251363 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/m1911_3d.json @@ -0,0 +1,1109 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 32, + 32 + ], + "textures": { + "0": "superbwarfare:item/m1911_3d", + "particle": "superbwarfare:item/m1911_3d" + }, + "elements": [ + { + "from": [ + 7.2, + 6, + 0 + ], + "to": [ + 8.8, + 7.8, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7, + 6, + 2 + ] + }, + "faces": { + "north": { + "uv": [ + 6.5, + 2, + 7.5, + 3 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 7, + 1 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 3, + 7.5, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 1, + 7, + 2 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 9, + 0, + 2 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 2, + 1, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.3, + 5, + 3.85 + ], + "to": [ + 8.7, + 6, + 13.65 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7, + 4, + 2 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 1.5, + 8.5, + 2 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 5, + 10, + 5.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 8, + 8.5, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 5.5, + 10, + 6 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 11, + 5, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 6, + 5.5, + 11 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.3, + 5.4, + 0.05 + ], + "to": [ + 8.7, + 6, + 3.85 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7, + 4, + 2 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 0, + 9, + 0.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 4, + 8.5, + 4.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 0.5, + 9, + 1 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 4.5, + 8.5, + 5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 8, + 6.5, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 0, + 7, + 2 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.3, + 5.5, + 13.65 + ], + "to": [ + 8.7, + 6, + 15.05 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7, + 4, + 2 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 1, + 9, + 1.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 1.5, + 9, + 2 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 2, + 9, + 2.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 2.5, + 9, + 3 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 3.5, + 8.5, + 3 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 3.5, + 8.5, + 4 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.3, + 5.17482, + 13.61523 + ], + "to": [ + 8.7, + 5.67482, + 14.71523 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 5.42482, + 13.91523 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 4, + 9, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 4.5, + 9, + 5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 7, + 9, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 8.5, + 8, + 9 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 8, + 8.5, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 8.5, + 8, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.7, + 6, + 13.85 + ], + "to": [ + 8.3, + 7.4, + 14.35 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7, + 4, + 2 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 8, + 9, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 8.5, + 9, + 9 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 9, + 0.5, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 0, + 9.5, + 0.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 9.5, + 0.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 0.5, + 9, + 1 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.7, + 7.38691, + 14.19239 + ], + "to": [ + 8.3, + 7.68691, + 14.99239 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 7.43691, + 15.09239 + ] + }, + "faces": { + "north": { + "uv": [ + 1, + 9, + 1.5, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 1, + 9.5, + 1.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 9, + 2, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 1.5, + 9.5, + 2 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 9.5, + 2, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 2, + 9, + 2.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.65, + 3.25, + 7.75 + ], + "to": [ + 8.35, + 5, + 8 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7, + 4, + 1 + ] + }, + "faces": { + "north": { + "uv": [ + 2, + 8, + 2.5, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 8, + 3, + 9 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 8, + 3.5, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 8, + 4, + 9 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 9.5, + 2.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 2.5, + 9, + 3 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.85, + 3.35213, + 10.26309 + ], + "to": [ + 8.15, + 5.60213, + 11.41309 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 4.72713, + 10.53809 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 8, + 4.5, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 8, + 5, + 9 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 8, + 7, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 7, + 8.5, + 8 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 9.5, + 3, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 3, + 9, + 3.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.6, + 6.60213, + -0.13691 + ], + "to": [ + 8.4, + 7.40213, + 0.11309 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 7.00213, + 0.68809 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 8, + 4.5, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 8, + 5, + 9 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 8, + 7, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 7, + 8.5, + 8 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 9.5, + 3, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 3, + 9, + 3.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.65, + 3.25, + 8 + ], + "to": [ + 8.35, + 3.5, + 11.75 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 3.375, + 8.875 + ] + }, + "faces": { + "north": { + "uv": [ + 3.5, + 9, + 4, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 6, + 9, + 6.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 3.5, + 9.5, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 6.5, + 9, + 7 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 9, + 7, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 0, + 7.5, + 2 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.10781, + -0.31537, + 11.55224 + ], + "to": [ + 8.89219, + 5.23463, + 13.75224 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 7, + 4.23463, + 12.15224 + ] + }, + "faces": { + "north": { + "uv": [ + 2, + 5, + 3, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 2, + 6, + 5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 5, + 4, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 5, + 5, + 8 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 3, + 7.5, + 2 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 3, + 7.5, + 4 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.30781, + -0.51537, + 11.15224 + ], + "to": [ + 8.69219, + 5.53463, + 13.95224 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 7, + 4.23463, + 12.15224 + ] + }, + "faces": { + "north": { + "uv": [ + 6, + 2, + 6.5, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 2, + 3.5, + 5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 6, + 6.5, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 2, + 5, + 5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 8.5, + 7.5, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 0, + 8, + 1.5 + ], + "texture": "#0" + } + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [ + -1, + 1.5, + 0 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] + }, + "thirdperson_lefthand": { + "scale": [ + 0, + 0, + 0 + ] + }, + "firstperson_lefthand": { + "translation": [ + 0, + -80, + 0 + ], + "scale": [ + 0, + 0, + 0 + ] + }, + "ground": { + "translation": [ + 0, + -0.25, + 0 + ], + "scale": [ + 0.75, + 0.75, + 0.75 + ] + }, + "head": { + "translation": [ + 0, + 10.25, + 0 + ] + }, + "fixed": { + "rotation": [ + 90, + 45, + -90 + ], + "translation": [ + 1.25, + 4, + 0 + ], + "scale": [ + 1.2, + 1.2, + 1.2 + ] + } + }, + "groups": [ + { + "name": "group", + "origin": [ + 7, + 4.23463, + 12.15224 + ], + "color": 0, + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12 + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/m1911_icon.json b/src/main/resources/assets/superbwarfare/models/item/m1911_icon.json new file mode 100644 index 000000000..c52a8d43b --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/m1911_icon.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/m1911_icon" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/m43d.json b/src/main/resources/assets/superbwarfare/models/item/m43d.json new file mode 100644 index 000000000..c88893c1b --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/m43d.json @@ -0,0 +1,1410 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 32, + 32 + ], + "textures": { + "0": "superbwarfare:item/m43d", + "particle": "superbwarfare:item/m43d" + }, + "elements": [ + { + "from": [ + 7.25, + 5.75, + 6.5 + ], + "to": [ + 8.75, + 8, + 13.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 7, + 6.5 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 8.5, + 9.5, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 3.5, + 1 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 9, + 1, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 1, + 3.5, + 2 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 5.5, + 0, + 2 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 2, + 1, + 5.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 6.75, + 13.25 + ], + "to": [ + 8.75, + 8, + 20.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 7, + 6.5 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 6, + 11, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 4, + 10.5, + 4.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 7, + 11, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 6.5, + 11.5, + 7 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 5.5, + 2, + 2 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 2, + 3, + 5.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.85, + 6.45, + -0.65 + ], + "to": [ + 9.15, + 7.7, + 6.35 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 6.7, + -7.4 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 6, + 11, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 4, + 10.5, + 4.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 7, + 11, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 6.5, + 11.5, + 7 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 5.5, + 2, + 2 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 2, + 3, + 5.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.26367, + 3.75, + 19.25 + ], + "to": [ + 8.73633, + 7.97656, + 20.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.98633, + 7, + 6.5 + ] + }, + "faces": { + "north": { + "uv": [ + 2, + 6.5, + 3, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 0, + 9.5, + 2 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 6.5, + 4, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 9, + 1.5, + 11 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 8, + 10, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 9.5, + 10, + 10 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 5.25, + 15.25 + ], + "to": [ + 8.75, + 6.75, + 20.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 7, + 6.5 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 2, + 10, + 3 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 5.5, + 2.5, + 6.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 3, + 10, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 5.5, + 5, + 6.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 8, + 5, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 2, + 6, + 4.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 5.25, + 15.5 + ], + "to": [ + 8.75, + 7, + 20.75 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 7.375, + 16.75 + ] + }, + "faces": { + "north": { + "uv": [ + 6, + 9, + 7, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 4.5, + 8.5, + 5.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 9, + 8, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 5.5, + 8.5, + 6.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 9, + 0, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 6.5, + 1, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 5.89011, + 14.78195 + ], + "to": [ + 8.75, + 7.14011, + 17.03195 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 8.01511, + 16.03195 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 10, + 11, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 0, + 11.5, + 0.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 0.5, + 11.5, + 1 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 1, + 11.5, + 1.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 8, + 9, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 0, + 9.5, + 1 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 4.5, + 6.5 + ], + "to": [ + 8.75, + 5.75, + 9 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 7, + 6.5 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 1.5, + 11.5, + 2 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 6, + 10, + 6.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 2, + 11.5, + 2.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 9, + 11, + 9.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 8.5, + 8, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 8.5, + 2, + 10 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 4.5, + 11 + ], + "to": [ + 8.75, + 5.75, + 12.75 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 7, + 11 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 2.5, + 11.5, + 3 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 3, + 11.5, + 3.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 3.5, + 11.5, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 4, + 11.5, + 4.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 2, + 9.5, + 1 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 9.5, + 8, + 10.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 0.92388, + 10.61732 + ], + "to": [ + 8.75, + 4.42388, + 12.36732 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 5.42388, + 10.61732 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 6.5, + 5, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 6.5, + 7, + 8.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 0, + 8, + 2 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 2, + 8, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 9, + 9.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 9.5, + 9, + 10.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 4.5, + 9 + ], + "to": [ + 8.75, + 4.75, + 11 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 7, + 6.5 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 10.5, + 9, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 8, + 11.5, + 8.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 8.5, + 11.5, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 10.5, + 10, + 11 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 11, + 0, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 10, + 1.5, + 11 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.45, + 0, + 6.4 + ], + "to": [ + 8.55, + 3.5, + 8.65 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 2.75, + 8.15 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 2, + 10.5, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 6.5, + 8, + 8.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 10, + 3, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 0, + 9, + 2 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 10, + 1.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 10.5, + 10, + 11.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.45, + 3.25157, + 6.64895 + ], + "to": [ + 8.55, + 6.75157, + 8.89895 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 6.00157, + 8.39895 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 10, + 5.5, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 2, + 9, + 4 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 10, + 6, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 8, + 6, + 10 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 11.5, + 10.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.5, + 11, + 0, + 12 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 6.5, + -8.1 + ], + "to": [ + 8.5, + 7.5, + -2.35 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 7, + 7.9 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 9, + 8.5, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 4.5, + 11.5, + 5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 8, + 9.5, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 5, + 11.5, + 5.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 11.5, + 3, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 8.5, + 3.5, + 11.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7, + 6, + -3.7 + ], + "to": [ + 9, + 8, + 6.55 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 7, + 10.2 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 9, + 8.5, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 4.5, + 11.5, + 5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 8, + 9.5, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 5, + 11.5, + 5.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 11.5, + 3, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 8.5, + 3.5, + 11.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 7.5, + -4.8 + ], + "to": [ + 8.5, + 9.5, + -3.8 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 7, + 2.7 + ] + }, + "faces": { + "north": { + "uv": [ + 0.5, + 11, + 1, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 11, + 1.5, + 12 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 11, + 2, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 11, + 2.5, + 12 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 11.5, + 8, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 11, + 8.5, + 11.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.75, + 7.5, + 12.65 + ], + "to": [ + 8.25, + 9.5, + 13 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 7, + 6.5 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 11, + 4.5, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 11, + 5, + 12 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 5.5, + 11.5, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 11, + 6.5, + 12 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 11.5, + 9, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 9, + 11, + 9.5 + ], + "texture": "#0" + } + } + } + ], + "gui_light": "front", + "display": { + "thirdperson_righthand": { + "translation": [ + -0.75, + 1.5, + -1.5 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + }, + "thirdperson_lefthand": { + "scale": [ + 0, + 0, + 0 + ] + }, + "ground": { + "translation": [ + 0, + 5.5, + 0 + ], + "scale": [ + 0.8, + 0.8, + 0.8 + ] + }, + "head": { + "translation": [ + 0, + 12.5, + -2.25 + ] + }, + "fixed": { + "rotation": [ + 90, + -45, + 90 + ], + "translation": [ + -1.5, + 1, + 0 + ], + "scale": [ + 0.9, + 0.9, + 0.9 + ] + } + }, + "groups": [ + { + "name": "m4", + "origin": [ + 8, + 7, + 6.5 + ], + "color": 0, + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16 + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/m603d.json b/src/main/resources/assets/superbwarfare/models/item/m603d.json new file mode 100644 index 000000000..6e28d62d5 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/m603d.json @@ -0,0 +1,869 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 64, + 64 + ], + "textures": { + "0": "superbwarfare:item/m603d", + "particle": "superbwarfare:item/m603d" + }, + "elements": [ + { + "from": [ + 7, + 4.75, + -3 + ], + "to": [ + 9, + 7.5, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 5.5, + 3, + 6, + 3.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 3, + 5.5, + 3.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 1.25, + 7, + 2 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 0, + 6.5, + 0.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 6.75, + 4.25, + 3.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 3.75, + 4.75, + 6.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7, + 4.75, + 18.5 + ], + "to": [ + 9, + 8, + 26.5 + ], + "faces": { + "north": { + "uv": [ + 4.25, + 6.75, + 4.75, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 5, + 2, + 5.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 6.75, + 5.25, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 5, + 4, + 5.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 7.75, + 0.5, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 5.75, + 1, + 7.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7, + 4.75, + 8.75 + ], + "to": [ + 9, + 8.5, + 18.5 + ], + "faces": { + "north": { + "uv": [ + 6.75, + 3, + 7.25, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 2, + 2.5, + 3 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 4, + 7.25, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 2, + 5, + 3 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 8, + 5.25, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.5, + 5.75, + 0, + 8.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + -6.25, + 16.25 + ], + "to": [ + 8.75, + -1.5, + 18.25 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 0, + 0, + 0 + ] + }, + "faces": { + "north": { + "uv": [ + 2.75, + 5.75, + 3.25, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 5.75, + 3.75, + 7 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 5.5, + 6.25, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 0.75, + 6.5, + 2 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 7.25, + 5.75, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 6, + 6.75, + 6.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 0.5, + -1.5, + 8.75 + ], + "to": [ + 7.5, + 6.25, + 13.75 + ], + "faces": { + "north": { + "uv": [ + 0, + 0, + 1.75, + 2 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 3, + 1.25, + 5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1.75, + 0, + 3.5, + 2 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.25, + 3, + 2.5, + 5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 2, + 3.5, + 0.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 3.75, + 2.5, + 5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.75, + 1.25, + 25.25 + ], + "to": [ + 9.25, + 8.25, + 26.75 + ], + "faces": { + "north": { + "uv": [ + 5.25, + 0.75, + 6, + 2.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 5.75, + 2, + 7.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 3.75, + 6, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 5.75, + 2.5, + 7.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 5.5, + 6.75, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 5.5, + 6.75, + 6 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7, + 1.46599, + 23.91789 + ], + "to": [ + 9, + 5.96599, + 25.66789 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 8, + 3.09099, + 24.54289 + ] + }, + "faces": { + "north": { + "uv": [ + 6, + 3, + 6.5, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 4.25, + 6.5, + 5.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 5.5, + 6.75, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 0, + 7, + 1.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 7.25, + 6.25, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 6.5, + 6.75, + 7 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7, + 4.45343, + 25.15533 + ], + "to": [ + 9, + 6.45343, + 26.90533 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 8, + 4.32843, + 25.78033 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 0, + 7.5, + 0.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 0.5, + 7.5, + 1 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 1, + 7.5, + 1.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 1.5, + 7.5, + 2 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 7.5, + 2.75, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 7, + 3.25, + 7.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 6.25, + -14.75 + ], + "to": [ + 8.5, + 7.25, + -3 + ], + "faces": { + "north": { + "uv": [ + 5, + 2, + 5.25, + 2.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 2.5, + 8, + 2.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 2.25, + 5.25, + 2.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 2.75, + 8, + 3 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 8, + 4, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.75, + 5.75, + 2.5, + 8.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 5, + -12 + ], + "to": [ + 8.5, + 6, + -3 + ], + "faces": { + "north": { + "uv": [ + 6.5, + 5.25, + 6.75, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 2, + 8.25, + 2.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 4.5, + 7.5, + 4.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 2.25, + 8.25, + 2.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 8, + 3.75, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 3, + 6.5, + 5.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.75, + 6, + -11.75 + ], + "to": [ + 8.25, + 9.25, + -10.75 + ], + "faces": { + "north": { + "uv": [ + 6.75, + 7, + 7, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 7, + 7.25, + 7.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 3, + 7.5, + 3.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 3.75, + 7.5, + 4.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 5, + 7.25, + 4.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 7.25, + 5.75, + 7.5 + ], + "texture": "#0" + } + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [ + -1, + 2.5, + -3 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + }, + "thirdperson_lefthand": { + "scale": [ + 0, + 0, + 0 + ] + }, + "ground": { + "translation": [ + 0, + 5.25, + 0 + ], + "scale": [ + 0.8, + 0.8, + 0.8 + ] + }, + "head": { + "translation": [ + 0, + 9.75, + -1.75 + ] + }, + "fixed": { + "rotation": [ + 0, + 90, + 0 + ], + "translation": [ + 0, + 5.75, + -2 + ], + "scale": [ + 1.2, + 1.2, + 1.2 + ] + } + }, + "groups": [ + { + "name": "group", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/m793d.json b/src/main/resources/assets/superbwarfare/models/item/m793d.json new file mode 100644 index 000000000..0e7791b71 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/m793d.json @@ -0,0 +1,1815 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 32, + 32 + ], + "textures": { + "1": "superbwarfare:item/m793d" + }, + "elements": [ + { + "from": [ + 7.5, + 2, + 0 + ], + "to": [ + 8.5, + 3, + 13 + ], + "faces": { + "north": { + "uv": [ + 5.5, + 3, + 6, + 3.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 2, + 6.5, + 2.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 5.5, + 8.5, + 6 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 2.5, + 6.5, + 3 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0.5, + 9.5, + 0, + 3 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1, + 3, + 0.5, + 9.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.5, + -1.53423, + 12.24727 + ], + "to": [ + 8.5, + 0.21577, + 15.99727 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + -0.28423, + 19.62227 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 2, + 7.5, + 3 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.5, + 0.5, + 5.5, + 1.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 3, + 7.5, + 4 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2, + 3.5, + 4, + 4.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 3, + 7.5, + 2.5, + 5.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.5, + 5.5, + 3, + 7.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.5, + -0.05185, + 15.79485 + ], + "to": [ + 8.5, + 1.69815, + 22.54485 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 0.82315, + 17.66985 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 7, + 4.5, + 8 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 3.5, + 1 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 4, + 7.5, + 5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 1, + 3.5, + 2 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4.5, + 7, + 4, + 3.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.5, + 4.5, + 2, + 8 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.5, + -0.55185, + 19.29485 + ], + "to": [ + 8.5, + -0.05185, + 22.54485 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 0.82315, + 17.66985 + ] + }, + "faces": { + "north": { + "uv": [ + 6.5, + 8, + 7, + 8.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.5, + 1.5, + 5, + 2 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 8, + 7.5, + 8.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5, + 1.5, + 6.5, + 2 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6.5, + 6.5, + 6, + 5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 1.5, + 6.5, + 3 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.5, + -0.3029, + 17.04328 + ], + "to": [ + 8.5, + 0.1971, + 18.79328 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 1.0721, + 17.91828 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 8, + 8, + 8.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7, + 5, + 8, + 5.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 8, + 8.5, + 8.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7, + 5.5, + 8, + 6 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.5, + 7, + 7, + 6 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.5, + 7, + 7, + 8 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.5, + 1.20906, + 19.44213 + ], + "to": [ + 8.5, + 1.70906, + 20.19213 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 2.58406, + 15.31713 + ] + }, + "faces": { + "north": { + "uv": [ + 1, + 8.5, + 1.5, + 9 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.5, + 8.5, + 2, + 9 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 2.5, + 8.5, + 3, + 9 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3, + 8.5, + 3.5, + 9 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4, + 9, + 3.5, + 8.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9, + 3.5, + 8.5, + 4 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.5, + 1.45802, + 17.19056 + ], + "to": [ + 8.5, + 1.95802, + 17.94056 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 2.83302, + 13.06556 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 4, + 9, + 4.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.5, + 8.5, + 5, + 9 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.5, + 4.5, + 9, + 5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5, + 8.5, + 5.5, + 9 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6, + 9, + 5.5, + 8.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9, + 5.5, + 8.5, + 6 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.4, + -0.80185, + 22.04485 + ], + "to": [ + 8.6, + 3.44815, + 23.29485 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 0.82315, + 17.66985 + ] + }, + "faces": { + "north": { + "uv": [ + 3.5, + 5.5, + 4, + 7.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.5, + 5.5, + 5, + 7.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5, + 5.5, + 5.5, + 7.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.5, + 5.5, + 6, + 7.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 9, + 6.5, + 8.5, + 6 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 8.5, + 6.5, + 9 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.5, + 0.16856, + 16.90291 + ], + "to": [ + 8.5, + 1.91856, + 19.40291 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 1.04356, + 17.65291 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 0.5, + 8, + 1.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.5, + 4.5, + 4, + 5.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.5, + 1.5, + 8, + 2.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.5, + 3.5, + 6, + 4.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7, + 6.5, + 6.5, + 5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.5, + 6.5, + 6, + 8 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.5, + 0.99205, + 20.04292 + ], + "to": [ + 8.5, + 2.74205, + 22.54292 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 1.86705, + 20.79292 + ] + }, + "faces": { + "north": { + "uv": [ + 2.5, + 7.5, + 3, + 8.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.5, + 4.5, + 6, + 5.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.5, + 2.5, + 8, + 3.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.5, + 0.5, + 7, + 1.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7, + 8, + 6.5, + 6.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.5, + 0.5, + 7, + 2 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.5, + 0.77165, + 18.93486 + ], + "to": [ + 8.5, + 2.52165, + 20.43486 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 1.64665, + 19.68486 + ] + }, + "faces": { + "north": { + "uv": [ + 3, + 7.5, + 3.5, + 8.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6, + 3, + 7, + 4 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3.5, + 7.5, + 4, + 8.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6, + 4, + 7, + 5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8, + 4.5, + 7.5, + 3.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5, + 7.5, + 4.5, + 8.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.25, + 3, + 5 + ], + "to": [ + 8.75, + 3.25, + 5.25 + ], + "faces": { + "north": { + "uv": [ + 7.5, + 4.5, + 8.5, + 5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.5, + 6.5, + 9, + 7 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5, + 7.5, + 6, + 8 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7, + 8.5, + 7.5, + 9 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.5, + 6.5, + 7.5, + 6 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.5, + 6.5, + 7.5, + 7 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.25, + 3, + 2.5 + ], + "to": [ + 8.75, + 3.25, + 2.75 + ], + "faces": { + "north": { + "uv": [ + 7.5, + 7, + 8.5, + 7.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.5, + 7, + 9, + 7.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.5, + 7.5, + 8.5, + 8 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.5, + 8.5, + 8, + 9 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 9, + 0.5, + 8, + 0 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9, + 0.5, + 8, + 1 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.25, + 3, + 2.5 + ], + "to": [ + 8.75, + 3.25, + 2.75 + ], + "faces": { + "north": { + "uv": [ + 1, + 8, + 2, + 8.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.5, + 7.5, + 9, + 8 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 1, + 9, + 1.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8, + 8.5, + 8.5, + 9 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 9, + 2, + 8, + 1.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9, + 2, + 8, + 2.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.85, + 3, + 0.25 + ], + "to": [ + 8.15, + 3.25, + 0.5 + ], + "faces": { + "north": { + "uv": [ + 8.5, + 8, + 9, + 8.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.5, + 8.5, + 9, + 9 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 9, + 0, + 9.5, + 0.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9, + 0.5, + 9.5, + 1 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 1.5, + 9.5, + 1, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9.5, + 1, + 9, + 1.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.85, + 3, + 0.25 + ], + "to": [ + 8.15, + 3.25, + 0.5 + ], + "faces": { + "north": { + "uv": [ + 1.5, + 9, + 2, + 9.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9, + 1.5, + 9.5, + 2 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 2, + 9, + 2.5, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9, + 2, + 9.5, + 2.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 3, + 9.5, + 2.5, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9.5, + 2.5, + 9, + 3 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.6, + 3, + 2.75 + ], + "to": [ + 8.75, + 3.25, + 5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 1.35, + 0, + 0 + ] + }, + "faces": { + "north": { + "uv": [ + 3, + 9, + 3.5, + 9.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8, + 2.5, + 9, + 3 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 9, + 3, + 9.5, + 3.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8, + 3, + 9, + 3.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2.5, + 9, + 2, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.5, + 3.5, + 8, + 4.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.25, + 3, + 2.75 + ], + "to": [ + 7.4, + 3.25, + 5 + ], + "faces": { + "north": { + "uv": [ + 3.5, + 9, + 4, + 9.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5, + 8, + 6, + 8.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 9, + 3.5, + 9.5, + 4 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8, + 5, + 9, + 5.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4.5, + 9, + 4, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.5, + 8, + 6, + 9 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.6, + 1.25, + 4.5 + ], + "to": [ + 8.4, + 2.5, + 13 + ], + "faces": { + "north": { + "uv": [ + 4, + 9, + 4.5, + 9.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1, + 3, + 5.5, + 3.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 9, + 4, + 9.5, + 4.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.5, + 0, + 8, + 0.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 1.5, + 8, + 1, + 3.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2, + 3.5, + 1.5, + 8 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.85, + 0.25, + 10.75 + ], + "to": [ + 8.15, + 1.25, + 11 + ], + "faces": { + "north": { + "uv": [ + 4.5, + 9, + 5, + 9.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9, + 4.5, + 9.5, + 5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5, + 9, + 5.5, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9, + 5, + 9.5, + 5.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6, + 9.5, + 5.5, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9.5, + 5.5, + 9, + 6 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.85, + 0.25, + 11 + ], + "to": [ + 8.15, + 0.5, + 12.25 + ], + "faces": { + "north": { + "uv": [ + 6, + 9, + 6.5, + 9.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9, + 6, + 9.5, + 6.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 6.5, + 9, + 7, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9, + 6.5, + 9.5, + 7 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.5, + 9.5, + 7, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9.5, + 7, + 9, + 7.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.85, + 0.75, + 10.25 + ], + "to": [ + 8.15, + 1, + 10.75 + ], + "faces": { + "north": { + "uv": [ + 7.5, + 9, + 8, + 9.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9, + 7.5, + 9.5, + 8 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 9, + 8.5, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9, + 8, + 9.5, + 8.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 9, + 9.5, + 8.5, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9.5, + 8.5, + 9, + 9 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.85, + 0.25, + 12.25 + ], + "to": [ + 8.15, + 1.25, + 12.5 + ], + "faces": { + "north": { + "uv": [ + 9, + 9, + 9.5, + 9.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 9.5, + 0.5, + 10 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 9.5, + 0, + 10, + 0.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.5, + 9.5, + 1, + 10 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 10, + 1, + 9.5, + 0.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.5, + 9.5, + 1, + 10 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.85, + 0.75, + 11.75 + ], + "to": [ + 8.15, + 1.25, + 12 + ], + "faces": { + "north": { + "uv": [ + 9.5, + 1, + 10, + 1.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.5, + 9.5, + 2, + 10 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 9.5, + 1.5, + 10, + 2 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2, + 9.5, + 2.5, + 10 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 10, + 2.5, + 9.5, + 2 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3, + 9.5, + 2.5, + 10 + ], + "texture": "#1" + } + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [ + -1.25, + 5.25, + -4.75 + ] + }, + "ground": { + "translation": [ + 0, + 6, + -5 + ] + }, + "head": { + "translation": [ + 0, + 14.75, + -5.25 + ] + }, + "fixed": { + "rotation": [ + 90, + -45, + 90 + ], + "translation": [ + -0.5, + 7.25, + 0 + ] + } + }, + "groups": [ + { + "name": "group", + "origin": [ + 0, + 0, + 0 + ], + "color": 0, + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23 + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/m79_base.json b/src/main/resources/assets/superbwarfare/models/item/m79_base.json new file mode 100644 index 000000000..51a82b2bf --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/m79_base.json @@ -0,0 +1,6 @@ +{ + "parent": "superbwarfare:displaysettings/m79.item", + "textures": { + "layer0": "superbwarfare:item/m79" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/m79icon.json b/src/main/resources/assets/superbwarfare/models/item/m79icon.json new file mode 100644 index 000000000..cb8bca136 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/m79icon.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/m79icon" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/m8703d.json b/src/main/resources/assets/superbwarfare/models/item/m8703d.json new file mode 100644 index 000000000..58607ffe6 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/m8703d.json @@ -0,0 +1,1608 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 32, + 32 + ], + "textures": { + "1": "superbwarfare:item/m8703d" + }, + "elements": [ + { + "from": [ + 7.5, + 1.3, + 8.25 + ], + "to": [ + 8.5, + 3, + 13 + ], + "faces": { + "north": { + "uv": [ + 5.5, + 3, + 6, + 3.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 2, + 6.5, + 2.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 5.5, + 8.5, + 6 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 2.5, + 6.5, + 3 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0.5, + 9.5, + 0, + 3 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1, + 3, + 0.5, + 9.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.7, + 2.2, + -4.5 + ], + "to": [ + 8.3, + 2.8, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 5.5, + 3, + 6, + 3.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 2, + 6.5, + 2.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 5.5, + 8.5, + 6 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 2.5, + 6.5, + 3 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0.5, + 9.5, + 0, + 3 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1, + 3, + 0.5, + 9.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.7, + 1.35, + -3.1 + ], + "to": [ + 8.3, + 1.95, + 8.25 + ], + "faces": { + "north": { + "uv": [ + 5.5, + 3, + 6, + 3.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 2, + 6.5, + 2.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 5.5, + 8.5, + 6 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 2.5, + 6.5, + 3 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0.5, + 9.5, + 0, + 3 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1, + 3, + 0.5, + 9.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.7, + 1.95, + -2.6 + ], + "to": [ + 8.3, + 2.2, + -2.25 + ], + "faces": { + "north": { + "uv": [ + 5.5, + 3, + 6, + 3.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 2, + 6.5, + 2.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 5.5, + 8.5, + 6 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 2.5, + 6.5, + 3 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0.5, + 9.5, + 0, + 3 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1, + 3, + 0.5, + 9.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.5, + -1.53423, + 12.24727 + ], + "to": [ + 8.5, + 0.21577, + 15.99727 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + -0.28423, + 19.62227 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 2, + 7.5, + 3 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.5, + 0.5, + 5.5, + 1.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 3, + 7.5, + 4 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2, + 3.5, + 4, + 4.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 3, + 7.5, + 2.5, + 5.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.5, + 5.5, + 3, + 7.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.5, + -0.05185, + 15.79485 + ], + "to": [ + 8.5, + 1.69815, + 22.54485 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 0.82315, + 17.66985 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 8, + 4.5, + 7 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 1, + 3.5, + 0 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 5, + 7.5, + 4 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 2, + 3.5, + 1 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2.5, + 8, + 2, + 4.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.5, + 3.5, + 4, + 7 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.5, + 1.69815, + 19.29485 + ], + "to": [ + 8.5, + 2.19815, + 22.54485 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 0.82315, + 17.66985 + ] + }, + "faces": { + "north": { + "uv": [ + 6.5, + 8.5, + 7, + 8 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.5, + 2, + 5, + 1.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 8.5, + 7.5, + 8 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5, + 2, + 6.5, + 1.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7, + 3, + 6.5, + 1.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.5, + 5, + 6, + 6.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.5, + 1.19815, + -1.70515 + ], + "to": [ + 8.5, + 2.29815, + 4.54485 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 0.82315, + 17.66985 + ] + }, + "faces": { + "north": { + "uv": [ + 6.5, + 8.5, + 7, + 8 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.5, + 2, + 5, + 1.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 8.5, + 7.5, + 8 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5, + 2, + 6.5, + 1.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7, + 3, + 6.5, + 1.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.5, + 5, + 6, + 6.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.4, + -1.80185, + 21.99485 + ], + "to": [ + 8.6, + 2.29815, + 23.09485 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 0.82315, + 17.66985 + ] + }, + "faces": { + "north": { + "uv": [ + 6.5, + 8.5, + 7, + 8 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.5, + 2, + 5, + 1.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 8.5, + 7.5, + 8 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5, + 2, + 6.5, + 1.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7, + 3, + 6.5, + 1.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.5, + 5, + 6, + 6.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.5, + 1.4492, + 17.04328 + ], + "to": [ + 8.5, + 1.9492, + 18.79328 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 0.5742, + 17.91828 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 8.5, + 8, + 8 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7, + 5.5, + 8, + 5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 8.5, + 8.5, + 8 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7, + 6, + 8, + 5.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.5, + 8, + 7, + 7 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.5, + 6, + 7, + 7 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.5, + -0.06276, + 19.44213 + ], + "to": [ + 8.5, + 0.43724, + 20.19213 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + -0.93776, + 15.31713 + ] + }, + "faces": { + "north": { + "uv": [ + 1, + 9, + 1.5, + 8.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.5, + 9, + 2, + 8.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 2.5, + 9, + 3, + 8.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3, + 9, + 3.5, + 8.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 9, + 4, + 8.5, + 3.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4, + 8.5, + 3.5, + 9 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.5, + -0.31172, + 17.19056 + ], + "to": [ + 8.5, + 0.18828, + 17.94056 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + -1.18672, + 13.06556 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 4.5, + 9, + 4 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.5, + 9, + 5, + 8.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.5, + 5, + 9, + 4.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5, + 9, + 5.5, + 8.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 9, + 6, + 8.5, + 5.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6, + 8.5, + 5.5, + 9 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.5, + -0.27226, + 16.90291 + ], + "to": [ + 8.5, + 1.47774, + 19.40291 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 0.60274, + 17.65291 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 1.5, + 8, + 0.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.5, + 5.5, + 4, + 4.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.5, + 2.5, + 8, + 1.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.5, + 4.5, + 6, + 3.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6.5, + 8, + 6, + 6.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 5, + 6.5, + 6.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.5, + -1.09575, + 20.04292 + ], + "to": [ + 8.5, + 0.65425, + 22.54292 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + -0.22075, + 20.79292 + ] + }, + "faces": { + "north": { + "uv": [ + 2.5, + 8.5, + 3, + 7.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.5, + 5.5, + 6, + 4.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.5, + 3.5, + 8, + 2.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.5, + 1.5, + 7, + 0.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.5, + 2, + 7, + 0.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 6.5, + 6.5, + 8 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.5, + -0.87535, + 18.93486 + ], + "to": [ + 8.5, + 0.87465, + 20.43486 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + -0.00035, + 19.68486 + ] + }, + "faces": { + "north": { + "uv": [ + 3, + 8.5, + 3.5, + 7.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6, + 4, + 7, + 3 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3.5, + 8.5, + 4, + 7.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6, + 5, + 7, + 4 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5, + 8.5, + 4.5, + 7.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8, + 3.5, + 7.5, + 4.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.85, + 2.8, + -4.15 + ], + "to": [ + 8.15, + 3.25, + -3.9 + ], + "faces": { + "north": { + "uv": [ + 8.5, + 8, + 9, + 8.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.5, + 8.5, + 9, + 9 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 9, + 0, + 9.5, + 0.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9, + 0.5, + 9.5, + 1 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 1.5, + 9.5, + 1, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9.5, + 1, + 9, + 1.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.85, + 0.25, + 10.75 + ], + "to": [ + 8.15, + 1.25, + 11 + ], + "faces": { + "north": { + "uv": [ + 4.5, + 9, + 5, + 9.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9, + 4.5, + 9.5, + 5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5, + 9, + 5.5, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9, + 5, + 9.5, + 5.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6, + 9.5, + 5.5, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9.5, + 5.5, + 9, + 6 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.85, + 0.25, + 11 + ], + "to": [ + 8.15, + 0.5, + 12.25 + ], + "faces": { + "north": { + "uv": [ + 6, + 9, + 6.5, + 9.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9, + 6, + 9.5, + 6.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 6.5, + 9, + 7, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9, + 6.5, + 9.5, + 7 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.5, + 9.5, + 7, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9.5, + 7, + 9, + 7.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.85, + 0.75, + 10.25 + ], + "to": [ + 8.15, + 1.25, + 10.75 + ], + "faces": { + "north": { + "uv": [ + 7.5, + 9, + 8, + 9.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9, + 7.5, + 9.5, + 8 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 9, + 8.5, + 9.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9, + 8, + 9.5, + 8.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 9, + 9.5, + 8.5, + 9 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 9.5, + 8.5, + 9, + 9 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.85, + 0.25, + 12.25 + ], + "to": [ + 8.15, + 1.25, + 12.5 + ], + "faces": { + "north": { + "uv": [ + 9, + 9, + 9.5, + 9.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 9.5, + 0.5, + 10 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 9.5, + 0, + 10, + 0.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.5, + 9.5, + 1, + 10 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 10, + 1, + 9.5, + 0.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.5, + 9.5, + 1, + 10 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.85, + 0.75, + 11.75 + ], + "to": [ + 8.15, + 1.25, + 12 + ], + "faces": { + "north": { + "uv": [ + 9.5, + 1, + 10, + 1.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.5, + 9.5, + 2, + 10 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 9.5, + 1.5, + 10, + 2 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2, + 9.5, + 2.5, + 10 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 10, + 2.5, + 9.5, + 2 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3, + 9.5, + 2.5, + 10 + ], + "texture": "#1" + } + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [ + -1.25, + 5.25, + -4.75 + ] + }, + "ground": { + "translation": [ + 0, + 6, + -5 + ] + }, + "head": { + "translation": [ + 0, + 14.75, + -5.25 + ] + }, + "fixed": { + "rotation": [ + 90, + -45, + 90 + ], + "translation": [ + -0.5, + 7.25, + 0 + ] + } + }, + "groups": [ + { + "name": "group", + "origin": [ + 0, + 0, + 0 + ], + "color": 0, + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20 + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/m_1911.json b/src/main/resources/assets/superbwarfare/models/item/m_1911.json new file mode 100644 index 000000000..8b709232f --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/m_1911.json @@ -0,0 +1,27 @@ +{ + "loader": "forge:separate_transforms", + "gui_light": "front", + "base": { + "parent": "superbwarfare:item/m_1911_base" + }, + "perspectives": { + "gui": { + "parent": "superbwarfare:item/m1911_icon" + }, + "thirdperson_righthand": { + "parent": "superbwarfare:item/m1911_3d" + }, + "thirdperson_lefthand": { + "parent": "superbwarfare:item/m1911_3d" + }, + "ground": { + "parent": "superbwarfare:item/m1911_3d" + }, + "fixed": { + "parent": "superbwarfare:item/m1911_3d" + }, + "head": { + "parent": "superbwarfare:item/m1911_3d" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/m_1911_base.json b/src/main/resources/assets/superbwarfare/models/item/m_1911_base.json new file mode 100644 index 000000000..625f7fabb --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/m_1911_base.json @@ -0,0 +1,6 @@ +{ + "parent": "superbwarfare:displaysettings/glock17.item", + "textures": { + "layer0": "superbwarfare:item/m1911" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/m_4.json b/src/main/resources/assets/superbwarfare/models/item/m_4.json new file mode 100644 index 000000000..b7f56534d --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/m_4.json @@ -0,0 +1,27 @@ +{ + "loader": "forge:separate_transforms", + "gui_light": "front", + "base": { + "parent": "superbwarfare:item/m_4_base" + }, + "perspectives": { + "gui": { + "parent": "superbwarfare:item/m_4_icon" + }, + "thirdperson_righthand": { + "parent": "superbwarfare:item/m43d" + }, + "thirdperson_lefthand": { + "parent": "superbwarfare:item/m43d" + }, + "ground": { + "parent": "superbwarfare:item/m43d" + }, + "fixed": { + "parent": "superbwarfare:item/m43d" + }, + "head": { + "parent": "superbwarfare:item/m43d" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/m_4_base.json b/src/main/resources/assets/superbwarfare/models/item/m_4_base.json new file mode 100644 index 000000000..be16c389a --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/m_4_base.json @@ -0,0 +1,6 @@ +{ + "parent": "superbwarfare:displaysettings/m4.item", + "textures": { + "layer0": "superbwarfare:item/m4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/m_4_icon.json b/src/main/resources/assets/superbwarfare/models/item/m_4_icon.json new file mode 100644 index 000000000..bd39f37b3 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/m_4_icon.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/m4icon" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/m_60.json b/src/main/resources/assets/superbwarfare/models/item/m_60.json new file mode 100644 index 000000000..4e61087b3 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/m_60.json @@ -0,0 +1,27 @@ +{ + "loader": "forge:separate_transforms", + "gui_light": "front", + "base": { + "parent": "superbwarfare:item/m_60_base" + }, + "perspectives": { + "gui": { + "parent": "superbwarfare:item/m_60_icon" + }, + "thirdperson_righthand": { + "parent": "superbwarfare:item/m603d" + }, + "thirdperson_lefthand": { + "parent": "superbwarfare:item/m603d" + }, + "ground": { + "parent": "superbwarfare:item/m603d" + }, + "fixed": { + "parent": "superbwarfare:item/m603d" + }, + "head": { + "parent": "superbwarfare:item/m603d" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/m_60_base.json b/src/main/resources/assets/superbwarfare/models/item/m_60_base.json new file mode 100644 index 000000000..95fa2417e --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/m_60_base.json @@ -0,0 +1,6 @@ +{ + "parent": "superbwarfare:displaysettings/m60.item", + "textures": { + "layer0": "superbwarfare:item/m60" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/m_60_icon.json b/src/main/resources/assets/superbwarfare/models/item/m_60_icon.json new file mode 100644 index 000000000..1eea680fd --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/m_60_icon.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/m60_icon" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/m_79.json b/src/main/resources/assets/superbwarfare/models/item/m_79.json new file mode 100644 index 000000000..72354a45f --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/m_79.json @@ -0,0 +1,27 @@ +{ + "loader": "forge:separate_transforms", + "gui_light": "front", + "base": { + "parent": "superbwarfare:item/m79_base" + }, + "perspectives": { + "gui": { + "parent": "superbwarfare:item/m79icon" + }, + "thirdperson_righthand": { + "parent": "superbwarfare:item/m793d" + }, + "thirdperson_lefthand": { + "parent": "superbwarfare:item/m793d" + }, + "ground": { + "parent": "superbwarfare:item/m793d" + }, + "fixed": { + "parent": "superbwarfare:item/m793d" + }, + "head": { + "parent": "superbwarfare:item/m793d" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/m_870.json b/src/main/resources/assets/superbwarfare/models/item/m_870.json new file mode 100644 index 000000000..c14ef0aae --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/m_870.json @@ -0,0 +1,27 @@ +{ + "loader": "forge:separate_transforms", + "gui_light": "front", + "base": { + "parent": "superbwarfare:item/m_870_base" + }, + "perspectives": { + "gui": { + "parent": "superbwarfare:item/m_870_icon" + }, + "thirdperson_righthand": { + "parent": "superbwarfare:item/m8703d" + }, + "thirdperson_lefthand": { + "parent": "superbwarfare:item/m8703d" + }, + "ground": { + "parent": "superbwarfare:item/m8703d" + }, + "fixed": { + "parent": "superbwarfare:item/m8703d" + }, + "head": { + "parent": "superbwarfare:item/m8703d" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/m_870_base.json b/src/main/resources/assets/superbwarfare/models/item/m_870_base.json new file mode 100644 index 000000000..2e2d7c1a5 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/m_870_base.json @@ -0,0 +1,6 @@ +{ + "parent": "superbwarfare:displaysettings/m870.item", + "textures": { + "layer0": "superbwarfare:item/m870" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/m_870_icon.json b/src/main/resources/assets/superbwarfare/models/item/m_870_icon.json new file mode 100644 index 000000000..6d2a526d8 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/m_870_icon.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/m870_icon" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/m_98b.json b/src/main/resources/assets/superbwarfare/models/item/m_98b.json new file mode 100644 index 000000000..be82493bd --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/m_98b.json @@ -0,0 +1,27 @@ +{ + "loader": "forge:separate_transforms", + "gui_light": "front", + "base": { + "parent": "superbwarfare:item/m_98b_base" + }, + "perspectives": { + "gui": { + "parent": "superbwarfare:item/m_98b_icon" + }, + "thirdperson_righthand": { + "parent": "superbwarfare:item/m_98b3d" + }, + "thirdperson_lefthand": { + "parent": "superbwarfare:item/m_98b3d" + }, + "ground": { + "parent": "superbwarfare:item/m_98b3d" + }, + "fixed": { + "parent": "superbwarfare:item/m_98b3d" + }, + "head": { + "parent": "superbwarfare:item/m_98b3d" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/m_98b3d.json b/src/main/resources/assets/superbwarfare/models/item/m_98b3d.json new file mode 100644 index 000000000..9f1b1b2a6 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/m_98b3d.json @@ -0,0 +1,2132 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 32, + 32 + ], + "textures": { + "0": "superbwarfare:item/ak473d", + "particle": "superbwarfare:item/ak473d" + }, + "elements": [ + { + "from": [ + 7.5, + 2, + 1.25 + ], + "to": [ + 8.5, + 3.5, + 17.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 3.75 + ] + }, + "faces": { + "north": { + "uv": [ + 2.5, + 9.5, + 3, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 2, + 4, + 3 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 3, + 10, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 3, + 4, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 8, + 3.5, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 5, + 6, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + -0.75, + 23.1 + ], + "to": [ + 8.5, + 3.5, + 24.35 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 3.1 + ] + }, + "faces": { + "north": { + "uv": [ + 2.5, + 9.5, + 3, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 2, + 4, + 3 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 3, + 10, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 3, + 4, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 8, + 3.5, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 5, + 6, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 3.2, + 17.5 + ], + "to": [ + 8.5, + 3.5, + 23.1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 3.75 + ] + }, + "faces": { + "north": { + "uv": [ + 2.5, + 9.5, + 3, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 2, + 4, + 3 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 3, + 10, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 3, + 4, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 8, + 3.5, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 5, + 6, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 2.4, + 17.5 + ], + "to": [ + 8.5, + 2.7, + 23.1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 3.75 + ] + }, + "faces": { + "north": { + "uv": [ + 2.5, + 9.5, + 3, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 2, + 4, + 3 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 3, + 10, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 3, + 4, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 8, + 3.5, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 5, + 6, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 1.7, + 16.75 + ], + "to": [ + 8.5, + 2, + 19.35 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 3.75 + ] + }, + "faces": { + "north": { + "uv": [ + 2.5, + 9.5, + 3, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 2, + 4, + 3 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 3, + 10, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 3, + 4, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 8, + 3.5, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 5, + 6, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + -1.17886, + 20.36673 + ], + "to": [ + 8.5, + 2.42114, + 20.66673 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 8, + 0.62114, + 20.51673 + ] + }, + "faces": { + "north": { + "uv": [ + 6.5, + 5, + 6, + 9 + ], + "rotation": 180, + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 2, + 4, + 3 + ], + "rotation": 270, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 8, + 3.5, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 3, + 4, + 4 + ], + "rotation": 90, + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 9.5, + 3, + 10.5 + ], + "rotation": 180, + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 3, + 10, + 4 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + -0.75772, + 21.68345 + ], + "to": [ + 8.5, + -0.45772, + 23.13345 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + -0.60772, + 23.48345 + ] + }, + "faces": { + "north": { + "uv": [ + 2.5, + 9.5, + 3, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 2, + 4, + 3 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 3, + 10, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 3, + 4, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 8, + 3.5, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 5, + 6, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 0.49228, + 20.48345 + ], + "to": [ + 8.5, + 0.79228, + 23.13345 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + -0.60772, + 23.48345 + ] + }, + "faces": { + "north": { + "uv": [ + 2.5, + 9.5, + 3, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 2, + 4, + 3 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 3, + 10, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 3, + 4, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 8, + 3.5, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 5, + 6, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 0.79228, + 20.28345 + ], + "to": [ + 8.5, + 3.29228, + 20.93345 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + -0.60772, + 23.48345 + ] + }, + "faces": { + "north": { + "uv": [ + 2.5, + 9.5, + 3, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 2, + 4, + 3 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 3, + 10, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 3, + 4, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 8, + 3.5, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 5, + 6, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.7, + 3.59228, + 17.28345 + ], + "to": [ + 8.3, + 3.84228, + 22.18345 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + -0.60772, + 23.48345 + ] + }, + "faces": { + "north": { + "uv": [ + 2.5, + 9.5, + 3, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 2, + 4, + 3 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 3, + 10, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 3, + 4, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 8, + 3.5, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 5, + 6, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.27626, + 3.41676, + 17.28345 + ], + "to": [ + 7.87626, + 3.66676, + 22.18345 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.57626, + 3.54176, + 19.73345 + ] + }, + "faces": { + "north": { + "uv": [ + 2.5, + 9.5, + 3, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 2, + 4, + 3 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 3, + 10, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 3, + 4, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 8, + 3.5, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 5, + 6, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.27574, + 2.81802, + 17.28345 + ], + "to": [ + 7.52574, + 3.41802, + 22.18345 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 7.40074, + 3.11802, + 19.73345 + ] + }, + "faces": { + "north": { + "uv": [ + 2.5, + 9.5, + 3, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 5, + 6, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 3, + 10, + 4 + ], + "rotation": 270, + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 8, + 3.5, + 4 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 2, + 4, + 3 + ], + "rotation": 270, + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 3, + 4, + 4 + ], + "rotation": 270, + "texture": "#0" + } + } + }, + { + "from": [ + 8.47426, + 2.81802, + 17.28345 + ], + "to": [ + 8.72426, + 3.41802, + 22.18345 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.59926, + 3.11802, + 19.73345 + ] + }, + "faces": { + "north": { + "uv": [ + 2.5, + 10.5, + 3, + 9.5 + ], + "rotation": 90, + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 4, + 3.5, + 8 + ], + "rotation": 270, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 4, + 10, + 3 + ], + "rotation": 270, + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 9, + 6, + 5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 3, + 4, + 2 + ], + "rotation": 270, + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 4, + 4, + 3 + ], + "rotation": 270, + "texture": "#0" + } + } + }, + { + "from": [ + 8.12374, + 3.41676, + 17.28345 + ], + "to": [ + 8.72374, + 3.66676, + 22.18345 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.42374, + 3.54176, + 19.73345 + ] + }, + "faces": { + "north": { + "uv": [ + 3, + 9.5, + 2.5, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 3, + 0, + 4 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 3, + 9.5, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 2, + 0, + 3 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 8, + 4, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 5, + 6.5, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 1.15, + 7.45 + ], + "to": [ + 8.5, + 2, + 13.85 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 3.75 + ] + }, + "faces": { + "north": { + "uv": [ + 2.5, + 9.5, + 3, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 2, + 4, + 3 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 3, + 10, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 3, + 4, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 8, + 3.5, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 5, + 6, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + -1.98039, + 11.18355 + ], + "to": [ + 8.5, + 1.31961, + 12.48355 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 4.31961, + 12.23355 + ] + }, + "faces": { + "north": { + "uv": [ + 2.5, + 9.5, + 3, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 2, + 4, + 3 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 3, + 10, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 3, + 4, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 8, + 3.5, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 5, + 6, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.7, + 3.5, + 1.25 + ], + "to": [ + 8.3, + 3.7, + 14.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 3.75 + ] + }, + "faces": { + "north": { + "uv": [ + 2.5, + 9.5, + 3, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 2, + 4, + 3 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 3, + 10, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 3, + 4, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 8, + 3.5, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 5, + 6, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.7, + 3.7, + 7.25 + ], + "to": [ + 8.3, + 4, + 7.9 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 3.75 + ] + }, + "faces": { + "north": { + "uv": [ + 2.5, + 9.5, + 3, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 2, + 4, + 3 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 3, + 10, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 3, + 4, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 8, + 3.5, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 5, + 6, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.7, + 3.7, + 10 + ], + "to": [ + 8.3, + 4, + 10.65 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 3.75 + ] + }, + "faces": { + "north": { + "uv": [ + 2.5, + 9.5, + 3, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 2, + 4, + 3 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 3, + 10, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 3, + 4, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 8, + 3.5, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 5, + 6, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.6, + 4, + 4 + ], + "to": [ + 8.4, + 4.75, + 13.65 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 3.75 + ] + }, + "faces": { + "north": { + "uv": [ + 2.5, + 9.5, + 3, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 2, + 4, + 3 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 3, + 10, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 3, + 4, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 8, + 3.5, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 5, + 6, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.7, + -0.65, + 7.7 + ], + "to": [ + 8.3, + 2.75, + 10.7 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 3.25, + 8.75 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 9.5, + 5.5, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 6.5, + 6, + 7.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 9.5, + 6, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 6, + 8, + 7 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0.5, + 10, + 0, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 8.5, + 0.5, + 10 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.75, + 0.36924, + 11.24672 + ], + "to": [ + 8.25, + 0.46924, + 12.74672 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 0.36924, + 14.24672 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 0, + 11, + 0.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 4, + 10.5, + 4.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 0.5, + 11, + 1 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 6, + 10.5, + 6.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 8, + 9.5, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 9.5, + 7.5, + 10.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.75, + 0.36924, + 10.89672 + ], + "to": [ + 8.25, + 1.21924, + 11.24672 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + -0.23076, + 14.74672 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 1, + 11, + 1.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 1.5, + 11, + 2 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 10.5, + 2.5, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 2, + 11, + 2.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 11, + 2.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 2.5, + 10.5, + 3 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.75, + 0.06924, + 11.64672 + ], + "to": [ + 8.25, + 1.36924, + 11.79672 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 0.59424, + 12.82172 + ] + }, + "faces": { + "north": { + "uv": [ + 3, + 10.5, + 3.5, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 3, + 11, + 3.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 10.5, + 4, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 3.5, + 11, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 11, + 4, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 4, + 10.5, + 4.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.7, + 2.45, + -16 + ], + "to": [ + 8.3, + 3.05, + 2 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 1.75 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 6, + 11, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 5, + 10, + 5.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 10.5, + 7, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 5.5, + 10, + 6 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 10, + 1, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 6.5, + 1.5, + 10 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.6, + 2.35, + -16 + ], + "to": [ + 8.4, + 3.15, + -14.1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 1.75 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 6, + 11, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 5, + 10, + 5.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 10.5, + 7, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 5.5, + 10, + 6 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 10, + 1, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 6.5, + 1.5, + 10 + ], + "texture": "#0" + } + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [ + -1.5, + 4.25, + -2.75 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + }, + "thirdperson_lefthand": { + "translation": [ + -1.5, + 4.25, + -2.75 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + }, + "ground": { + "translation": [ + 0, + 3.25, + 1 + ], + "scale": [ + 0.8, + 0.8, + 0.8 + ] + }, + "head": { + "translation": [ + 0, + 18.75, + 0 + ] + }, + "fixed": { + "rotation": [ + 90, + -90, + 90 + ], + "translation": [ + -1.25, + 7.75, + 0 + ], + "scale": [ + 1.5, + 1.5, + 1.5 + ] + } + }, + "groups": [ + { + "name": "group", + "origin": [ + 8, + 3.25, + 7.75 + ], + "color": 0, + "children": [ + 0, + 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 + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/m_98b_base.json b/src/main/resources/assets/superbwarfare/models/item/m_98b_base.json new file mode 100644 index 000000000..94b7c6bd0 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/m_98b_base.json @@ -0,0 +1,6 @@ +{ + "parent": "superbwarfare:displaysettings/m98b.item", + "textures": { + "layer0": "superbwarfare:item/m98b" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/m_98b_icon.json b/src/main/resources/assets/superbwarfare/models/item/m_98b_icon.json new file mode 100644 index 000000000..5d73f5810 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/m_98b_icon.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/m_98b_icon" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/marlin.json b/src/main/resources/assets/superbwarfare/models/item/marlin.json new file mode 100644 index 000000000..cfe5b67e0 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/marlin.json @@ -0,0 +1,27 @@ +{ + "loader": "forge:separate_transforms", + "gui_light": "front", + "base": { + "parent": "superbwarfare:item/marlin_base" + }, + "perspectives": { + "gui": { + "parent": "superbwarfare:item/marlin_icon" + }, + "thirdperson_righthand": { + "parent": "superbwarfare:item/marlin3d" + }, + "thirdperson_lefthand": { + "parent": "superbwarfare:item/marlin3d" + }, + "ground": { + "parent": "superbwarfare:item/marlin3d" + }, + "fixed": { + "parent": "superbwarfare:item/marlin3d" + }, + "head": { + "parent": "superbwarfare:item/marlin3d" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/marlin3d.json b/src/main/resources/assets/superbwarfare/models/item/marlin3d.json new file mode 100644 index 000000000..0eb666577 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/marlin3d.json @@ -0,0 +1,1820 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 32, + 32 + ], + "textures": { + "0": "superbwarfare:item/ak473d", + "particle": "superbwarfare:item/ak473d" + }, + "elements": [ + { + "from": [ + 7.5, + 1.5, + 6.5 + ], + "to": [ + 8.5, + 4.25, + 14.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 7.75 + ] + }, + "faces": { + "north": { + "uv": [ + 2.5, + 9.5, + 3, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 2, + 4, + 3 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 3, + 10, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 3, + 4, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 8, + 3.5, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 5, + 6, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 4.25, + 10.5 + ], + "to": [ + 8.5, + 4.5, + 13.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 7.75 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 4, + 9, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 1.5, + 6.5, + 2 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 5.5, + 10.5, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 6, + 9.5, + 6.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 9.5, + 7.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 8, + 8, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.75, + 0.26924, + 12.74672 + ], + "to": [ + 8.25, + 0.36924, + 14.24672 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 0.26924, + 15.49672 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 0, + 11, + 0.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 4, + 10.5, + 4.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 0.5, + 11, + 1 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 6, + 10.5, + 6.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 8, + 9.5, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 9.5, + 7.5, + 10.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.75, + -1.05398, + 12.84126 + ], + "to": [ + 8.25, + -0.95398, + 13.44126 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 8, + 0.44602, + 14.69126 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 0, + 11, + 0.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 4, + 10.5, + 4.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 0.5, + 11, + 1 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 6, + 10.5, + 6.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 8, + 9.5, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 9.5, + 7.5, + 10.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.75, + 0.6935, + 12.32246 + ], + "to": [ + 8.25, + 1.5435, + 12.42246 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 0.9935, + 12.37246 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 9.5, + 7.5, + 10.5 + ], + "rotation": 180, + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 4, + 10.5, + 4.5 + ], + "rotation": 270, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 8, + 9.5, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 6, + 10.5, + 6.5 + ], + "rotation": 90, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 0, + 11, + 0.5 + ], + "rotation": 180, + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 0.5, + 11, + 1 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.75, + 0.81421, + 13.96241 + ], + "to": [ + 8.25, + 0.91421, + 14.56241 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 8, + 0.86421, + 14.81241 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 0, + 11, + 0.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 4, + 10.5, + 4.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 0.5, + 11, + 1 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 6, + 10.5, + 6.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 8, + 9.5, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 9.5, + 7.5, + 10.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.75, + 0.65208, + 14.57098 + ], + "to": [ + 8.25, + 1.25208, + 14.67098 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 1.50208, + 14.62098 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 8, + 9.5, + 7 + ], + "rotation": 180, + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 4, + 10.5, + 4.5 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 9.5, + 7.5, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 6, + 10.5, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 0.5, + 11, + 1 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 0, + 11, + 0.5 + ], + "rotation": 180, + "texture": "#0" + } + } + }, + { + "from": [ + 7.75, + 0.56924, + 13.29672 + ], + "to": [ + 8.25, + 1.61924, + 13.64672 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 1.09424, + 13.57172 + ] + }, + "faces": { + "north": { + "uv": [ + 3, + 10.5, + 3.5, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 3, + 11, + 3.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 10.5, + 4, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 3.5, + 11, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 11, + 4, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 4, + 10.5, + 4.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 1.53911, + 18.56023 + ], + "to": [ + 8.5, + 3.53911, + 27.31023 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 3.03911, + 14.81023 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 2.5, + 6, + 3.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 2.5, + 6, + 3.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 2.5, + 6, + 3.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 2.5, + 6, + 3.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 2.5, + 6, + 3.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 2.5, + 6, + 3.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 1.53911, + 14.06023 + ], + "to": [ + 8.5, + 3.53911, + 18.61023 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 3.03911, + 14.81023 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 9.5, + 8.5, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 7, + 8.5, + 8 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 9.5, + 9, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 0, + 9, + 1 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 10.5, + 9, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 9.5, + 9.5, + 10.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 3.69135, + 22.79486 + ], + "to": [ + 8.5, + 5.69135, + 26.54486 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 1.19135, + 14.04486 + ] + }, + "faces": { + "north": { + "uv": [ + 4.5, + 3.5, + 5.5, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 3.5, + 5.5, + 4.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 3.5, + 5.5, + 4.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 3.5, + 5.5, + 4.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 3.5, + 5.5, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 3.5, + 5.5, + 4.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 0.05062, + 18.26388 + ], + "to": [ + 8.5, + 2.05062, + 27.01388 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 0.80062, + 21.06388 + ] + }, + "faces": { + "north": { + "uv": [ + 4.5, + 3, + 5.5, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 3, + 5.5, + 4 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 3, + 5.5, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 3, + 5.5, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 3, + 5.5, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 3, + 5.5, + 4 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + -3.19938, + 25.51388 + ], + "to": [ + 8.5, + 2.05062, + 27.51388 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 0.80062, + 21.06388 + ] + }, + "faces": { + "north": { + "uv": [ + 4.5, + 3.5, + 5.5, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 3.5, + 5.5, + 4.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 3.5, + 5.5, + 4.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 3.5, + 5.5, + 4.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 3.5, + 5.5, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 3.5, + 5.5, + 4.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.75, + -0.44475, + 14.08481 + ], + "to": [ + 8.25, + -0.29475, + 17.58481 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + -0.36975, + 15.83481 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 9.5, + 8.5, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 7, + 8.5, + 8 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 9.5, + 9, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 0, + 9, + 1 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 10.5, + 9, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 9.5, + 9.5, + 10.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.75, + -0.44475, + 17.26098 + ], + "to": [ + 8.25, + -0.29475, + 17.76098 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + -0.36975, + 19.01098 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 9.5, + 8.5, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 7, + 8.5, + 8 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 9.5, + 9, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 0, + 9, + 1 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 10.5, + 9, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 9.5, + 9.5, + 10.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.75, + -0.90772, + 17.83622 + ], + "to": [ + 8.25, + -0.40772, + 17.98622 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + -0.65772, + 17.91122 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 10.5, + 9, + 9.5 + ], + "rotation": 180, + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 7, + 8.5, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 9.5, + 9.5, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 0, + 9, + 1 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 9.5, + 9, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 9.5, + 8.5, + 10.5 + ], + "rotation": 180, + "texture": "#0" + } + } + }, + { + "from": [ + 7.75, + -0.50318, + 17.83622 + ], + "to": [ + 8.25, + -0.00318, + 17.98622 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + -0.25318, + 17.91122 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 10.5, + 9, + 9.5 + ], + "rotation": 180, + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 7, + 8.5, + 8 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 9.5, + 9.5, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 0, + 9, + 1 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 9.5, + 9, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 9.5, + 8.5, + 10.5 + ], + "rotation": 180, + "texture": "#0" + } + } + }, + { + "from": [ + 7.6, + 3.25, + -10 + ], + "to": [ + 8.4, + 4.05, + 7 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 1.75 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 6, + 11, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 5, + 10, + 5.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 10.5, + 7, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 5.5, + 10, + 6 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 10, + 1, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 6.5, + 1.5, + 10 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.6, + 3.05, + -8.3 + ], + "to": [ + 8.4, + 3.25, + -8 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 1.75 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 6, + 11, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 5, + 10, + 5.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 10.5, + 7, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 5.5, + 10, + 6 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 10, + 1, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 6.5, + 1.5, + 10 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.6, + 2.25, + -8.75 + ], + "to": [ + 8.4, + 3.05, + 7 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 1.75 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 6, + 11, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 5, + 10, + 5.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 10.5, + 7, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 5.5, + 10, + 6 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 10, + 1, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 6.5, + 1.5, + 10 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 1.75, + -2.45 + ], + "to": [ + 8.5, + 3.85, + 6.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 1.75 + ] + }, + "faces": { + "north": { + "uv": [ + 4.5, + 3, + 8, + 3.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 3, + 8, + 3.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 3, + 8, + 3.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 3, + 8, + 3.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 3, + 8, + 3.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 3, + 8, + 3.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.9, + 4.05, + -9.75 + ], + "to": [ + 8.1, + 4.6, + -9 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 1.75 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 1, + 10.5, + 2 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 10, + 2, + 11 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 2, + 10.5, + 3 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 3, + 10.5, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 7, + 10.5, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 10.5, + 7, + 11 + ], + "texture": "#0" + } + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [ + -1.5, + 4.25, + -2.75 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + }, + "thirdperson_lefthand": { + "translation": [ + -1.5, + 4.25, + -2.75 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + }, + "ground": { + "translation": [ + 0, + 9, + 0 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + }, + "head": { + "translation": [ + 0, + 18.75, + 0 + ] + }, + "fixed": { + "rotation": [ + 90, + -45, + 90 + ], + "translation": [ + -2.5, + 4.25, + 0 + ], + "scale": [ + 0.75, + 0.75, + 0.75 + ] + } + }, + "groups": [ + { + "name": "group", + "origin": [ + 8, + 3.25, + 7.75 + ], + "color": 0, + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21 + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/marlin_base.json b/src/main/resources/assets/superbwarfare/models/item/marlin_base.json new file mode 100644 index 000000000..a9893af1b --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/marlin_base.json @@ -0,0 +1,6 @@ +{ + "parent": "superbwarfare:displaysettings/marlin.item", + "textures": { + "layer0": "superbwarfare:item/marlin" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/marlin_icon.json b/src/main/resources/assets/superbwarfare/models/item/marlin_icon.json new file mode 100644 index 000000000..661f48888 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/marlin_icon.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/marlinicon" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/micro_missile.json b/src/main/resources/assets/superbwarfare/models/item/micro_missile.json new file mode 100644 index 000000000..6b60c35c0 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/micro_missile.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/perk/micro_missile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/minigun.json b/src/main/resources/assets/superbwarfare/models/item/minigun.json new file mode 100644 index 000000000..b2423c78c --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/minigun.json @@ -0,0 +1,27 @@ +{ + "loader": "forge:separate_transforms", + "gui_light": "front", + "base": { + "parent": "superbwarfare:item/minigun_base" + }, + "perspectives": { + "gui": { + "parent": "superbwarfare:item/minigun_icon" + }, + "thirdperson_righthand": { + "parent": "superbwarfare:item/minigun3d" + }, + "thirdperson_lefthand": { + "parent": "superbwarfare:item/minigun3d" + }, + "ground": { + "parent": "superbwarfare:item/minigun3d" + }, + "fixed": { + "parent": "superbwarfare:item/minigun3d" + }, + "head": { + "parent": "superbwarfare:item/minigun3d" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/minigun3d.json b/src/main/resources/assets/superbwarfare/models/item/minigun3d.json new file mode 100644 index 000000000..4e4b116e1 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/minigun3d.json @@ -0,0 +1,4241 @@ +{ + "credit": "Made with Blockbench", + "ambientocclusion": false, + "texture_size": [ + 64, + 64 + ], + "textures": { + "0": "superbwarfare:item/minigun_3d", + "particle": "superbwarfare:item/minigun_3d" + }, + "elements": [ + { + "from": [ + 5, + 1.5, + 4.1 + ], + "to": [ + 11, + 4.85, + 13 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.25, + 3.05, + -2.7 + ] + }, + "faces": { + "north": { + "uv": [ + 3.75, + 4.75, + 5.25, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 2.25, + 2.25, + 3 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 0, + 6.75, + 0.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.25, + 2.25, + 4.5, + 3 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 2.25, + 0, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 0, + 1.5, + 2.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 9.75, + -0.4, + 5.35 + ], + "to": [ + 12.75, + 2.5, + 12.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.25, + 4.05, + -2.7 + ] + }, + "faces": { + "north": { + "uv": [ + 10.75, + 3, + 11.5, + 3.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 4, + 5.5, + 4.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 5.25, + 11.75, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 2.25, + 6.25, + 3 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 5.5, + 1.5, + 3.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.75, + 4.75, + 0, + 6.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.5, + -2.15, + 6.1 + ], + "to": [ + 9.5, + 1.5, + 12.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 5, + 3.05, + -2.7 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 10, + 10.75, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 3.75, + 1.5, + 4.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0.75, + 10.25, + 1.5, + 11.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 3, + 5.25, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 6.25, + 0.75, + 4.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 0.75, + 5.25, + 2.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 9.75, + 4.5, + 7.1 + ], + "to": [ + 11.75, + 6.5, + 14.25 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 10.75, + 5.5, + 10.675 + ] + }, + "faces": { + "north": { + "uv": [ + 7.25, + 13, + 7.75, + 13.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 1.75, + 11.75, + 2.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 13, + 8, + 13.5, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 4.75, + 11.75, + 5.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 11.75, + 3, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 10, + 9.5, + 11.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 3.25, + 0.5, + 4.35 + ], + "to": [ + 6, + 3.25, + 13.75 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 5, + 1.5, + 10.675 + ] + }, + "faces": { + "north": { + "uv": [ + 11, + 6, + 11.75, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 3, + 2.25, + 3.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 6.75, + 11.75, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 0, + 5.25, + 0.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 5.25, + 2.25, + 3 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 3, + 3, + 5.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.75, + 1.75, + 13 + ], + "to": [ + 9.25, + 4.85, + 19.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.25, + 3.05, + -2.7 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 11, + 10.75, + 11.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.25, + 5.25, + 3.75, + 6 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.75, + 11, + 11.5, + 11.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 3, + 6.75, + 3.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 6.25, + 5.25, + 4.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.25, + 5.5, + 1.5, + 7 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 4.35, + 16.5 + ], + "to": [ + 8.75, + 8.6, + 18.25 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 6.725, + 17.375 + ] + }, + "faces": { + "north": { + "uv": [ + 0.75, + 11.25, + 1.25, + 12.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 11.25, + 5.75, + 12.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 11.5, + 0.5, + 12.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 2.75, + 12, + 3.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 13.5, + 8.5, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 13, + 10, + 13.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 3.5, + 4.85, + 4.1 + ], + "to": [ + 12.5, + 6.05, + 6.8 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.25, + 3.05, + -2.7 + ] + }, + "faces": { + "north": { + "uv": [ + 11.25, + 2.25, + 13.5, + 2.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.75, + 7.25, + 12.5, + 7.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 11.25, + 2.5, + 13.5, + 2.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.25, + 0.5, + 14, + 0.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 1.5, + 3, + 0.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 1.5, + 3, + 2.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 10.65, + 6.05, + 4.85 + ], + "to": [ + 11.5, + 8.55, + 6.05 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.25, + 3.05, + -2.7 + ] + }, + "faces": { + "north": { + "uv": [ + 1.25, + 11.25, + 1.5, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.5, + 11.5, + 0.75, + 12.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 11.75, + 7, + 12.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 12.25, + 1.25, + 13 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 3, + 11.25, + 2.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 13.25, + 9.25, + 13.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 4.5, + 6.05, + 4.85 + ], + "to": [ + 5.35, + 8.55, + 6.05 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.75, + 3.05, + -2.7 + ] + }, + "faces": { + "north": { + "uv": [ + 1.5, + 13.25, + 1.75, + 14 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.75, + 13.25, + 2, + 14 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 13.25, + 2.25, + 14 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.25, + 4.75, + 13.5, + 5.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0.25, + 13.75, + 0, + 13.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.5, + 13.5, + 0.25, + 13.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.35, + 8.15, + 4.85 + ], + "to": [ + 10.65, + 8.55, + 6.05 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.75, + 3.05, + -2.7 + ] + }, + "faces": { + "north": { + "uv": [ + 12.5, + 7.75, + 13.75, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13.5, + 1.75, + 13.75, + 2 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 12.75, + 7, + 14, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13.5, + 2, + 13.75, + 2.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 11.25, + 13, + 10, + 12.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.25, + 13, + 1, + 13.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 1.25, + -13.5 + ], + "to": [ + 8.75, + 4.85, + -10.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.05, + -12 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 11.5, + 7.5, + 12.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 10.25, + 6, + 11.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 10, + 12, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.25, + 5.25, + 11, + 6.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 13.25, + 0.75, + 12.75, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.25, + 4.75, + 12.75, + 5.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.2, + 2.3, + -13.5 + ], + "to": [ + 9.8, + 3.8, + -10.5 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8, + 3.05, + -12 + ] + }, + "faces": { + "north": { + "uv": [ + 11.5, + 7.5, + 12.5, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.25, + 6.25, + 11, + 6.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 11, + 12.5, + 11.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.75, + 1.75, + 13.5, + 2.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 11.25, + 3, + 10.25, + 2.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.75, + 0, + 10.75, + 0.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 1.25, + -13.5 + ], + "to": [ + 8.75, + 4.85, + -10.5 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8, + 3.05, + -12 + ] + }, + "faces": { + "north": { + "uv": [ + 11.5, + 11.5, + 12, + 12.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 10.5, + 0.75, + 11.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 11.75, + 3.5, + 12.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 10.75, + 7, + 11.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 13.25, + 6.25, + 12.75, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 12.75, + 6.25, + 13.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 1.25, + -13.5 + ], + "to": [ + 8.75, + 4.85, + -10.5 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 8, + 3.05, + -12 + ] + }, + "faces": { + "north": { + "uv": [ + 11.75, + 4.75, + 12.25, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 10, + 11.5, + 11 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 11.75, + 5.75, + 12.25, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 11, + 2.25, + 12 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 13.25, + 7, + 12.75, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 12.75, + 9.5, + 13.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 1.25, + -8.4 + ], + "to": [ + 8.75, + 4.85, + -7.8 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.05, + -6.9 + ] + }, + "faces": { + "north": { + "uv": [ + 6.25, + 11.75, + 6.75, + 12.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 10, + 3.75, + 11 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 11.75, + 10, + 12.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 11, + 3.75, + 12 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 13.75, + 4, + 13.25, + 3.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 13.25, + 5.25, + 13.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.2, + 2.3, + -8.4 + ], + "to": [ + 9.8, + 3.8, + -7.8 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8, + 3.05, + -6.9 + ] + }, + "faces": { + "north": { + "uv": [ + 11.75, + 0, + 12.75, + 0.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 5.25, + 10.25, + 5.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 11.75, + 1.75, + 12.75, + 2.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 12.5, + 7.5, + 13 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 12.75, + 0.75, + 11.75, + 0.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14, + 9, + 13, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 1.25, + -8.4 + ], + "to": [ + 8.75, + 4.85, + -7.8 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8, + 3.05, + -6.9 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 11.75, + 10.5, + 12.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 11.25, + 6, + 12.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 11.75, + 11, + 12.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 12, + 3.75, + 13 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 13.75, + 5.75, + 13.25, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.75, + 5.75, + 13.25, + 6 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 1.25, + -8.4 + ], + "to": [ + 8.75, + 4.85, + -7.8 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 8, + 3.05, + -6.9 + ] + }, + "faces": { + "north": { + "uv": [ + 11, + 11.75, + 11.5, + 12.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 12.25, + 6, + 13.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1.25, + 12, + 1.75, + 13 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.25, + 12.75, + 11.5, + 13.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 13.75, + 6.25, + 13.25, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.75, + 6.25, + 13.25, + 6.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 1.25, + -6.3 + ], + "to": [ + 8.75, + 4.85, + -5.7 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.05, + -4.8 + ] + }, + "faces": { + "north": { + "uv": [ + 1.75, + 12, + 2.25, + 13 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 13, + 3.75, + 14 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 2.75, + 12.5, + 3.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.75, + 13, + 8, + 14 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 13.75, + 6.75, + 13.25, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.75, + 6.75, + 13.25, + 7 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.2, + 2.3, + -6.3 + ], + "to": [ + 9.8, + 3.8, + -5.7 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8, + 3.05, + -4.8 + ] + }, + "faces": { + "north": { + "uv": [ + 11.75, + 6.75, + 12.75, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 13.25, + 6, + 13.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 8, + 13, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 13.25, + 9.25, + 13.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 14, + 10.25, + 13, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14, + 10.25, + 13, + 10.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 1.25, + -6.3 + ], + "to": [ + 8.75, + 4.85, + -5.7 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8, + 3.05, + -4.8 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 12, + 8, + 13 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 13, + 10.75, + 14 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 10, + 12.5, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 10.5, + 13.25, + 11.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 13.75, + 10.75, + 13.25, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.75, + 10.75, + 13.25, + 11 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 1.25, + -6.3 + ], + "to": [ + 8.75, + 4.85, + -5.7 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 8, + 3.05, + -4.8 + ] + }, + "faces": { + "north": { + "uv": [ + 12, + 11.5, + 12.5, + 12.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.75, + 13, + 11, + 14 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0.5, + 12.25, + 1, + 13.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 13, + 11.25, + 14 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 13.75, + 11.25, + 13.25, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.75, + 11.25, + 13.25, + 11.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 1.25, + -4.2 + ], + "to": [ + 8.75, + 4.85, + -2.6 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.05, + -2.7 + ] + }, + "faces": { + "north": { + "uv": [ + 12.25, + 4.75, + 12.75, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 12.25, + 5.75, + 13.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 12.25, + 5.75, + 12.75, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 12.5, + 0.5, + 13.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 13.5, + 12, + 13, + 11.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.5, + 12, + 13, + 12.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.2, + 2.3, + -4.2 + ], + "to": [ + 9.8, + 3.8, + -2.6 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8, + 3.05, + -2.7 + ] + }, + "faces": { + "north": { + "uv": [ + 12.5, + 2.75, + 13.5, + 3.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12.5, + 13, + 13, + 13.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 12.5, + 3.25, + 13.5, + 3.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 12.5, + 13.5, + 13 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 13.5, + 7.75, + 12.5, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.5, + 8.5, + 12.5, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 1.25, + -4.2 + ], + "to": [ + 8.75, + 4.85, + -2.6 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8, + 3.05, + -2.7 + ] + }, + "faces": { + "north": { + "uv": [ + 6.75, + 12.5, + 7.25, + 13.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 12.5, + 8.5, + 13.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 12.5, + 10, + 13, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12.5, + 11, + 13, + 12 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 13.5, + 13.5, + 13, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.75, + 0, + 13.25, + 0.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 1.25, + -4.2 + ], + "to": [ + 8.75, + 4.85, + -2.6 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 8, + 3.05, + -2.7 + ] + }, + "faces": { + "north": { + "uv": [ + 11.5, + 12.5, + 12, + 13.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12, + 12.5, + 12.5, + 13.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 12.5, + 12, + 13, + 13 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 12.75, + 3.5, + 13.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 13.75, + 0.5, + 13.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 13.25, + 1, + 13.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.85, + 3.89, + -10.74 + ], + "to": [ + 8.15, + 4.61, + 5.04 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 4.25, + -7.55 + ] + }, + "faces": { + "north": { + "uv": [ + 13.5, + 2.25, + 13.75, + 2.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.25, + 3.75, + 9.25, + 4 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 2.5, + 13.75, + 2.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 4, + 9.5, + 4.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 9.5, + 3.75, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 5.5, + 4, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.64, + 4.1, + -10.74 + ], + "to": [ + 8.36, + 4.4, + 5.04 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8, + 4.25, + -7.55 + ] + }, + "faces": { + "north": { + "uv": [ + 13.5, + 2.75, + 13.75, + 3 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 4.25, + 9.5, + 4.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 3, + 13.75, + 3.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 4.5, + 9.5, + 4.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 9.5, + 4.25, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 5.5, + 4.5, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.85, + 3.89, + -10.74 + ], + "to": [ + 8.15, + 4.61, + 5.04 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8, + 4.25, + -7.55 + ] + }, + "faces": { + "north": { + "uv": [ + 13.5, + 3.25, + 13.75, + 3.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 0.75, + 10, + 1 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 3.5, + 13.75, + 3.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 1, + 10, + 1.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 9.5, + 4.75, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 5.5, + 5, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.85, + 3.89, + -10.74 + ], + "to": [ + 8.15, + 4.61, + 5.04 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 8, + 4.25, + -7.55 + ] + }, + "faces": { + "north": { + "uv": [ + 3.75, + 13.5, + 4, + 13.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 1.25, + 10, + 1.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 13.5, + 4.25, + 13.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 1.5, + 10, + 1.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 10, + 2.25, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.75, + 6, + 2.5, + 10 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.85, + 1.49, + -10.74 + ], + "to": [ + 8.15, + 2.21, + 5.04 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1.85, + -7.55 + ] + }, + "faces": { + "north": { + "uv": [ + 13.5, + 4, + 13.75, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 1.75, + 10, + 2 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 13.5, + 4.5, + 13.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 2, + 10, + 2.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 10, + 2.75, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 6, + 3, + 10 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.64, + 1.7, + -10.74 + ], + "to": [ + 8.36, + 2, + 5.04 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8, + 1.85, + -7.55 + ] + }, + "faces": { + "north": { + "uv": [ + 13.5, + 4.25, + 13.75, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 4.75, + 10, + 5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 13.5, + 4.75, + 13.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 5, + 10, + 5.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 10, + 3.25, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 6, + 3.5, + 10 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.85, + 1.49, + -10.74 + ], + "to": [ + 8.15, + 2.21, + 5.04 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8, + 1.85, + -7.55 + ] + }, + "faces": { + "north": { + "uv": [ + 13.5, + 4.5, + 13.75, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 5.25, + 10, + 5.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 13.5, + 5, + 13.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 5.5, + 10, + 5.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 9.75, + 6, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 6.25, + 0.75, + 10.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.85, + 1.49, + -10.74 + ], + "to": [ + 8.15, + 2.21, + 5.04 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 8, + 1.85, + -7.55 + ] + }, + "faces": { + "north": { + "uv": [ + 13.5, + 4.75, + 13.75, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 2.25, + 10.25, + 2.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 13.5, + 5.25, + 13.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 2.5, + 10.25, + 2.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 10.25, + 1, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 6.25, + 1.25, + 10.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.85, + 2.14, + -10.74 + ], + "to": [ + 9.15, + 2.86, + 5.04 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9, + 2.5, + -7.55 + ] + }, + "faces": { + "north": { + "uv": [ + 13.5, + 5, + 13.75, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 2.75, + 10.25, + 3 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 13.5, + 5.5, + 13.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 5.75, + 10.25, + 6 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 10.25, + 5.25, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 6.25, + 5.5, + 10.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.64, + 2.35, + -10.74 + ], + "to": [ + 9.36, + 2.65, + 5.04 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 9, + 2.5, + -7.55 + ] + }, + "faces": { + "north": { + "uv": [ + 13.5, + 5.25, + 13.75, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 6, + 10.25, + 6.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 13.5, + 5.75, + 13.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 6.25, + 10.25, + 6.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 10.25, + 5.75, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.25, + 6.5, + 0, + 10.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.85, + 2.14, + -10.74 + ], + "to": [ + 9.15, + 2.86, + 5.04 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 9, + 2.5, + -7.55 + ] + }, + "faces": { + "north": { + "uv": [ + 6.25, + 13.5, + 6.5, + 13.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 6.5, + 10.25, + 6.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 13.5, + 6.75, + 13.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 0, + 10.75, + 0.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0.5, + 10.5, + 0.25, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.75, + 6.5, + 0.5, + 10.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.85, + 2.14, + -10.74 + ], + "to": [ + 9.15, + 2.86, + 5.04 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 9, + 2.5, + -7.55 + ] + }, + "faces": { + "north": { + "uv": [ + 6.75, + 13.5, + 7, + 13.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 0.25, + 10.75, + 0.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 13.5, + 7.25, + 13.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 0.5, + 10.75, + 0.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 10.75, + 6.25, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 6.75, + 6.5, + 10.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.85, + 2.14, + -10.74 + ], + "to": [ + 7.15, + 2.86, + 5.04 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7, + 2.5, + -7.55 + ] + }, + "faces": { + "north": { + "uv": [ + 7.25, + 13.5, + 7.5, + 13.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 3, + 10.75, + 3.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 7.25, + 13.75, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 3.25, + 10.75, + 3.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 10.75, + 6.75, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.75, + 7, + 1.5, + 11 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.64, + 2.35, + -10.74 + ], + "to": [ + 7.36, + 2.65, + 5.04 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 7, + 2.5, + -7.55 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 13.5, + 7.75, + 13.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 3.5, + 10.75, + 3.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 7.5, + 13.75, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 6.75, + 11, + 7 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 11, + 1.75, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.25, + 7, + 2, + 11 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.85, + 2.14, + -10.74 + ], + "to": [ + 7.15, + 2.86, + 5.04 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 7, + 2.5, + -7.55 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 13.5, + 8.25, + 13.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 7, + 11, + 7.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 8, + 13.75, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 7.25, + 11, + 7.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 11.5, + 7, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 7.5, + 7.25, + 11.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.85, + 2.14, + -10.74 + ], + "to": [ + 7.15, + 2.86, + 5.04 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7, + 2.5, + -7.55 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 13.5, + 8.5, + 13.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 7.5, + 11.5, + 7.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 8.25, + 13.75, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 7.75, + 11.5, + 8 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 12, + 7.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 8, + 7.75, + 12 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.85, + 3.29078, + -10.74 + ], + "to": [ + 9.15, + 4.01078, + 5.04 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9, + 3.65078, + -7.55 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 13.5, + 8.75, + 13.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 8, + 12, + 8.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 8.5, + 13.75, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 8.25, + 12, + 8.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.25, + 12.5, + 8, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 8.5, + 8.25, + 12.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.64, + 3.50078, + -10.74 + ], + "to": [ + 9.36, + 3.80078, + 5.04 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 9, + 3.65078, + -7.55 + ] + }, + "faces": { + "north": { + "uv": [ + 8.75, + 13.5, + 9, + 13.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 8.5, + 12.5, + 8.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 8.75, + 13.75, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 8.75, + 12.5, + 9 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.75, + 13, + 8.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 9, + 8.75, + 13 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.85, + 3.29078, + -10.74 + ], + "to": [ + 9.15, + 4.01078, + 5.04 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 9, + 3.65078, + -7.55 + ] + }, + "faces": { + "north": { + "uv": [ + 9.25, + 13.5, + 9.5, + 13.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 9, + 13, + 9.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 9.25, + 13.75, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.25, + 3.75, + 13.25, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.25, + 13.25, + 9, + 9.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 9.25, + 9.25, + 13.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.85, + 3.29078, + -10.74 + ], + "to": [ + 9.15, + 4.01078, + 5.04 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 9, + 3.65078, + -7.55 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 13.5, + 9.75, + 13.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 4, + 13.5, + 4.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 9.5, + 13.75, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 4.25, + 13.5, + 4.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 13.5, + 3.75, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 9.5, + 4, + 13.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.85, + 3.29078, + -10.74 + ], + "to": [ + 7.15, + 4.01078, + 5.04 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7, + 3.65078, + -7.55 + ] + }, + "faces": { + "north": { + "uv": [ + 9.75, + 13.5, + 10, + 13.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 4.5, + 13.5, + 4.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 9.75, + 13.75, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 9.25, + 13.5, + 9.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 13.5, + 4.25, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 9.5, + 4.5, + 13.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.64, + 3.50078, + -10.74 + ], + "to": [ + 7.36, + 3.80078, + 5.04 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 7, + 3.65078, + -7.55 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 13.5, + 10.25, + 13.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 9.5, + 13.5, + 9.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.25, + 13.5, + 10.5, + 13.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 9.75, + 13.5, + 10 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 13.5, + 4.75, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.25, + 9.5, + 5, + 13.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.85, + 3.29078, + -10.74 + ], + "to": [ + 7.15, + 4.01078, + 5.04 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 7, + 3.65078, + -7.55 + ] + }, + "faces": { + "north": { + "uv": [ + 11.5, + 13.5, + 11.75, + 13.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 0.75, + 14, + 1 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 11.5, + 13.75, + 11.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 1, + 14, + 1.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 13.75, + 6, + 9.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 10, + 2.25, + 14 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.85, + 3.29078, + -10.74 + ], + "to": [ + 7.15, + 4.01078, + 5.04 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7, + 3.65078, + -7.55 + ] + }, + "faces": { + "north": { + "uv": [ + 11.75, + 13.5, + 12, + 13.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 1.25, + 14, + 1.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 13.5, + 11.75, + 13.75, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 1.5, + 14, + 1.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.75, + 14, + 2.5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 10, + 2.75, + 14 + ], + "texture": "#0" + } + } + } + ], + "gui_light": "front", + "display": { + "thirdperson_righthand": { + "rotation": [ + 67.5, + -10, + 0 + ], + "translation": [ + 0.25, + 3.5, + -0.25 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + }, + "thirdperson_lefthand": { + "rotation": [ + 75, + 0, + 0 + ], + "translation": [ + 0, + 13, + -3.25 + ], + "scale": [ + 0, + 0, + 0 + ] + }, + "firstperson_righthand": { + "translation": [ + -4, + 0.5, + -7 + ] + }, + "firstperson_lefthand": { + "translation": [ + -4, + 0.5, + -7 + ] + }, + "ground": { + "translation": [ + 1.25, + 7.5, + 3.75 + ], + "scale": [ + 0.75, + 0.75, + 0.75 + ] + }, + "gui": { + "rotation": [ + 30, + -145, + 0 + ], + "translation": [ + -1.5, + 3.25, + 0 + ], + "scale": [ + 0.6, + 0.6, + 0.6 + ] + }, + "head": { + "translation": [ + 6.75, + 22.25, + -3.25 + ] + }, + "fixed": { + "rotation": [ + 0, + 90, + 0 + ], + "translation": [ + 4.5, + 7, + -3.25 + ], + "scale": [ + 1.5, + 1.5, + 1.5 + ] + } + }, + "groups": [ + { + "name": "group", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + { + "name": "group", + "origin": [ + 6.875, + 2.75, + 0 + ], + "color": 0, + "children": [ + { + "name": "group", + "origin": [ + 8, + 3.175, + -13.5 + ], + "color": 0, + "children": [ + 11, + 12, + 13, + 14 + ] + }, + { + "name": "group", + "origin": [ + 8, + 3.175, + -13.5 + ], + "color": 0, + "children": [ + 15, + 16, + 17, + 18 + ] + }, + { + "name": "group", + "origin": [ + 8, + 3.175, + -13.5 + ], + "color": 0, + "children": [ + 19, + 20, + 21, + 22 + ] + }, + { + "name": "group", + "origin": [ + 8, + 3.175, + -13.5 + ], + "color": 0, + "children": [ + 23, + 24, + 25, + 26 + ] + }, + { + "name": "group", + "origin": [ + 8, + 3.175, + -13.5 + ], + "color": 0, + "children": [ + { + "name": "group", + "origin": [ + 8, + 3.175, + -13.5 + ], + "color": 0, + "children": [ + 27, + 28, + 29, + 30 + ] + }, + { + "name": "group", + "origin": [ + 8, + 3.175, + -13.5 + ], + "color": 0, + "children": [ + 31, + 32, + 33, + 34 + ] + }, + { + "name": "group", + "origin": [ + 8, + 3.175, + -13.5 + ], + "color": 0, + "children": [ + 35, + 36, + 37, + 38 + ] + }, + { + "name": "group", + "origin": [ + 8, + 3.175, + -13.5 + ], + "color": 0, + "children": [ + 39, + 40, + 41, + 42 + ] + }, + { + "name": "group", + "origin": [ + 8, + 3.175, + -13.5 + ], + "color": 0, + "children": [ + 43, + 44, + 45, + 46 + ] + }, + { + "name": "group", + "origin": [ + 8, + 3.175, + -13.5 + ], + "color": 0, + "children": [ + 47, + 48, + 49, + 50 + ] + } + ] + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/minigun_base.json b/src/main/resources/assets/superbwarfare/models/item/minigun_base.json new file mode 100644 index 000000000..977cb3ce0 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/minigun_base.json @@ -0,0 +1,6 @@ +{ + "parent": "superbwarfare:displaysettings/minigun.item", + "textures": { + "layer0": "superbwarfare:item/minigun" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/minigun_icon.json b/src/main/resources/assets/superbwarfare/models/item/minigun_icon.json new file mode 100644 index 000000000..210752778 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/minigun_icon.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/minigun_icon" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/mk42_spawn_egg.json b/src/main/resources/assets/superbwarfare/models/item/mk42_spawn_egg.json new file mode 100644 index 000000000..7a2c6da81 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/mk42_spawn_egg.json @@ -0,0 +1,3 @@ +{ + "parent": "item/template_spawn_egg" +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/mk_14.json b/src/main/resources/assets/superbwarfare/models/item/mk_14.json new file mode 100644 index 000000000..29d14bfc3 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/mk_14.json @@ -0,0 +1,27 @@ +{ + "loader": "forge:separate_transforms", + "gui_light": "front", + "base": { + "parent": "superbwarfare:item/mk_14_base" + }, + "perspectives": { + "gui": { + "parent": "superbwarfare:item/mk_14_icon" + }, + "thirdperson_righthand": { + "parent": "superbwarfare:item/mk_143d" + }, + "thirdperson_lefthand": { + "parent": "superbwarfare:item/mk_143d" + }, + "ground": { + "parent": "superbwarfare:item/mk_143d" + }, + "fixed": { + "parent": "superbwarfare:item/mk_143d" + }, + "head": { + "parent": "superbwarfare:item/mk_143d" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/mk_143d.json b/src/main/resources/assets/superbwarfare/models/item/mk_143d.json new file mode 100644 index 000000000..3633526fe --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/mk_143d.json @@ -0,0 +1,2512 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 64, + 64 + ], + "textures": { + "0": "superbwarfare:item/mk143d", + "particle": "superbwarfare:item/mk143d" + }, + "elements": [ + { + "from": [ + 7.2, + 1.5, + -2 + ], + "to": [ + 8.8, + 3.9, + 8 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 5.5, + 3.5, + 6, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 0, + 3.5, + 0.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0.5, + 6.5, + 1, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 0.5, + 3.5, + 1 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 3.5, + 1, + 1 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 1, + 1.5, + 3.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.1, + 1.25, + 1.75 + ], + "to": [ + 8.9, + 2.65, + 17 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 7.25, + 0.25, + 7.75, + 0.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 0, + 7.25, + 0.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 1.5, + 7.75, + 1.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 0.25, + 7.25, + 0.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0.5, + 3.75, + 0, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 0, + 0.5, + 3.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.1, + 1.25, + 22.5 + ], + "to": [ + 8.9, + 2.9, + 27 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 6.5, + 0.5, + 7, + 1 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.25, + 2.5, + 5.5, + 3 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 2.5, + 7, + 3 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 3, + 5.5, + 3.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 5.75, + 3, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 4.5, + 3.5, + 5.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.1, + 3.15, + 19.5 + ], + "to": [ + 8.9, + 3.4, + 24 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 7.25, + 1.75, + 7.75, + 2 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 5.25, + 7.5, + 5.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 7.25, + 3.75, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 5.5, + 7.5, + 5.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 5.75, + 4, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 4.5, + 4.5, + 5.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.35, + 2.9, + 22.75 + ], + "to": [ + 8.65, + 3.15, + 24 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 6.5, + 7.5, + 6.75, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 6.5, + 7.75, + 6.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 7.5, + 7, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 7.5, + 7.25, + 7.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 7.75, + 7.25, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 7.5, + 7.5, + 7.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.1, + -1.75, + 25.35 + ], + "to": [ + 8.9, + 1.25, + 27 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + -1, + 26.175 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 5.75, + 4.5, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 5.75, + 5, + 6.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 0.5, + 6.5, + 1.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 6, + 2, + 6.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 3.5, + 6.5, + 3 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 3.5, + 6.5, + 4 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.1, + -1.49138, + 25.00019 + ], + "to": [ + 8.9, + 2.00862, + 26.65019 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + -0.74138, + 25.82519 + ] + }, + "faces": { + "north": { + "uv": [ + 1.5, + 5, + 2, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 5, + 5.5, + 6 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 5.25, + 0.5, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 0.5, + 6, + 1.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 7, + 4, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 6.5, + 4.5, + 7 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.2, + -4.03204, + 14.80202 + ], + "to": [ + 9, + -0.38204, + 16.30202 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8.1, + -1.70704, + 10.92702 + ] + }, + "faces": { + "north": { + "uv": [ + 5.5, + 2.5, + 6, + 3.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 5, + 6, + 6 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 5.75, + 3.5, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 5.75, + 4, + 6.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 6.25, + 6.5, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 6.25, + 6.5, + 6.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.2, + -4.28204, + 14.55202 + ], + "to": [ + 9, + -4.03204, + 16.30202 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8.1, + -1.70704, + 10.92702 + ] + }, + "faces": { + "north": { + "uv": [ + 6.5, + 7.25, + 7, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 6.75, + 7.75, + 7 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 7, + 7.75, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 7.25, + 7.75, + 7.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 7.25, + 1.5, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 1.5, + 6.75, + 2 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.2, + 2.65, + 12.25 + ], + "to": [ + 8.8, + 4.15, + 14.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 3, + 6.75, + 3.5, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 6.75, + 4, + 7.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 6.75, + 7, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.5, + 7, + 1, + 7.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 1, + 7, + 0.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 2, + 7, + 2.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.2, + 3.25623, + 13.77724 + ], + "to": [ + 8.8, + 4.00623, + 14.77724 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 3.38123, + 14.27724 + ] + }, + "faces": { + "north": { + "uv": [ + 0.25, + 7.5, + 0.75, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 7.75, + 0.25, + 8 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 0.5, + 8, + 0.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.25, + 7.75, + 0.5, + 8 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 7.75, + 0.75, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 0.75, + 7.5, + 1 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.2, + 1.87329, + 14.22198 + ], + "to": [ + 8.8, + 2.87329, + 15.72198 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 2.37329, + 16.09698 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 1, + 8, + 1.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 1.25, + 8, + 1.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 2, + 8, + 2.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 2.25, + 8, + 2.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 3, + 7, + 2.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 3, + 7, + 3.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.2, + 1.97874, + 15.69186 + ], + "to": [ + 8.8, + 2.97874, + 16.19186 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 2.47874, + 17.81686 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 2.5, + 8, + 2.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 0.25, + 8, + 0.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 2.75, + 8, + 3 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.5, + 7.75, + 0.75, + 8 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 3.25, + 7.5, + 3 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 7.5, + 3.25, + 7.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.2, + 1.12258, + 15.21591 + ], + "to": [ + 8.8, + 1.62258, + 15.71591 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 8, + 1.12258, + 17.34091 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 3.25, + 8, + 3.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.75, + 7.75, + 1, + 8 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 4, + 8, + 4.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 7.75, + 1.25, + 8 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 4.5, + 7.5, + 4.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 4.5, + 7.5, + 4.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.45, + 1, + 14 + ], + "to": [ + 8.55, + 2.65, + 18.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 3.75, + 7.25, + 4, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.25, + 3.5, + 5.5, + 4 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1.25, + 7.5, + 1.5, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 4, + 6, + 4.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0.5, + 7.5, + 0.25, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 5.75, + 6.25, + 7 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.9, + 1.5, + 14 + ], + "to": [ + 7.5, + 2.1, + 24.75 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 7.75, + 1.5, + 8, + 1.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 1.5, + 6.75, + 1.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 1.75, + 8, + 2 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 1.75, + 6.75, + 2 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0.75, + 6.5, + 0.5, + 3.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 3.75, + 0.75, + 6.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.5, + 1.5, + 14 + ], + "to": [ + 9.1, + 2.1, + 24.75 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 3.25, + 7.75, + 3.5, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 4, + 4.75, + 4.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 7.75, + 3.75, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 4.25, + 4.75, + 4.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 7.25, + 2, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 4.5, + 2.25, + 7.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.2, + 1, + 8 + ], + "to": [ + 8.8, + 3.65, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 6, + 2.5, + 6.5, + 3.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 1, + 3.5, + 1.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 3.25, + 6.5, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 1.75, + 3.5, + 2.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 2, + 3.5, + 0.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 3.5, + 1, + 5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.8, + 2.9, + 8 + ], + "to": [ + 9.55, + 3.4, + 8.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 3.75, + 7.75, + 4, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 3.75, + 8, + 4 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 7.75, + 5, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 7.75, + 5.25, + 8 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 5.25, + 7.75, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 7.75, + 5.25, + 8 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.45, + 1, + 8 + ], + "to": [ + 8.55, + 3.9, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 4.75, + 7, + 5, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 2.5, + 3.5, + 3.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 7, + 6.5, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 3.25, + 3.5, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 7.5, + 5, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 5, + 6, + 6.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.45, + -2.75, + 8.25 + ], + "to": [ + 8.55, + 1.65, + 11.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 6, + 6.5, + 6.25, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 2, + 4.25, + 3 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 7, + 4.25, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 3, + 4.25, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 7.5, + 7, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.75, + 7.25, + 1.5, + 8 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.2, + 2.04719, + 7.33307 + ], + "to": [ + 8.8, + 2.69719, + 8.73542 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 3.37219, + 5.73542 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 4.75, + 8, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 7.75, + 5.75, + 8 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 7.5, + 5.5, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 7.75, + 6, + 8 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 5.5, + 7.5, + 5.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 7.5, + 5.5, + 7.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.45, + 3.9, + -2 + ], + "to": [ + 8.55, + 4.15, + 8 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 7.75, + 6, + 8, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 4.5, + 7.5, + 4.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 7.75, + 6.5, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 4.75, + 7.5, + 5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 7.5, + 1, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 5, + 1.25, + 7.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.45, + 4.4, + 7.75 + ], + "to": [ + 8.55, + 4.65, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 7.75, + 6.25, + 8, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 1.25, + 7.5, + 1.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 7.75, + 6.75, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 4, + 7.5, + 4.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 7.5, + 5.25, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 6, + 5.5, + 7.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.35, + 4.4, + 8.55 + ], + "to": [ + 8.65, + 4.85, + 12.9 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 7.75, + 6.5, + 8, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 1, + 7.5, + 1.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 7.75, + 7, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 3.5, + 8, + 3.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 8, + 4.25, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 7, + 4.5, + 8 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.45, + 4.4, + 9.25 + ], + "to": [ + 8.55, + 5.05, + 12.15 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 7.75, + 6.75, + 8, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 3.75, + 7.75, + 4 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 7.75, + 7.25, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 0, + 8, + 0.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 8, + 1.75, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.25, + 7.25, + 2, + 8 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.2, + 5.05, + 3.75 + ], + "to": [ + 8.8, + 6.65, + 13.4 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 5.75, + 7.5, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 0.5, + 5.5, + 1 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 6.25, + 7.5, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 1, + 5.5, + 1.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 5, + 1.5, + 3.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.5, + 3.75, + 0, + 5.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.45, + 3.9, + 12.5 + ], + "to": [ + 8.55, + 4.4, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 7.75, + 7, + 8, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 5.5, + 8, + 5.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 7.75, + 7.5, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 5.75, + 8, + 6 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 8, + 6, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 6, + 7.5, + 6.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.6, + 2.7, + -13 + ], + "to": [ + 8.4, + 3.5, + -2 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 7.75, + 7.25, + 8, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.25, + 2, + 7, + 2.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 7.75, + 7.75, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.25, + 2.25, + 7, + 2.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.75, + 7.25, + 2.5, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 4.5, + 2.75, + 7.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.6, + 1.7, + -8.25 + ], + "to": [ + 8.4, + 2.5, + -2 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 7.75, + 7.5, + 8, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 4.25, + 7.5, + 4.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 7.75, + 8, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 5, + 7.75, + 5.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 7.5, + 5.75, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.25, + 6.25, + 0, + 7.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.45, + 1.55, + -7.75 + ], + "to": [ + 8.55, + 4.75, + -6.75 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1, + 9 + ] + }, + "faces": { + "north": { + "uv": [ + 2.25, + 7.25, + 2.5, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 7.25, + 2.75, + 8 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2.75, + 7.25, + 3, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 7.25, + 3.25, + 8 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0.25, + 8.25, + 0, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.25, + 0, + 8, + 0.25 + ], + "texture": "#0" + } + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [ + -1.25, + 4.5, + -3.25 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + }, + "thirdperson_lefthand": { + "scale": [ + 0, + 0, + 0 + ] + }, + "ground": { + "translation": [ + 0, + 5.25, + 0 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + }, + "head": { + "translation": [ + 0, + 13.25, + -3.25 + ] + }, + "fixed": { + "rotation": [ + 0, + 90, + 0 + ], + "translation": [ + -1, + 6.5, + -0.25 + ], + "scale": [ + 1.1, + 1.1, + 1.1 + ] + } + }, + "groups": [ + { + "name": "group", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "children": [ + 0, + 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, + { + "name": "group", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "children": [ + 28, + 29, + 30 + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/mk_14_base.json b/src/main/resources/assets/superbwarfare/models/item/mk_14_base.json new file mode 100644 index 000000000..34c836719 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/mk_14_base.json @@ -0,0 +1,6 @@ +{ + "parent": "superbwarfare:displaysettings/mk14ebr.item", + "textures": { + "layer0": "superbwarfare:item/mk14" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/mk_14_icon.json b/src/main/resources/assets/superbwarfare/models/item/mk_14_icon.json new file mode 100644 index 000000000..aad057cf1 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/mk_14_icon.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/mk_14_icon" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/mle1934_spawn_egg.json b/src/main/resources/assets/superbwarfare/models/item/mle1934_spawn_egg.json new file mode 100644 index 000000000..7a2c6da81 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/mle1934_spawn_egg.json @@ -0,0 +1,3 @@ +{ + "parent": "item/template_spawn_egg" +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/monitor.json b/src/main/resources/assets/superbwarfare/models/item/monitor.json new file mode 100644 index 000000000..29a5a3ea7 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/monitor.json @@ -0,0 +1,14 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/monitor" + }, + "overrides": [ + { + "predicate": { + "superbwarfare:monitor_linked": 1 + }, + "model": "superbwarfare:item/monitor_linked" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/monitor_linked.json b/src/main/resources/assets/superbwarfare/models/item/monitor_linked.json new file mode 100644 index 000000000..347764170 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/monitor_linked.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/monitor_linked" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/monster_hunter.json b/src/main/resources/assets/superbwarfare/models/item/monster_hunter.json new file mode 100644 index 000000000..b5797b21d --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/monster_hunter.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/perk/monster_hunter" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/mosin_nagant.json b/src/main/resources/assets/superbwarfare/models/item/mosin_nagant.json new file mode 100644 index 000000000..98411e978 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/mosin_nagant.json @@ -0,0 +1,27 @@ +{ + "loader": "forge:separate_transforms", + "gui_light": "front", + "base": { + "parent": "superbwarfare:item/mosin_nagant_base" + }, + "perspectives": { + "gui": { + "parent": "superbwarfare:item/mosin_nagant_icon" + }, + "thirdperson_righthand": { + "parent": "superbwarfare:item/mosin_nagant_3d" + }, + "thirdperson_lefthand": { + "parent": "superbwarfare:item/mosin_nagant_3d" + }, + "ground": { + "parent": "superbwarfare:item/mosin_nagant_3d" + }, + "fixed": { + "parent": "superbwarfare:item/mosin_nagant_3d" + }, + "head": { + "parent": "superbwarfare:item/mosin_nagant_3d" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/mosin_nagant_3d.json b/src/main/resources/assets/superbwarfare/models/item/mosin_nagant_3d.json new file mode 100644 index 000000000..4dc0dcd3f --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/mosin_nagant_3d.json @@ -0,0 +1,1798 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 32, + 32 + ], + "textures": { + "0": "superbwarfare:item/mosin3d" + }, + "elements": [ + { + "from": [ + 7.4, + 6.6, + 15.7 + ], + "to": [ + 8.6, + 7.4, + 18.75 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 6.5, + 0.5 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 11.5, + 10.5, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 8, + 10.5, + 8.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 10, + 12, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 3, + 12, + 3.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 12, + 1, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 10.5, + 1.5, + 12 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 8, + 13.7 + ], + "to": [ + 8.5, + 9, + 19.25 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 8, + 8.5, + 16.725 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 11.5, + 11, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 7.5, + 12, + 8 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 10.5, + 12, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 9, + 11, + 9.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 3, + 9.5, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 9.5, + 8, + 12.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.6, + 6.2, + -15.1 + ], + "to": [ + 8.4, + 7, + -8.35 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 6.7, + 0.275 + ] + }, + "faces": { + "north": { + "uv": [ + 11.5, + 11, + 12, + 11.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 8.5, + 11.5, + 9 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 11.5, + 11.5, + 12, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 6, + 12.5, + 6.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 12.5, + 2, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 9, + 2.5, + 12.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.7, + 7, + -14 + ], + "to": [ + 8.3, + 7.5, + -13.45 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 6.5, + -1.6 + ] + }, + "faces": { + "north": { + "uv": [ + 12, + 0, + 12.5, + 0.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12, + 0.5, + 12.5, + 1 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 12, + 1.5, + 12.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 12, + 2, + 12.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 12.5, + 2.5, + 12, + 2 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.5, + 2.5, + 12, + 3 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.35, + 5.3, + 8.55 + ], + "to": [ + 8.65, + 7.1, + 9 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 6.5, + 6.8 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 10.5, + 9, + 11.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 10.5, + 9.5, + 11.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 10.5, + 10, + 11.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 9.5, + 11, + 10.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 12.5, + 3.5, + 12, + 3 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.5, + 3.5, + 12, + 4 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.35, + 5.3, + -3.55 + ], + "to": [ + 8.65, + 7.1, + -3.1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 6.5, + -5.3 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 10.5, + 10.5, + 11.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 10.5, + 11, + 11.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 0, + 11.5, + 1 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 1, + 11.5, + 2 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 12.5, + 6, + 12 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 12, + 6.5, + 12.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 6.7, + 9 + ], + "to": [ + 8.5, + 7.3, + 11.75 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 6.5, + 0.5 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 12, + 7.5, + 12.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 3.5, + 12, + 4 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 12, + 8, + 12.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 8, + 12, + 8.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 12, + 6, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 10.5, + 6.5, + 12 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.3, + 6.8, + 15.25 + ], + "to": [ + 9.1, + 7.2, + 15.65 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 6.5, + -5.5 + ] + }, + "faces": { + "north": { + "uv": [ + 12, + 7.5, + 12.5, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12, + 8, + 12.5, + 8.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 8.5, + 12.5, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 12, + 9.5, + 12.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 12.5, + 9.5, + 12, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 12, + 9.5, + 12.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.8683, + 5.75391, + 15.25 + ], + "to": [ + 9.2683, + 7.15391, + 15.65 + ], + "rotation": { + "angle": 22.5, + "axis": "z", + "origin": [ + 9.0683, + 6.75391, + 15.45 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 12, + 10.5, + 12.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12, + 10, + 12.5, + 10.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 12, + 11, + 12.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 10.5, + 12.5, + 11 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 11.5, + 12.5, + 11, + 12 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.5, + 11, + 12, + 11.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.7, + 6.5, + 11.75 + ], + "to": [ + 8.3, + 7.2, + 18.35 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 6.5, + 4 + ] + }, + "faces": { + "north": { + "uv": [ + 11.5, + 12, + 12, + 12.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 6.5, + 12.5, + 7 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 11.5, + 12.5, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 7, + 12.5, + 7.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 12.5, + 3, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 9, + 3.5, + 12.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 5.05, + 9 + ], + "to": [ + 8.75, + 6.75, + 19 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 6.5, + 0.5 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 3, + 10.5, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 2, + 7, + 3 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 9.5, + 9.5, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 3, + 7, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 9, + 2, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 4, + 3, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.05, + 6.85, + 14.8 + ], + "to": [ + 7.35, + 8.45, + 15.3 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 6.5, + 0.5 + ] + }, + "faces": { + "north": { + "uv": [ + 11, + 2, + 11.5, + 3 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 11, + 7.5, + 12 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 11, + 8, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 9, + 11.5, + 10 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 12.5, + 12.5, + 12, + 12 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.5, + 12.5, + 0, + 13 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.05, + 6.85, + 16.4 + ], + "to": [ + 7.35, + 8.45, + 16.9 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 6.5, + 2.1 + ] + }, + "faces": { + "north": { + "uv": [ + 11, + 10, + 11.5, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 11, + 11.5, + 12 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 11.5, + 0.5, + 12.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 0, + 12, + 1 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 13, + 0.5, + 12.5, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 12.5, + 0.5, + 13 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.35, + 7.85, + 16.4 + ], + "to": [ + 8.15, + 8.45, + 16.9 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 6.5, + 2.1 + ] + }, + "faces": { + "north": { + "uv": [ + 12.5, + 0.5, + 13, + 1 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 12.5, + 1.5, + 13 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 12.5, + 1, + 13, + 1.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 12.5, + 2, + 13 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 13, + 2, + 12.5, + 1.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 12.5, + 2, + 13 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.35, + 7.85, + 14.8 + ], + "to": [ + 8.15, + 8.45, + 15.3 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 6.5, + 0.5 + ] + }, + "faces": { + "north": { + "uv": [ + 12.5, + 2, + 13, + 2.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 12.5, + 3, + 13 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 12.5, + 2.5, + 13, + 3 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 12.5, + 3.5, + 13 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 13, + 3.5, + 12.5, + 3 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 12.5, + 3.5, + 13 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.01406, + 6.35, + 14.7 + ], + "to": [ + 7.35, + 6.85, + 17 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 6.5, + 2.1 + ] + }, + "faces": { + "north": { + "uv": [ + 12.5, + 3.5, + 13, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11.5, + 1, + 12.5, + 1.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 12.5, + 6.5, + 13 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 1.5, + 12.5, + 2 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 12.5, + 0.5, + 11.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12, + 2, + 11.5, + 3 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.45, + 5.35, + -8.9 + ], + "to": [ + 8.55, + 6.75, + 9 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 6.5, + 0.5 + ] + }, + "faces": { + "north": { + "uv": [ + 12.5, + 6, + 13, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 4, + 13, + 4.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 12.5, + 7, + 13 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 4.5, + 13, + 5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 14, + 4, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 5, + 4.5, + 14 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.45, + 6.75, + -8.9 + ], + "to": [ + 8.55, + 7.05, + 9 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 6.5, + 0.5 + ] + }, + "faces": { + "north": { + "uv": [ + 12.5, + 6.5, + 13, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 5, + 14, + 5.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 12.5, + 7.5, + 13 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 5.5, + 14, + 6 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 15, + 5, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 6, + 5.5, + 15 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 0.48603, + 17.41424 + ], + "to": [ + 8.75, + 2.28603, + 29.91424 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 1.28603, + 29.57807 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 9.5, + 10.5, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 6.5, + 1 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 0, + 11, + 1 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 1, + 6.5, + 2 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 8.5, + 0, + 2 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 2, + 1, + 8.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 3.68658, + 21.6194 + ], + "to": [ + 8.75, + 5.58658, + 26.1694 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 3.83658, + 35.48323 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 1, + 11, + 2 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 2, + 9.5, + 3 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 2, + 11, + 3 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 3, + 9.5, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 10.5, + 6, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 6, + 8, + 8.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 1.88658, + 26.1194 + ], + "to": [ + 8.75, + 5.58658, + 30.3694 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 3.83658, + 35.48323 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 8, + 8, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 6, + 8, + 8 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 8.5, + 1, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 0, + 8.5, + 2 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 2, + 8.5, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 8.5, + 1, + 10.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 0.36705, + 29.34206 + ], + "to": [ + 8.75, + 1.88658, + 30.3694 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 3.93658, + 35.48323 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 10, + 8, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 11.5, + 9, + 12.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 10.5, + 1, + 11.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11.5, + 8.5, + 12, + 9.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 12, + 9, + 11.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.5, + 9.5, + 11.5, + 10 + ], + "texture": "#0" + } + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [ + -1.5, + 2, + -4.75 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + }, + "thirdperson_lefthand": { + "translation": [ + -1.5, + 2, + -4.75 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + }, + "ground": { + "translation": [ + 0, + 1.5, + 0 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] + }, + "head": { + "translation": [ + 0, + 9.75, + -4.25 + ] + }, + "fixed": { + "rotation": [ + 0, + -90, + 0 + ], + "translation": [ + 3.5, + 2.25, + 0 + ] + } + }, + "groups": [ + { + "name": "group", + "origin": [ + 8, + 3.83658, + 35.48323 + ], + "color": 0, + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21 + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/mosin_nagant_base.json b/src/main/resources/assets/superbwarfare/models/item/mosin_nagant_base.json new file mode 100644 index 000000000..cab56d811 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/mosin_nagant_base.json @@ -0,0 +1,6 @@ +{ + "parent": "superbwarfare:displaysettings/k98.item", + "textures": { + "layer0": "superbwarfare:item/mosin_nagant" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/mosin_nagant_icon.json b/src/main/resources/assets/superbwarfare/models/item/mosin_nagant_icon.json new file mode 100644 index 000000000..f0eb9e4ad --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/mosin_nagant_icon.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/mosin_nagant_icon" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/mp443_3d.json b/src/main/resources/assets/superbwarfare/models/item/mp443_3d.json new file mode 100644 index 000000000..38ff2e8ad --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/mp443_3d.json @@ -0,0 +1,852 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 32, + 32 + ], + "textures": { + "0": "superbwarfare:item/mp443_3d", + "particle": "superbwarfare:item/mp443_3d" + }, + "elements": [ + { + "from": [ + 7.1, + 7, + 9.5 + ], + "to": [ + 8.9, + 8, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7, + 6, + 2 + ] + }, + "faces": { + "north": { + "uv": [ + 6, + 8, + 7, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 3, + 9.5, + 3.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 7, + 9, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 3.5, + 9.5, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 8, + 4, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 5.5, + 5, + 8 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.1, + 7, + 7 + ], + "to": [ + 8.9, + 7.5, + 9.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7, + 6, + 2 + ] + }, + "faces": { + "north": { + "uv": [ + 3, + 8.5, + 4, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 8, + 4.5, + 8.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 8.5, + 5, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 8, + 6, + 8.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 1.5, + 7, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 1.5, + 7, + 3 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.1, + 7, + 3 + ], + "to": [ + 8.9, + 8, + 7 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7, + 6, + 2 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 8.5, + 6, + 9 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 0, + 10, + 0.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 8.5, + 7, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 0.5, + 10, + 1 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 4, + 6, + 2 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 6, + 3, + 8 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.1, + 5, + 6.5 + ], + "to": [ + 8.9, + 7, + 14 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7, + 4, + 2 + ] + }, + "faces": { + "north": { + "uv": [ + 0.5, + 7.5, + 1.5, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 0, + 7, + 1 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 7.5, + 2.5, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 1, + 7, + 2 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 6, + 3, + 2 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 3.5, + 0, + 7.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.1, + 5.75723, + 12.92312 + ], + "to": [ + 8.9, + 7.60723, + 13.69312 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 7, + 4.60723, + 11.94312 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 1, + 9, + 2 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 8.5, + 2.5, + 9.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 2, + 9, + 3 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 8.5, + 7.5, + 9.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 8.5, + 8.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 1, + 9, + 1.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.2, + 6.5, + 2 + ], + "to": [ + 8.8, + 7.9, + 9.75 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7, + 4, + 2 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 7.5, + 9.5, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 4, + 10, + 4.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 8.5, + 9, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 4.5, + 10, + 5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 7.5, + 1, + 3.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 3.5, + 2, + 7.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.35, + 5.25, + 2 + ], + "to": [ + 8.65, + 6.5, + 6.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7, + 4, + 2 + ] + }, + "faces": { + "north": { + "uv": [ + 3.5, + 9, + 4, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 5, + 9.5, + 5.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 9, + 4.5, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 5.5, + 9.5, + 6 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 8.5, + 7, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.5, + 7.5, + 0, + 10 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.75, + 3.25, + 7 + ], + "to": [ + 8.25, + 5, + 7.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 4.125, + 7.125 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 7.5, + 8.5, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.5, + 8.5, + 1, + 9.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 8.5, + 1.5, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 8.5, + 2, + 9.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 2, + 9, + 1.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 2, + 9, + 2.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.75, + 3.25, + 7.25 + ], + "to": [ + 8.25, + 3.5, + 10.75 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 3.375, + 8.875 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 2.5, + 9.5, + 3 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 6, + 9.5, + 6.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 9, + 3.5, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 6.5, + 9.5, + 7 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 9.5, + 2.5, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 7, + 7.5, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.15781, + -0.26537, + 10.40224 + ], + "to": [ + 8.84219, + 6.23463, + 13.15224 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 7, + 4.23463, + 12.15224 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 2, + 5, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 1.5, + 3.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 2, + 6, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 0, + 3, + 3.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 6.5, + 6, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 6.5, + 6, + 8 + ], + "texture": "#0" + } + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [ + -1, + 1.5, + 0 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] + }, + "thirdperson_lefthand": { + "scale": [ + 0, + 0, + 0 + ] + }, + "firstperson_lefthand": { + "translation": [ + 0, + -80, + 0 + ], + "scale": [ + 0, + 0, + 0 + ] + }, + "ground": { + "translation": [ + 0, + -0.25, + 0 + ], + "scale": [ + 0.75, + 0.75, + 0.75 + ] + }, + "head": { + "translation": [ + 0, + 10.25, + 0 + ] + }, + "fixed": { + "rotation": [ + 90, + 45, + -90 + ], + "translation": [ + 1.25, + 4, + 0 + ], + "scale": [ + 1.2, + 1.2, + 1.2 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/mp443_icon.json b/src/main/resources/assets/superbwarfare/models/item/mp443_icon.json new file mode 100644 index 000000000..394713f14 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/mp443_icon.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/mp443_icon" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/mp_443.json b/src/main/resources/assets/superbwarfare/models/item/mp_443.json new file mode 100644 index 000000000..9048175be --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/mp_443.json @@ -0,0 +1,27 @@ +{ + "loader": "forge:separate_transforms", + "gui_light": "front", + "base": { + "parent": "superbwarfare:item/glock_17_base" + }, + "perspectives": { + "gui": { + "parent": "superbwarfare:item/mp443_icon" + }, + "thirdperson_righthand": { + "parent": "superbwarfare:item/mp443_3d" + }, + "thirdperson_lefthand": { + "parent": "superbwarfare:item/mp443_3d" + }, + "ground": { + "parent": "superbwarfare:item/mp443_3d" + }, + "fixed": { + "parent": "superbwarfare:item/mp443_3d" + }, + "head": { + "parent": "superbwarfare:item/mp443_3d" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/ntw_20.json b/src/main/resources/assets/superbwarfare/models/item/ntw_20.json new file mode 100644 index 000000000..acdd69975 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/ntw_20.json @@ -0,0 +1,27 @@ +{ + "loader": "forge:separate_transforms", + "gui_light": "front", + "base": { + "parent": "superbwarfare:item/ntw_20_base" + }, + "perspectives": { + "gui": { + "parent": "superbwarfare:item/ntw_20_icon" + }, + "thirdperson_righthand": { + "parent": "superbwarfare:item/ntw_203d" + }, + "thirdperson_lefthand": { + "parent": "superbwarfare:item/ntw_203d" + }, + "ground": { + "parent": "superbwarfare:item/ntw_203d" + }, + "fixed": { + "parent": "superbwarfare:item/ntw_203d" + }, + "head": { + "parent": "superbwarfare:item/ntw_203d" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/ntw_203d.json b/src/main/resources/assets/superbwarfare/models/item/ntw_203d.json new file mode 100644 index 000000000..dbd6d6775 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/ntw_203d.json @@ -0,0 +1,1559 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 64, + 64 + ], + "textures": { + "0": "superbwarfare:item/ntw_203d", + "particle": "superbwarfare:item/ntw_203d" + }, + "elements": [ + { + "from": [ + 7, + 4.5, + 8.8 + ], + "to": [ + 9, + 6.25, + 30 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 0, + 0, + 4 + ] + }, + "faces": { + "north": { + "uv": [ + 2.25, + 6, + 2.75, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 6.75, + 0.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 6, + 4.5, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0.75, + 6.75, + 1.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0.5, + 8.25, + 0, + 1.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 1.5, + 0.5, + 8.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7, + 2.75, + 30 + ], + "to": [ + 9, + 6.25, + 31.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 0, + 0, + 4 + ] + }, + "faces": { + "north": { + "uv": [ + 2, + 4, + 2.5, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.75, + 6, + 3, + 7.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 4, + 3, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 6, + 4.75, + 7.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 7.25, + 6.25, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 7, + 7, + 7.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 2.5, + 4.75, + 20.5 + ], + "to": [ + 7, + 6, + 25.75 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 0, + 0, + 4 + ] + }, + "faces": { + "north": { + "uv": [ + 4.5, + 2, + 5.75, + 2.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 2.5, + 5.75, + 3 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 3, + 5.75, + 3.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 3.5, + 5.75, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 2.75, + 2, + 1.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.25, + 2.75, + 2, + 4 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7, + 2.75, + 25 + ], + "to": [ + 9, + 4.5, + 30 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 0, + 0, + 4 + ] + }, + "faces": { + "north": { + "uv": [ + 6.25, + 5, + 6.75, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 4.5, + 5.25, + 5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 5.5, + 6.75, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 5, + 5.25, + 5.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 6.25, + 1, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 5, + 1.5, + 6.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 2.23413, + 20.15879 + ], + "to": [ + 8.5, + 4.73413, + 21.40879 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 1.73413, + 21.03379 + ] + }, + "faces": { + "north": { + "uv": [ + 6.75, + 5.75, + 7, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 6.75, + 6.25, + 7.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 6.5, + 7, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 0.25, + 7.25, + 1 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 7.5, + 5.5, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 7.25, + 6.25, + 7.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 3.75, + 10.75 + ], + "to": [ + 8.75, + 4.5, + 25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.625, + 15.25 + ] + }, + "faces": { + "north": { + "uv": [ + 7.25, + 0.75, + 7.75, + 1 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 1.5, + 7.25, + 1.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1.25, + 7.25, + 1.75, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 1.75, + 7.25, + 2 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 5, + 1, + 1.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 1.5, + 1.5, + 5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 3.5, + 9.75 + ], + "to": [ + 8.75, + 3.75, + 12.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 4.125, + 15.25 + ] + }, + "faces": { + "north": { + "uv": [ + 7.25, + 0.75, + 7.75, + 1 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 1.5, + 7.25, + 1.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1.25, + 7.25, + 1.75, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 1.75, + 7.25, + 2 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 5, + 1, + 1.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 1.5, + 1.5, + 5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7, + 3.1, + 3.75 + ], + "to": [ + 7.5, + 3.6, + 10.75 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 7.5, + 3.6, + 3.375 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 7.25, + 7.25, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 4.5, + 7.25, + 4.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 7.25, + 7.5, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 4.75, + 7.25, + 5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 7.25, + 4.75, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 5, + 6, + 6.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.9, + 3, + 2.75 + ], + "to": [ + 7.6, + 3.7, + 3.75 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 7.5, + 3.6, + 3.375 + ] + }, + "faces": { + "north": { + "uv": [ + 1.25, + 7.5, + 1.5, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 1.25, + 7.75, + 1.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 7.5, + 1.75, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.75, + 7.5, + 2, + 7.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.75, + 7.75, + 2.5, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 2.5, + 7.5, + 2.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.4, + 3, + 2.75 + ], + "to": [ + 9.1, + 3.7, + 3.75 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 8.5, + 3.6, + 3.375 + ] + }, + "faces": { + "north": { + "uv": [ + 2.75, + 7.5, + 3, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 2.75, + 7.75, + 3 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 3, + 7.75, + 3.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 3.25, + 7.75, + 3.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 3.75, + 7.5, + 3.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 7.5, + 3.75, + 7.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.5, + 3.1, + 3.75 + ], + "to": [ + 9, + 3.6, + 10.75 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 8.5, + 3.6, + 3.375 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 3.75, + 7.75, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 2.5, + 7.5, + 2.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 4, + 7.75, + 4.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 2.75, + 7.5, + 3 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 7.25, + 5.25, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 6, + 5.5, + 7.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 6.2, + 9.6 + ], + "to": [ + 8.75, + 6.9, + 15.85 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 0, + 0, + 4 + ] + }, + "faces": { + "north": { + "uv": [ + 7.25, + 1.5, + 7.75, + 1.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.75, + 2, + 7.75, + 2.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.25, + 1.75, + 7.75, + 2 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.75, + 2.25, + 7.75, + 2.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 3.5, + 3.25, + 1.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 3.5, + 3.25, + 5.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.75, + 6.9, + 12 + ], + "to": [ + 8.25, + 7.15, + 15.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 0, + 0, + 4 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 4.25, + 7.75, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 3.25, + 7.25, + 3.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 7.5, + 4.75, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.75, + 0, + 7.75, + 0.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 1.25, + 6.75, + 0.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 6.75, + 2.25, + 7.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 7.15, + 12 + ], + "to": [ + 8.5, + 8.15, + 15.75 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 0, + 0, + 4 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 6.75, + 4.5, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 5.5, + 3, + 6 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.75, + 4, + 7.25, + 4.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 5.5, + 5, + 6 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 6.5, + 3.25, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 2.5, + 5.75, + 3.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.75, + 6, + 11 + ], + "to": [ + 7, + 9.5, + 11.75 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 0, + 0, + 4 + ] + }, + "faces": { + "north": { + "uv": [ + 3, + 7.25, + 3.25, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 3, + 7.5, + 3.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 7.25, + 3.5, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 7.25, + 3.75, + 7.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 4.75, + 7.5, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 7.5, + 4.75, + 7.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.75, + 9.5, + 11 + ], + "to": [ + 9.3, + 9.75, + 11.75 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 0, + 0, + 4 + ] + }, + "faces": { + "north": { + "uv": [ + 1, + 7, + 1.75, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 4.75, + 7.75, + 5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 1, + 7.75, + 1.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 7.5, + 5.25, + 7.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 7.25, + 3, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 5.75, + 7, + 6 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 9.05, + 6, + 11 + ], + "to": [ + 9.3, + 9.5, + 11.75 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 0, + 0, + 4 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 7.25, + 4.25, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 4, + 7.5, + 4.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.25, + 7.25, + 4.5, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.25, + 4.5, + 7.5, + 5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 5.25, + 7.5, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 7.5, + 5.25, + 7.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 4.75, + -14 + ], + "to": [ + 8.5, + 5.75, + 8.75 + ], + "faces": { + "north": { + "uv": [ + 7.5, + 5.25, + 7.75, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 4, + 6.75, + 4.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 7.5, + 5.75, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 4.25, + 6.75, + 4.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 7, + 3, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 4.5, + 3.75, + 7.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7, + 4.75, + -16 + ], + "to": [ + 9, + 5.75, + -14 + ], + "faces": { + "north": { + "uv": [ + 7, + 6, + 7.75, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 6.25, + 7.75, + 6.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 6.5, + 7.75, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 6.75, + 7.75, + 7 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 5.25, + 5.25, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 5.25, + 5.25, + 6 + ], + "texture": "#0" + } + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [ + -0.75, + 3.75, + -8.5 + ], + "scale": [ + 0.8, + 0.8, + 0.8 + ] + }, + "thirdperson_lefthand": { + "scale": [ + 0, + 0, + 0 + ] + }, + "ground": { + "translation": [ + 0, + 5.25, + 0 + ] + }, + "gui": { + "rotation": [ + 30, + -145, + 0 + ], + "translation": [ + 0.25, + 2.75, + 0 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + }, + "head": { + "translation": [ + 0, + 11.75, + -4.25 + ] + }, + "fixed": { + "rotation": [ + 0, + -91, + 0 + ], + "translation": [ + 3.5, + 5.25, + -1.5 + ], + "scale": [ + 2, + 2, + 2 + ] + } + }, + "groups": [ + { + "name": "group", + "origin": [ + 0, + 0, + 0 + ], + "color": 0, + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18 + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/ntw_20_base.json b/src/main/resources/assets/superbwarfare/models/item/ntw_20_base.json new file mode 100644 index 000000000..114f460a8 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/ntw_20_base.json @@ -0,0 +1,6 @@ +{ + "parent": "superbwarfare:displaysettings/ntw20.item", + "textures": { + "layer0": "superbwarfare:item/ntw_20" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/ntw_20_icon.json b/src/main/resources/assets/superbwarfare/models/item/ntw_20_icon.json new file mode 100644 index 000000000..c10a4308f --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/ntw_20_icon.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/ntw_20_icon" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/poisonous_bullet.json b/src/main/resources/assets/superbwarfare/models/item/poisonous_bullet.json new file mode 100644 index 000000000..090e67af0 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/poisonous_bullet.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/perk/poisonous_bullet" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/potion_mortar_shell.json b/src/main/resources/assets/superbwarfare/models/item/potion_mortar_shell.json new file mode 100644 index 000000000..25076045e --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/potion_mortar_shell.json @@ -0,0 +1,7 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/potion_mortar_shell_base", + "layer1": "superbwarfare:item/potion_mortar_shell_overlay" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/powerful_attraction.json b/src/main/resources/assets/superbwarfare/models/item/powerful_attraction.json new file mode 100644 index 000000000..933edb793 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/powerful_attraction.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/perk/powerful_attraction" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/qbz95_3d.json b/src/main/resources/assets/superbwarfare/models/item/qbz95_3d.json new file mode 100644 index 000000000..1fd3fa784 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/qbz95_3d.json @@ -0,0 +1,1404 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 32, + 32 + ], + "textures": { + "0": "superbwarfare:item/qbz95_3d", + "particle": "superbwarfare:item/qbz95_3d" + }, + "elements": [ + { + "from": [ + 6.25, + 1, + 2 + ], + "to": [ + 7.75, + 2.9, + 18.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 6, + 2, + 3 + ] + }, + "faces": { + "north": { + "uv": [ + 6.5, + 7, + 7.5, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 8.5, + 1 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 7.5, + 4, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 1, + 8.5, + 2 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 10.5, + 0, + 2 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 2, + 1, + 10.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.5, + 4.25, + 7 + ], + "to": [ + 7.5, + 4.65, + 12.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7, + 4.45, + 10.125 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 5, + 10, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 6.5, + 5, + 7 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 9.5, + 9, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 6.5, + 8, + 7 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 10, + 2, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 7, + 2.5, + 10 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.5, + 2.76134, + 13.06111 + ], + "to": [ + 7.5, + 4.81134, + 13.46111 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 7, + 1.68634, + 13.26111 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 6, + 8.5, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 3, + 9, + 4 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 8.5, + 4, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 8.5, + 4.5, + 9.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 10, + 9, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 9, + 9.5, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.5, + 2.44163, + 7.39616 + ], + "to": [ + 7.5, + 4.49163, + 7.79616 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 7, + 5.56663, + 7.59616 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 4, + 9, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 8.5, + 5, + 9.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 8.5, + 5.5, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 5, + 9, + 6 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 10, + 9.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 0, + 10, + 0.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.75, + 2.9, + 2 + ], + "to": [ + 7.25, + 3.9, + 3 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 6, + 2, + 2 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 0.5, + 10.5, + 1 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 1, + 10.5, + 1.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 10, + 2.5, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 2, + 10.5, + 2.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 10.5, + 2.5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 2.5, + 10, + 3 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.25, + -0.5, + 18.5 + ], + "to": [ + 7.75, + 3, + 20 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 6, + 2, + 3 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 2, + 5, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 4, + 5, + 6 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 2, + 6, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 4, + 6, + 6 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 4, + 7.5, + 3 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 7.5, + 4, + 8.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.25, + 1, + 10.05 + ], + "to": [ + 7.75, + 1.9, + 11.05 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 6, + 2, + 8.75 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 6, + 8, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 10, + 3.5, + 10.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 1.5, + 9.5, + 2 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 3, + 10.5, + 3.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 6.5, + 8.5, + 6 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 6.5, + 8.5, + 7 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.25, + 1.31418, + 7.47054 + ], + "to": [ + 7.75, + 2.21418, + 8.77054 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 6, + 2.31418, + 6.47054 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 7, + 9.5, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 10, + 4, + 10.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 7.5, + 9.5, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 3.5, + 10.5, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 8.5, + 8.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 8.5, + 8.5, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.25, + 0.51012, + 8.21278 + ], + "to": [ + 7.75, + 1.41012, + 9.91278 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6, + 1.51012, + 7.61278 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 0, + 10, + 0.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 0.5, + 10, + 1 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 1, + 10, + 1.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 3, + 10, + 3.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 5, + 7.5, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 7.5, + 5, + 8.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.75, + -0.38988, + 8.91278 + ], + "to": [ + 7.25, + -0.28988, + 11.11278 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6, + 0.11012, + 8.81278 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 10, + 4.5, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 3.5, + 10, + 4 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 4, + 10.5, + 4.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 4, + 10, + 4.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 9.5, + 5.5, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 4.5, + 9, + 5.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.75, + -0.28988, + 8.91278 + ], + "to": [ + 7.25, + 0.61012, + 9.01278 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6, + -0.38988, + 8.51278 + ] + }, + "faces": { + "north": { + "uv": [ + 4.5, + 10, + 5, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 10, + 5.5, + 10.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 5, + 10.5, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 5.5, + 10.5, + 6 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 10.5, + 6, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 6, + 10, + 6.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.25, + 0.19595, + 10.49224 + ], + "to": [ + 7.75, + 1.09595, + 18.49224 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6, + 1.19595, + 10.49224 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 5.5, + 10, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 6, + 6, + 6.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 9, + 9.5, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 2, + 10, + 2.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 6, + 2, + 2 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 2, + 3, + 6 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.25, + -0.30405, + 17.09224 + ], + "to": [ + 7.75, + 0.19595, + 18.49224 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6, + 1.19595, + 10.49224 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 1.5, + 10.5, + 2 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 10, + 7, + 10.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 9.5, + 4.5, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 6.5, + 10.5, + 7 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 10, + 4.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 4.5, + 9.5, + 5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.6, + -1.30405, + 14.49224 + ], + "to": [ + 7.4, + 0.19595, + 16.74224 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 6, + 1.19595, + 10.49224 + ] + }, + "faces": { + "north": { + "uv": [ + 5.5, + 9.5, + 6, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 5, + 8.5, + 6 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 6, + 10, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 7, + 8.5, + 8 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 8, + 9.5, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 9.5, + 7.5, + 10.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.6, + -2.4884, + 15.35068 + ], + "to": [ + 7.4, + 1.0116, + 17.60068 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 6, + 2.0116, + 11.35068 + ] + }, + "faces": { + "north": { + "uv": [ + 6.5, + 8, + 7, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 2.5, + 7, + 4.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 8, + 7.5, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 4.5, + 7, + 6.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 10.5, + 8, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 8, + 9.5, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.45, + -2.78778, + 11.03665 + ], + "to": [ + 7.55, + 0.11222, + 12.33665 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 6.25, + -0.71166, + 10.65397 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 8, + 8, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 8, + 8.5, + 9.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 0, + 9, + 1.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 8.5, + 3.5, + 10 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 10.5, + 7, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 7, + 10, + 7.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.5, + 1.25, + -4 + ], + "to": [ + 7.5, + 2.25, + 2 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7, + 1.75, + 0.5 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 7.5, + 10.5, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 2.5, + 10, + 3 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 8, + 10.5, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 7, + 6, + 7.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 6, + 7, + 3 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 7, + 6, + 10 + ], + "texture": "#0" + } + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [ + -0.5, + 6.25, + -1.75 + ], + "scale": [ + 0.8, + 0.8, + 0.8 + ] + }, + "thirdperson_lefthand": { + "translation": [ + -0.5, + 6.25, + -1.75 + ], + "scale": [ + 0.8, + 0.8, + 0.8 + ] + }, + "ground": { + "translation": [ + 0, + 8.75, + 0 + ] + }, + "head": { + "translation": [ + 0, + 13.5, + -0.5 + ] + }, + "fixed": { + "rotation": [ + 90, + 45, + -90 + ], + "translation": [ + 4.25, + 5.25, + -1.25 + ] + } + }, + "groups": [ + { + "name": "group", + "origin": [ + 7, + 1.75, + -2.5 + ], + "color": 0, + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16 + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/qbz_95.json b/src/main/resources/assets/superbwarfare/models/item/qbz_95.json new file mode 100644 index 000000000..1fd780d9b --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/qbz_95.json @@ -0,0 +1,27 @@ +{ + "loader": "forge:separate_transforms", + "gui_light": "front", + "base": { + "parent": "superbwarfare:item/qbz_95_base" + }, + "perspectives": { + "gui": { + "parent": "superbwarfare:item/qbz_95_icon" + }, + "thirdperson_righthand": { + "parent": "superbwarfare:item/qbz95_3d" + }, + "thirdperson_lefthand": { + "parent": "superbwarfare:item/qbz95_3d" + }, + "ground": { + "parent": "superbwarfare:item/qbz95_3d" + }, + "fixed": { + "parent": "superbwarfare:item/qbz95_3d" + }, + "head": { + "parent": "superbwarfare:item/qbz95_3d" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/qbz_95_base.json b/src/main/resources/assets/superbwarfare/models/item/qbz_95_base.json new file mode 100644 index 000000000..dac8f106e --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/qbz_95_base.json @@ -0,0 +1,6 @@ +{ + "parent": "superbwarfare:displaysettings/qbz95.item", + "textures": { + "layer0": "superbwarfare:item/qbz95" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/qbz_95_icon.json b/src/main/resources/assets/superbwarfare/models/item/qbz_95_icon.json new file mode 100644 index 000000000..e42b16bc7 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/qbz_95_icon.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/qbz95_icon" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/regeneration.json b/src/main/resources/assets/superbwarfare/models/item/regeneration.json new file mode 100644 index 000000000..99933d5b3 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/regeneration.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/perk/regeneration" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/rgo_grenade.json b/src/main/resources/assets/superbwarfare/models/item/rgo_grenade.json new file mode 100644 index 000000000..d21b3722d --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/rgo_grenade.json @@ -0,0 +1,3127 @@ +{ + "credit": "Made with Blockbench", + "textures": { + "0": "superbwarfare:item/rgo_grenade", + "particle": "superbwarfare:item/rgo_grenade" + }, + "elements": [ + { + "name": "bone177", + "from": [ + 7.4625, + 6.70236, + 7.4625 + ], + "to": [ + 8.5375, + 7.29764, + 8.5375 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 8, + 8, + 8 + ] + }, + "faces": { + "east": { + "uv": [ + 10, + 9, + 11, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 10, + 11, + 10.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 2, + 8, + 1 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 8, + 2, + 9 + ], + "texture": "#0" + } + } + }, + { + "name": "bone179", + "from": [ + 7.4625, + 7.4625, + 6.70236 + ], + "to": [ + 8.5375, + 8.5375, + 7.29764 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 8, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 2, + 9, + 3 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 11, + 0.5, + 12 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 8, + 4, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 0, + 11.5, + 1 + ], + "texture": "#0" + } + } + }, + { + "name": "bone177", + "from": [ + 7.4625, + 6.70236, + 7.4625 + ], + "to": [ + 8.5375, + 7.29764, + 8.5375 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 8, + 8 + ] + }, + "faces": { + "up": { + "uv": [ + 9, + 4, + 8, + 3 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 4, + 8, + 5 + ], + "texture": "#0" + } + } + }, + { + "name": "bone178", + "from": [ + 7.4625, + 6.70236, + 7.4625 + ], + "to": [ + 8.5375, + 7.29764, + 8.5375 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 1, + 11, + 2, + 11.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 1, + 12, + 1.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 9, + 5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 5, + 8, + 6 + ], + "texture": "#0" + } + } + }, + { + "name": "bone180", + "from": [ + 8.70236, + 7.4625, + 7.4625 + ], + "to": [ + 9.29764, + 8.5375, + 8.5375 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 2, + 11, + 2.5, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 8, + 7, + 9 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 2, + 11.5, + 3 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 6, + 9, + 7 + ], + "texture": "#0" + } + } + }, + { + "name": "bone177", + "from": [ + 7.4625, + 8.95236, + 7.4625 + ], + "to": [ + 8.5375, + 9.54764, + 8.5375 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 8.25, + 8 + ] + }, + "faces": { + "up": { + "uv": [ + 8, + 9, + 7, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9, + 7, + 8, + 8 + ], + "texture": "#0" + } + } + }, + { + "name": "bone178", + "from": [ + 7.4625, + 8.95236, + 7.4625 + ], + "to": [ + 8.5375, + 9.54764, + 8.5375 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 8, + 8.25, + 8 + ] + }, + "faces": { + "east": { + "uv": [ + 3, + 11, + 4, + 11.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 3, + 12, + 3.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 9, + 8, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 0, + 9, + 1 + ], + "texture": "#0" + } + } + }, + { + "name": "bone180", + "from": [ + 7.4625, + 7.7125, + 6.70236 + ], + "to": [ + 8.5375, + 8.7875, + 7.29764 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 8, + 8.25, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 1, + 9, + 2, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 11, + 4.5, + 12 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 1, + 10, + 2 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 4, + 11.5, + 5 + ], + "texture": "#0" + } + } + }, + { + "name": "bone178", + "from": [ + 7.4625, + 8.95236, + 7.4625 + ], + "to": [ + 8.5375, + 9.54764, + 8.5375 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 8.25, + 8 + ] + }, + "faces": { + "up": { + "uv": [ + 3, + 10, + 2, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 2, + 9, + 3 + ], + "texture": "#0" + } + } + }, + { + "name": "bone179", + "from": [ + 7.4625, + 8.95236, + 7.4625 + ], + "to": [ + 8.5375, + 9.54764, + 8.5375 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 8, + 8.25, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 11, + 6, + 11.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 5, + 12, + 5.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 10, + 3, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 3, + 9, + 4 + ], + "texture": "#0" + } + } + }, + { + "name": "bone181", + "from": [ + 8.70236, + 7.7125, + 7.4625 + ], + "to": [ + 9.29764, + 8.7875, + 8.5375 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 8, + 8.25, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 6, + 11, + 6.5, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 9, + 5, + 10 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 6, + 11.5, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 4, + 10, + 5 + ], + "texture": "#0" + } + } + }, + { + "name": "bone178", + "from": [ + 7.613, + 10.8282, + 7.613 + ], + "to": [ + 8.387, + 11.2568, + 8.387 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 10.3225, + 8 + ] + }, + "faces": { + "up": { + "uv": [ + 10.75, + 0.75, + 10, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 1, + 10, + 1.75 + ], + "texture": "#0" + } + } + }, + { + "name": "bone177", + "from": [ + 6.70236, + 7.4625, + 7.4625 + ], + "to": [ + 9.29764, + 8.7875, + 8.5375 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8, + 8, + 8 + ] + }, + "faces": { + "east": { + "uv": [ + 4, + 5, + 5, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 4, + 6, + 5.25 + ], + "texture": "#0" + } + } + }, + { + "name": "bone178", + "from": [ + 6.70236, + 7.4625, + 7.4625 + ], + "to": [ + 9.29764, + 8.7875, + 8.5375 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 8, + 8, + 8 + ] + }, + "faces": { + "east": { + "uv": [ + 0, + 6, + 1, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 6, + 2, + 7.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 1, + 0, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 1, + 0, + 2 + ], + "texture": "#0" + } + } + }, + { + "name": "bone179", + "from": [ + 7.4625, + 7.4625, + 6.70236 + ], + "to": [ + 8.5375, + 8.7875, + 9.29764 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 2, + 6, + 3, + 7.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 2, + 7, + 3.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 2, + 0, + 4.5 + ], + "texture": "#0" + } + } + }, + { + "name": "bone180", + "from": [ + 7.4625, + 7.4625, + 6.70236 + ], + "to": [ + 8.5375, + 8.7875, + 9.29764 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 8, + 8, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 3, + 6, + 4, + 7.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 4, + 7, + 5.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 4.5, + 1, + 2 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 2, + 2, + 4.5 + ], + "texture": "#0" + } + } + }, + { + "name": "bone181", + "from": [ + 7.663, + 10.6555, + 8.3657 + ], + "to": [ + 8.337, + 11.7595, + 8.9343 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8, + 11.1425, + 8 + ] + }, + "faces": { + "east": { + "uv": [ + 7, + 11, + 7.5, + 12 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 7, + 11.5, + 8 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 11.5, + 10, + 11 + ], + "texture": "#0" + } + } + }, + { + "name": "bone182", + "from": [ + 7.663, + 10.34492, + 8.67293 + ], + "to": [ + 8.337, + 11.44892, + 9.24154 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 10.83192, + 8.30724 + ] + }, + "faces": { + "east": { + "uv": [ + 8, + 11, + 8.5, + 12 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 6, + 9.75, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 8, + 11.5, + 9 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 11.75, + 10.5, + 11, + 10 + ], + "texture": "#0" + } + } + }, + { + "name": "bone183", + "from": [ + 7.638, + 10.68257, + 9.56718 + ], + "to": [ + 8.362, + 10.78257, + 9.66718 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 8, + 10.23057, + 9.38288 + ] + }, + "faces": { + "north": { + "uv": [ + 13, + 2, + 13.75, + 2.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 14, + 12, + 14.25, + 12.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 13, + 3.75, + 13.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 14, + 13.25, + 14.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 13.75, + 3.25, + 13, + 3 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 13, + 4, + 13.25 + ], + "texture": "#0" + } + } + }, + { + "name": "bone184", + "from": [ + 8.362, + 10.60199, + 8.98324 + ], + "to": [ + 8.412, + 11.57599, + 9.03324 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8.387, + 11.08899, + 9.00824 + ] + }, + "faces": { + "north": { + "uv": [ + 12, + 9, + 12.25, + 10 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 12, + 10.25, + 13 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 10, + 12.25, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 12, + 11.25, + 13 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 14.25, + 13.25, + 14, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 14.25, + 14, + 14, + 14.25 + ], + "texture": "#0" + } + } + }, + { + "name": "bone185", + "from": [ + 7.60831, + 11.05199, + 8.98324 + ], + "to": [ + 8.362, + 11.10199, + 9.03324 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 7.975, + 11.07699, + 9.00824 + ] + }, + "faces": { + "north": { + "uv": [ + 13, + 4, + 13.75, + 4.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 15, + 0.25, + 15.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 13, + 5.75, + 13.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15, + 0, + 15.25, + 0.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 13.75, + 5.25, + 13, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.75, + 13, + 6, + 13.25 + ], + "texture": "#0" + } + } + }, + { + "name": "bone186", + "from": [ + 7.493, + 11.02824, + 8.95949 + ], + "to": [ + 7.6205, + 11.12574, + 9.05699 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 7.83955, + 11.07699, + 9.00824 + ] + }, + "faces": { + "north": { + "uv": [ + 1, + 15, + 1.25, + 15.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 15, + 1, + 15.25, + 1.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 15, + 2.25, + 15.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15, + 2, + 15.25, + 2.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.25, + 15.25, + 3, + 15 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.25, + 3, + 15, + 3.25 + ], + "texture": "#0" + } + } + }, + { + "name": "bone186", + "from": [ + 7.52706, + 11.05199, + 8.68324 + ], + "to": [ + 7.57706, + 11.10199, + 9.33324 + ], + "rotation": { + "angle": -22.5, + "axis": "z", + "origin": [ + 7.55206, + 11.07699, + 9.00824 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 15, + 4.25, + 15.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13, + 6, + 13.75, + 6.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 15, + 4, + 15.25, + 4.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 7, + 13.75, + 7.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 13.25, + 8.75, + 13, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.25, + 9, + 13, + 9.75 + ], + "texture": "#0" + } + } + }, + { + "name": "bone187", + "from": [ + 7.29745, + 10.49766, + 8.68324 + ], + "to": [ + 7.34745, + 10.54766, + 9.33324 + ], + "rotation": { + "angle": -22.5, + "axis": "z", + "origin": [ + 7.32245, + 10.52266, + 9.00824 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 15, + 5.25, + 15.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 13, + 10.75, + 13.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 15, + 5, + 15.25, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 13, + 10, + 13.75, + 10.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 11.25, + 13.75, + 11, + 13 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.25, + 11, + 13, + 11.75 + ], + "texture": "#0" + } + } + }, + { + "name": "bone187", + "from": [ + 7.39312, + 10.52863, + 9.28324 + ], + "to": [ + 7.44312, + 11.07863, + 9.33324 + ], + "rotation": { + "angle": -22.5, + "axis": "z", + "origin": [ + 7.41812, + 10.75363, + 9.30824 + ] + }, + "faces": { + "north": { + "uv": [ + 14, + 3, + 14.25, + 3.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 14, + 4.25, + 14.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 4, + 14.25, + 4.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 14, + 5.25, + 14.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 15.25, + 6, + 15 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.25, + 6, + 15, + 6.25 + ], + "texture": "#0" + } + } + }, + { + "name": "bone188", + "from": [ + 7.39312, + 10.52863, + 8.68324 + ], + "to": [ + 7.44312, + 11.07863, + 8.73324 + ], + "rotation": { + "angle": -22.5, + "axis": "z", + "origin": [ + 7.41812, + 10.75363, + 8.70824 + ] + }, + "faces": { + "north": { + "uv": [ + 14, + 5, + 14.25, + 5.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 14, + 6.25, + 14.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 14, + 6, + 14.25, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 14, + 7.25, + 14.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 15.25, + 7, + 15 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 15.25, + 7, + 15, + 7.25 + ], + "texture": "#0" + } + } + }, + { + "name": "bone183", + "from": [ + 7.763, + 10.14492, + 9.24154 + ], + "to": [ + 8.237, + 11.24892, + 9.29154 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 10.83192, + 8.30724 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 11, + 9.5, + 12 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 12, + 11, + 12.25, + 12 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 9, + 11.5, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 12, + 12.25, + 13 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 14.5, + 7.25, + 14, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 14, + 8, + 14.25 + ], + "texture": "#0" + } + } + }, + { + "name": "bone184", + "from": [ + 7.763, + 8.94771, + 9.69848 + ], + "to": [ + 8.237, + 9.05171, + 9.74848 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 8.53471, + 8.76418 + ] + }, + "faces": { + "north": { + "uv": [ + 14, + 8, + 14.5, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 15, + 8.25, + 15.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 14, + 9.5, + 14.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15, + 8, + 15.25, + 8.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 14.5, + 9.25, + 14, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 14, + 10, + 14.25 + ], + "texture": "#0" + } + } + }, + { + "name": "bone184", + "from": [ + 7.763, + 9.3699, + 9.42951 + ], + "to": [ + 8.237, + 10.5739, + 9.47951 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 10.0569, + 8.49521 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 9, + 7.5, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 12, + 7.25, + 13.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 7, + 9.5, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 7, + 12.25, + 8.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 14.5, + 10.25, + 14, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.5, + 14, + 11, + 14.25 + ], + "texture": "#0" + } + } + }, + { + "name": "bone185", + "from": [ + 7.763, + 7.98895, + 9.46551 + ], + "to": [ + 8.237, + 9.29295, + 9.51551 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 8.77595, + 8.53121 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 9, + 8.5, + 10.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 12, + 8.25, + 13.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 9, + 9.5, + 10.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 12, + 9.25, + 13.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 14.5, + 11.25, + 14, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 12.5, + 14, + 12, + 14.25 + ], + "texture": "#0" + } + } + }, + { + "name": "bone183", + "from": [ + 7.663, + 9.93554, + 8.88818 + ], + "to": [ + 8.337, + 10.73954, + 9.35678 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 10.12254, + 8.42248 + ] + }, + "faces": { + "east": { + "uv": [ + 11, + 11, + 11.5, + 11.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 10, + 2.75, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 12, + 0.5, + 12.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 12.75, + 0.5, + 12, + 0 + ], + "texture": "#0" + } + } + }, + { + "name": "bone184", + "from": [ + 7.413, + 9.43554, + 8.68818 + ], + "to": [ + 8.587, + 9.93554, + 9.35678 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 10.12254, + 8.42248 + ] + }, + "faces": { + "east": { + "uv": [ + 1, + 12, + 1.75, + 12.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 10, + 1.25, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 1, + 12.75, + 1.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 9.75, + 5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.25, + 5, + 9, + 5.75 + ], + "texture": "#0" + } + } + }, + { + "name": "bone185", + "from": [ + 7.513, + 9.53554, + 9.35678 + ], + "to": [ + 8.487, + 9.83554, + 9.3685 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 10.12254, + 8.42248 + ] + }, + "faces": { + "east": { + "uv": [ + 9, + 15, + 9.25, + 15.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 13, + 1, + 13.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15, + 9, + 15.25, + 9.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 14, + 0.25, + 13, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 13, + 1, + 13.25 + ], + "texture": "#0" + } + } + }, + { + "name": "bone182", + "from": [ + 7.663, + 11.11964, + 7.93405 + ], + "to": [ + 8.337, + 11.67364, + 8.55265 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 11.24664, + 8.24335 + ] + }, + "faces": { + "north": { + "uv": [ + 2, + 12, + 2.75, + 12.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 13, + 1, + 13.5, + 1.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 13, + 2.5, + 13.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 12.75, + 2.5, + 12, + 2 + ], + "texture": "#0" + } + } + }, + { + "name": "bone183", + "from": [ + 7.663, + 11.06431, + 7.64332 + ], + "to": [ + 8.337, + 11.38291, + 7.89732 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 11.07361, + 8.07032 + ] + }, + "faces": { + "north": { + "uv": [ + 12, + 13, + 12.75, + 13.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 15, + 10.25, + 15.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 15, + 10, + 15.25, + 10.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 13.75, + 12, + 13, + 12.25 + ], + "texture": "#0" + } + } + }, + { + "name": "bone178", + "from": [ + 7.0657, + 9.1555, + 7.613 + ], + "to": [ + 8.9343, + 10.7095, + 8.387 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8, + 10.1425, + 8 + ] + }, + "faces": { + "east": { + "uv": [ + 5, + 6, + 5.75, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 6, + 6.75, + 7.5 + ], + "texture": "#0" + } + } + }, + { + "name": "bone179", + "from": [ + 7.0657, + 9.1555, + 7.613 + ], + "to": [ + 8.9343, + 10.7095, + 8.387 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 8, + 10.1425, + 8 + ] + }, + "faces": { + "east": { + "uv": [ + 7, + 0, + 7.75, + 1.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 2, + 7.75, + 3.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 5.75, + 2, + 5 + ], + "texture": "#0" + } + } + }, + { + "name": "bone180", + "from": [ + 7.613, + 9.1555, + 7.0657 + ], + "to": [ + 8.387, + 10.7095, + 8.9343 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8, + 10.1425, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 7, + 4.75, + 8.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 4, + 7.75, + 5.5 + ], + "texture": "#0" + } + } + }, + { + "name": "bone181", + "from": [ + 7.613, + 9.1555, + 7.0657 + ], + "to": [ + 8.387, + 10.7095, + 8.9343 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 8, + 10.1425, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 6, + 7.75, + 7.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 8, + 0.75, + 9.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 3.75, + 5, + 2 + ], + "texture": "#0" + } + } + }, + { + "name": "bone181", + "from": [ + 7.57817, + 9.15307, + 6.98161 + ], + "to": [ + 8.42183, + 9.41193, + 9.01839 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 10.2289, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 13, + 13, + 13.75, + 13.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 14, + 0.75, + 14.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.75, + 2, + 3, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 2, + 3, + 4 + ], + "texture": "#0" + } + } + }, + { + "name": "bone182", + "from": [ + 7.57817, + 9.15307, + 6.98161 + ], + "to": [ + 8.42183, + 9.41193, + 9.01839 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 8, + 10.2289, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 14, + 0, + 14.75, + 0.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 14, + 1.75, + 14.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.75, + 2, + 4, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 2, + 4, + 4 + ], + "texture": "#0" + } + } + }, + { + "name": "bone183", + "from": [ + 6.98161, + 9.15307, + 7.57817 + ], + "to": [ + 9.01839, + 9.41193, + 8.42183 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 10.2289, + 8 + ] + }, + "faces": { + "east": { + "uv": [ + 14, + 1, + 14.75, + 1.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 14, + 2.75, + 14.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 4.75, + 3, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 5, + 0, + 5.75 + ], + "texture": "#0" + } + } + }, + { + "name": "bone184", + "from": [ + 6.98161, + 9.15307, + 7.57817 + ], + "to": [ + 9.01839, + 9.41193, + 8.42183 + ], + "rotation": { + "angle": -45, + "axis": "y", + "origin": [ + 8, + 10.2289, + 8 + ] + }, + "faces": { + "east": { + "uv": [ + 14, + 2, + 14.75, + 2.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 14, + 3.75, + 14.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 0.75, + 5, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 1, + 5, + 1.75 + ], + "texture": "#0" + } + } + }, + { + "name": "bone182", + "from": [ + 8.5057, + 9.9355, + 7.613 + ], + "to": [ + 8.9343, + 10.7095, + 8.387 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 8, + 10.3225, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 3, + 12, + 3.5, + 12.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 2, + 10.75, + 2.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 3, + 12.5, + 3.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 10, + 3.75, + 10.75 + ], + "texture": "#0" + } + } + }, + { + "name": "bone180", + "from": [ + 7.613, + 10.8282, + 7.613 + ], + "to": [ + 8.387, + 11.2568, + 8.387 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 8, + 10.3225, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 12, + 4.75, + 12.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 12, + 4, + 12.75, + 4.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 4.75, + 10, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.75, + 10, + 5, + 10.75 + ], + "texture": "#0" + } + } + }, + { + "name": "bone181", + "from": [ + 7.613, + 9.9355, + 7.0657 + ], + "to": [ + 8.387, + 10.7095, + 7.4943 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 8, + 10.3225, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 6, + 10, + 6.75, + 10.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 12, + 5.5, + 12.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 6, + 10.75, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 5, + 12.5, + 5.75 + ], + "texture": "#0" + } + } + }, + { + "name": "bone179", + "from": [ + 7.613, + 10.8282, + 7.613 + ], + "to": [ + 8.387, + 11.2568, + 8.387 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 8, + 10.3225, + 8 + ] + }, + "faces": { + "east": { + "uv": [ + 6, + 12, + 6.75, + 12.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 12, + 6, + 12.75, + 6.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 7.75, + 10, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.75, + 8, + 10, + 8.75 + ], + "texture": "#0" + } + } + } + ], + "display": { + "firstperson_righthand": { + "rotation": [ + -3, + -19, + -7.25 + ], + "translation": [ + 5.5, + -0.75, + -3.5 + ], + "scale": [ + 2, + 2, + 2 + ] + }, + "firstperson_lefthand": { + "rotation": [ + -3, + -19, + -7.25 + ], + "translation": [ + 5.5, + -0.75, + -3.5 + ], + "scale": [ + 2, + 2, + 2 + ] + }, + "ground": { + "translation": [ + 0, + -2, + 0 + ] + }, + "gui": { + "rotation": [ + -140.06, + -16.8, + -135.22 + ], + "translation": [ + -2, + -2.75, + 0 + ], + "scale": [ + 2.8, + 2.8, + 2.8 + ] + }, + "head": { + "translation": [ + 0, + -1.75, + -6.75 + ], + "scale": [ + 1.5, + 1.5, + 1.5 + ] + }, + "fixed": { + "rotation": [ + 90, + -45, + 90 + ], + "translation": [ + 0.75, + -0.5, + 0 + ], + "scale": [ + 2, + 2, + 2 + ] + } + }, + "groups": [ + { + "name": "group", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "children": [ + { + "name": "bone175", + "origin": [ + 8, + 7.99219, + -17.72809 + ], + "color": 2, + "children": [ + 0, + 1, + 2, + 3, + 4 + ] + }, + { + "name": "bone175", + "origin": [ + 8, + 7.99219, + -17.72809 + ], + "color": 2, + "children": [ + 5, + 6, + 7, + 8, + 9, + 10, + 11 + ] + }, + { + "name": "bone175", + "origin": [ + 8, + 7.99219, + -17.72809 + ], + "color": 2, + "children": [ + 12, + 13, + 14, + 15 + ] + }, + { + "name": "group", + "origin": [ + 7, + 8.64843, + 8.14623 + ], + "color": 0, + "children": [ + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34 + ] + }, + { + "name": "group", + "origin": [ + 8, + 10.8925, + 8 + ], + "color": 0, + "children": [ + 35, + 36, + 37, + 38 + ] + }, + { + "name": "group", + "origin": [ + 8, + 10.8925, + 8 + ], + "color": 0, + "children": [ + 39, + 40, + 41, + 42 + ] + }, + { + "name": "group", + "origin": [ + 8, + 11.0725, + 8 + ], + "color": 0, + "children": [ + 43, + 44, + 45, + 46 + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/rifle_ammo_box.json b/src/main/resources/assets/superbwarfare/models/item/rifle_ammo_box.json new file mode 100644 index 000000000..88d25326a --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/rifle_ammo_box.json @@ -0,0 +1,7 @@ +{ + "parent": "superbwarfare:custom/rifleammobox", + "textures": { + "0": "superbwarfare:block/rifleammobox", + "particle": "superbwarfare:item/hk4163d" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/rocket.json b/src/main/resources/assets/superbwarfare/models/item/rocket.json new file mode 100644 index 000000000..4a7254436 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/rocket.json @@ -0,0 +1,6 @@ +{ + "parent": "superbwarfare:displaysettings/rpg_head.item", + "textures": { + "layer0": "superbwarfare:item/rpg7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/rpg.json b/src/main/resources/assets/superbwarfare/models/item/rpg.json new file mode 100644 index 000000000..bdef38e45 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/rpg.json @@ -0,0 +1,27 @@ +{ + "loader": "forge:separate_transforms", + "gui_light": "front", + "base": { + "parent": "superbwarfare:item/rpg_base" + }, + "perspectives": { + "gui": { + "parent": "superbwarfare:item/rpg_icon" + }, + "thirdperson_righthand": { + "parent": "superbwarfare:item/rpg3d" + }, + "thirdperson_lefthand": { + "parent": "superbwarfare:item/rpg3d" + }, + "ground": { + "parent": "superbwarfare:item/rpg3d" + }, + "fixed": { + "parent": "superbwarfare:item/rpg3d" + }, + "head": { + "parent": "superbwarfare:item/rpg3d" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/rpg3d.json b/src/main/resources/assets/superbwarfare/models/item/rpg3d.json new file mode 100644 index 000000000..dd2800a2b --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/rpg3d.json @@ -0,0 +1,1004 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 32, + 32 + ], + "textures": { + "2": "superbwarfare:item/rpg3d", + "particle": "superbwarfare:item/rpg3d" + }, + "elements": [ + { + "from": [ + 7, + 1.3, + 9.25 + ], + "to": [ + 9, + 3.3, + 21 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.5625, + 1.425, + 8.125 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 0.5, + 8.5, + 1.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 0, + 6, + 1 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 7, + 7.5, + 8, + 8.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 0, + 1, + 6, + 2 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 1, + 8, + 0, + 2 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 2, + 2, + 1, + 8 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.25, + 1.55, + 21 + ], + "to": [ + 8.75, + 3.05, + 27 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.5625, + 1.425, + 8.125 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 9, + 9.5, + 9.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 6, + 7, + 9, + 7.5 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 9, + 8.5, + 10, + 9 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 7.5, + 0, + 10.5, + 0.5 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 4, + 6, + 3, + 3 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 5, + 3, + 4, + 6 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.5, + 1.8, + 1.75 + ], + "to": [ + 8.5, + 2.8, + 9.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.5625, + 1.425, + 8.125 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 4.5, + 8.5, + 5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 6, + 1.5, + 10, + 2 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 9.5, + 3, + 10, + 3.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 6, + 6.5, + 10, + 7 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 4.5, + 10, + 4, + 6 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 5, + 6, + 4.5, + 10 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 6.75, + 2.3, + 3.25 + ], + "to": [ + 7.5, + 4.8, + 3.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.5625, + 1.425, + 8.125 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 3, + 8.5, + 4.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 5, + 8, + 5.5, + 9.5 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 5.5, + 8, + 6, + 9.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8, + 7.5, + 8.5, + 9 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 10, + 4, + 9.5, + 3.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10, + 4, + 9.5, + 4.5 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 6.75, + 2.3, + 11.75 + ], + "to": [ + 7.5, + 4.8, + 12 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.5625, + 1.425, + 8.125 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 3, + 9, + 4.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 8.5, + 4.5, + 9, + 6 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 7, + 8.5, + 7.5, + 10 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 7.5, + 8.5, + 8, + 10 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 5.5, + 10, + 5, + 9.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 6, + 9.5, + 5.5, + 10 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.5, + 1.8, + -13 + ], + "to": [ + 8.5, + 2.8, + 1.75 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.5625, + 1.425, + 8.125 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 7, + 10, + 7.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 2, + 2, + 9.5, + 2.5 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 9.5, + 7.5, + 10, + 8 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 2, + 2.5, + 9.5, + 3 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 2.5, + 10.5, + 2, + 3 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 3, + 3, + 2.5, + 10.5 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7, + 1.3, + -7.5 + ], + "to": [ + 9, + 3.3, + -2 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.5625, + 1.425, + 8.125 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 8, + 1, + 9 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 5, + 3, + 8, + 4 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 1, + 8, + 2, + 9 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 5, + 4, + 8, + 5 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 6, + 8, + 5, + 5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 4, + 6, + 3, + 9 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.25, + 1.55, + -12.5 + ], + "to": [ + 8.75, + 3.05, + -10 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.5625, + 1.425, + 8.125 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 2, + 10.5, + 2.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 8.5, + 0.5, + 10, + 1 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 9.5, + 2.5, + 10.5, + 3 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8.5, + 1, + 10, + 1.5 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 8.5, + 6.5, + 7.5, + 5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 7, + 7.5, + 6, + 9 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.5, + -1.2, + 11.75 + ], + "to": [ + 8.5, + 1.3, + 12.75 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.5625, + 1.425, + 8.125 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 7.5, + 9, + 9 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 0, + 9, + 0.5, + 10.5 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 0.5, + 9, + 1, + 10.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 1, + 9, + 1.5, + 10.5 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 10, + 8.5, + 9.5, + 8 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 9, + 9.5, + 8.5, + 10 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.5, + -1.95, + 6.25 + ], + "to": [ + 8.5, + 0.55, + 7.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.5625, + 1.425, + 8.125 + ] + }, + "faces": { + "north": { + "uv": [ + 1.5, + 9, + 2, + 10.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 3, + 9, + 3.5, + 10.5 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 9, + 3, + 9.5, + 4.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 3.5, + 9, + 4, + 10.5 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 9.5, + 10, + 9, + 9.5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10, + 9, + 9.5, + 9.5 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 7.5, + 0.55, + 4.75 + ], + "to": [ + 8.5, + 1.8, + 7.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.5625, + 1.425, + 8.125 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 9.5, + 10, + 10 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 8.5, + 6, + 10, + 6.5 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 10, + 0.5, + 10.5, + 1 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 9, + 4.5, + 10.5, + 5 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 6.5, + 10.5, + 6, + 9 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 7, + 9, + 6.5, + 10.5 + ], + "texture": "#2" + } + } + }, + { + "from": [ + 6.5, + 0.8, + 27 + ], + "to": [ + 9.5, + 3.8, + 28 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.5625, + 1.425, + 8.125 + ] + }, + "faces": { + "north": { + "uv": [ + 6, + 0, + 7.5, + 1.5 + ], + "texture": "#2" + }, + "east": { + "uv": [ + 9, + 7, + 9.5, + 8.5 + ], + "texture": "#2" + }, + "south": { + "uv": [ + 6, + 5, + 7.5, + 6.5 + ], + "texture": "#2" + }, + "west": { + "uv": [ + 8, + 9, + 8.5, + 10.5 + ], + "texture": "#2" + }, + "up": { + "uv": [ + 10.5, + 5.5, + 9, + 5 + ], + "texture": "#2" + }, + "down": { + "uv": [ + 10.5, + 5.5, + 9, + 6 + ], + "texture": "#2" + } + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [ + -1.25, + 7.5, + 2.25 + ] + }, + "thirdperson_lefthand": { + "scale": [ + 0, + 0, + 0 + ] + }, + "ground": { + "translation": [ + 0, + 6, + -5 + ] + }, + "head": { + "translation": [ + 0, + 14.75, + -5.25 + ] + }, + "fixed": { + "rotation": [ + 90, + -45, + 90 + ], + "translation": [ + -0.5, + 7.25, + 0 + ] + } + }, + "groups": [ + { + "name": "group", + "origin": [ + 0, + 0, + 0 + ], + "color": 0, + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11 + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/rpg_base.json b/src/main/resources/assets/superbwarfare/models/item/rpg_base.json new file mode 100644 index 000000000..8ad8d689f --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/rpg_base.json @@ -0,0 +1,6 @@ +{ + "parent": "superbwarfare:displaysettings/rpg.item", + "textures": { + "layer0": "superbwarfare:item/rpg7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/rpg_icon.json b/src/main/resources/assets/superbwarfare/models/item/rpg_icon.json new file mode 100644 index 000000000..ec4b92bf8 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/rpg_icon.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/rpgicon" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/rpk.json b/src/main/resources/assets/superbwarfare/models/item/rpk.json new file mode 100644 index 000000000..62d94c574 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/rpk.json @@ -0,0 +1,27 @@ +{ + "loader": "forge:separate_transforms", + "gui_light": "front", + "base": { + "parent": "superbwarfare:item/rpk_base" + }, + "perspectives": { + "gui": { + "parent": "superbwarfare:item/rpk_icon" + }, + "thirdperson_righthand": { + "parent": "superbwarfare:item/rpk3d" + }, + "thirdperson_lefthand": { + "parent": "superbwarfare:item/rpk3d" + }, + "ground": { + "parent": "superbwarfare:item/rpk3d" + }, + "fixed": { + "parent": "superbwarfare:item/rpk3d" + }, + "head": { + "parent": "superbwarfare:item/rpk3d" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/rpk3d.json b/src/main/resources/assets/superbwarfare/models/item/rpk3d.json new file mode 100644 index 000000000..848ad091f --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/rpk3d.json @@ -0,0 +1,2616 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 32, + 32 + ], + "textures": { + "0": "superbwarfare:item/ak473d", + "particle": "superbwarfare:item/ak473d" + }, + "elements": [ + { + "from": [ + 7.7, + 2.74237, + -2.20836 + ], + "to": [ + 8.3, + 3.34237, + -0.70836 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 8, + 3.04237, + -1.83336 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 4.5, + 7.5, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 8.5, + 10, + 9 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 6.5, + 8.5, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 9, + 10, + 9.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 1, + 9.5, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 1, + 9.5, + 2 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 2.25, + 1 + ], + "to": [ + 8.5, + 4.25, + 6.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 7.75 + ] + }, + "faces": { + "north": { + "uv": [ + 2, + 9.5, + 2.5, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 4, + 3, + 5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 2, + 10, + 3 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 2, + 7, + 3 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 9.5, + 2, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 6.5, + 2.5, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 2, + 6.5 + ], + "to": [ + 8.5, + 4.25, + 14.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 7.75 + ] + }, + "faces": { + "north": { + "uv": [ + 2.5, + 9.5, + 3, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 2, + 4, + 3 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 3, + 10, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 3, + 4, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 8, + 3.5, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 5, + 6, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 1.2, + 6.5 + ], + "to": [ + 8.5, + 2, + 8.8 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 7.75 + ] + }, + "faces": { + "north": { + "uv": [ + 2.5, + 9.5, + 3, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 2, + 4, + 3 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 3, + 10, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 3, + 4, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 8, + 3.5, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 5, + 6, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + -2.3, + 6.5 + ], + "to": [ + 8.75, + 1.2, + 8.8 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + -0.55, + 7.65 + ] + }, + "faces": { + "north": { + "uv": [ + 2.5, + 9.5, + 3, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 2, + 4, + 3 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 3, + 10, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 3, + 4, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 8, + 3.5, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 5, + 6, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.25, + -1.3, + 6.5 + ], + "to": [ + 9.75, + 0.2, + 8.8 + ], + "rotation": { + "angle": 0, + "axis": "z", + "origin": [ + 8, + -0.55, + 7.65 + ] + }, + "faces": { + "north": { + "uv": [ + 2.5, + 9.5, + 3, + 10.5 + ], + "rotation": 90, + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 5, + 6, + 9 + ], + "rotation": 270, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 3, + 10, + 4 + ], + "rotation": 270, + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 8, + 3.5, + 4 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 2, + 4, + 3 + ], + "rotation": 270, + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 3, + 4, + 4 + ], + "rotation": 270, + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + -2.3, + 6.5 + ], + "to": [ + 8.75, + 1.2, + 8.8 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8, + -0.55, + 7.65 + ] + }, + "faces": { + "north": { + "uv": [ + 2.5, + 9.5, + 3, + 10.5 + ], + "rotation": 180, + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 3, + 4, + 4 + ], + "rotation": 180, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 3, + 10, + 4 + ], + "rotation": 180, + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 2, + 4, + 3 + ], + "rotation": 180, + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 5, + 6, + 9 + ], + "rotation": 180, + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 8, + 3.5, + 4 + ], + "rotation": 180, + "texture": "#0" + } + } + }, + { + "from": [ + 6.25, + -1.3, + 6.5 + ], + "to": [ + 9.75, + 0.2, + 8.8 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8, + -0.55, + 7.65 + ] + }, + "faces": { + "north": { + "uv": [ + 2.5, + 9.5, + 3, + 10.5 + ], + "rotation": 270, + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 8, + 3.5, + 4 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 3, + 10, + 4 + ], + "rotation": 90, + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 5, + 6, + 9 + ], + "rotation": 90, + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 3, + 4, + 4 + ], + "rotation": 90, + "texture": "#0" + }, + "down": { + "uv": [ + 0, + 2, + 4, + 3 + ], + "rotation": 90, + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 4.25, + 6.5 + ], + "to": [ + 8.5, + 4.5, + 9.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 7.75 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 4, + 9, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 1.5, + 6.5, + 2 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 5.5, + 10.5, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 6, + 9.5, + 6.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 9.5, + 7.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 8, + 8, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 4.25, + 10.75 + ], + "to": [ + 8.5, + 4.5, + 12.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 7.75 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 4, + 9, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 1.5, + 6.5, + 2 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 5.5, + 10.5, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 6, + 9.5, + 6.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 9.5, + 7.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 8, + 8, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.6, + 4.5, + 10.75 + ], + "to": [ + 8.4, + 4.75, + 12.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 7.75 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 4, + 9, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 1.5, + 6.5, + 2 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 5.5, + 10.5, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 6, + 9.5, + 6.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 9.5, + 7.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 8, + 8, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 4.75, + 10.25 + ], + "to": [ + 8.75, + 5, + 12.75 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 7.75 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 4, + 9, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 1.5, + 6.5, + 2 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 5.5, + 10.5, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 6, + 9.5, + 6.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 9.5, + 7.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 8, + 8, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 6.15, + 10.25 + ], + "to": [ + 8.75, + 6.4, + 12.75 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 7.75 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 4, + 9, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 1.5, + 6.5, + 2 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 5.5, + 10.5, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 6, + 9.5, + 6.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 9.5, + 7.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 8, + 8, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 5, + 10.25 + ], + "to": [ + 7.5, + 6.15, + 12.75 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 7.75 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 4, + 9, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 1.5, + 6.5, + 2 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 5.5, + 10.5, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 6, + 9.5, + 6.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 9.5, + 7.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 8, + 8, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.5, + 5, + 10.25 + ], + "to": [ + 8.75, + 6.15, + 12.75 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.25, + 3.25, + 7.75 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 4, + 9, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 1.5, + 6.5, + 2 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 5.5, + 10.5, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 6, + 9.5, + 6.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 9.5, + 7.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 8, + 8, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.50391, + -1, + 13.1 + ], + "to": [ + 8.49609, + 2.5, + 14.6 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 0.5, + 13.75 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 7.5, + 5.5, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 6.5, + 1, + 8.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 7.5, + 6, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 0, + 7.5, + 2 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 10.5, + 6.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 9.5, + 7, + 10.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + -1, + 12.85 + ], + "to": [ + 8.5, + -0.25, + 13.1 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 0.5, + 13.75 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 7, + 10.5, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 7.5, + 10.5, + 8 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 8.5, + 10.5, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 9, + 10.5, + 9.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 10, + 10, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 10, + 10, + 10.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.75, + 0.76924, + 10.74672 + ], + "to": [ + 8.25, + 0.86924, + 12.99672 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 0.76924, + 13.74672 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 0, + 11, + 0.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 4, + 10.5, + 4.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 0.5, + 11, + 1 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 6, + 10.5, + 6.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 8, + 9.5, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 9.5, + 7.5, + 10.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.75, + 0.76924, + 10.14672 + ], + "to": [ + 8.25, + 2.11924, + 10.74672 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 0.76924, + 13.74672 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 1, + 11, + 1.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 1.5, + 11, + 2 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 10.5, + 2.5, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 2, + 11, + 2.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 11, + 2.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 2.5, + 10.5, + 3 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.75, + 1.06924, + 11.54672 + ], + "to": [ + 8.25, + 2.11924, + 11.89672 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 1.59424, + 11.82172 + ] + }, + "faces": { + "north": { + "uv": [ + 3, + 10.5, + 3.5, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 3, + 11, + 3.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 10.5, + 4, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 3.5, + 11, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 11, + 4, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 4, + 10.5, + 4.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 2, + 3.75 + ], + "to": [ + 8.5, + 2.25, + 6.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 7.75 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 4.5, + 11, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 4.5, + 10, + 5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 10.5, + 5.5, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 6.5, + 10.5, + 7 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 10.5, + 6, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 7, + 9, + 8.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + -0.37392, + 12.58471 + ], + "to": [ + 8.5, + 1.62608, + 14.08471 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 8, + 0.62608, + 16.70971 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 9.5, + 8.5, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 7, + 8.5, + 8 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 9.5, + 9, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 0, + 9, + 1 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 10.5, + 9, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 9.5, + 9.5, + 10.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.49609, + 0.12044, + 14.21513 + ], + "to": [ + 8.50391, + 2.12044, + 18.46513 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 1.12044, + 18.34013 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 10, + 0.5, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 5, + 1 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 0, + 10.5, + 1 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 1, + 5, + 2 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 9, + 3, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 3, + 4, + 8 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.49609, + -1.0722, + 18.49299 + ], + "to": [ + 8.50391, + 1.9278, + 20.49299 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + -2.1972, + 19.49299 + ] + }, + "faces": { + "north": { + "uv": [ + 4.5, + 3, + 4, + 8 + ], + "rotation": 180, + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 5, + 1 + ], + "rotation": 270, + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 9, + 3, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 1, + 5, + 2 + ], + "rotation": 90, + "texture": "#0" + }, + "up": { + "uv": [ + 0, + 10, + 0.5, + 11 + ], + "rotation": 180, + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 0, + 10.5, + 1 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 1.28141, + 16.14906 + ], + "to": [ + 8.5, + 3.03141, + 23.19594 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 1.53141, + 21.27406 + ] + }, + "faces": { + "north": { + "uv": [ + 0.5, + 10, + 1, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 3, + 7, + 4 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 10, + 1.5, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 4, + 7, + 5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 4.5, + 7, + 2 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 7, + 6.5, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.49609, + -1.54052, + 18.13859 + ], + "to": [ + 8.49609, + 1.77979, + 23.19718 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 7.99609, + 1.95948, + 21.01359 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 1, + 8.5, + 3 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 3, + 8.5, + 5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 8, + 4, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 8, + 4.5, + 10 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 5.5, + 10.5, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 10.5, + 5.5, + 11 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + -1.685, + 23.1889 + ], + "to": [ + 8.5, + 3.03141, + 24.14906 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 1.53141, + 21.27406 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 7, + 7.5, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 0, + 8, + 2.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 2.5, + 8, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 7.5, + 5, + 10 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 6, + 10.5, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 10.5, + 6, + 11 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.7, + 2.45, + -12.5 + ], + "to": [ + 8.3, + 3.05, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 7.75 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 6, + 11, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 5, + 10, + 5.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 10.5, + 7, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 5.5, + 10, + 6 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 10, + 1, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 6.5, + 1.5, + 10 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 5.09405, + -5.05099, + -12.25 + ], + "to": [ + 5.69405, + 3.44901, + -11.65 + ], + "rotation": { + "angle": -22.5, + "axis": "z", + "origin": [ + 5.39405, + -3.30099, + -12.2 + ] + }, + "faces": { + "north": { + "uv": [ + 6.5, + 5.5, + 10, + 6 + ], + "rotation": 90, + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 6.5, + 1.5, + 10 + ], + "rotation": 180, + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 5, + 10, + 5.5 + ], + "rotation": 270, + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 10, + 1, + 6.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 6, + 11, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 10.5, + 7, + 11 + ], + "rotation": 270, + "texture": "#0" + } + } + }, + { + "from": [ + 10.30595, + -5.05099, + -12.25 + ], + "to": [ + 10.90595, + 3.44901, + -11.65 + ], + "rotation": { + "angle": 22.5, + "axis": "z", + "origin": [ + 10.60595, + -3.30099, + -12.2 + ] + }, + "faces": { + "north": { + "uv": [ + 6.5, + 6, + 10, + 5.5 + ], + "rotation": 90, + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 10, + 1.5, + 6.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 5.5, + 10, + 5 + ], + "rotation": 270, + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 6.5, + 2, + 10 + ], + "rotation": 180, + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 6.5, + 11, + 6 + ], + "rotation": 270, + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 11, + 7, + 10.5 + ], + "rotation": 270, + "texture": "#0" + } + } + }, + { + "from": [ + 7.9, + 3.05, + -12.25 + ], + "to": [ + 8.1, + 4.85, + -11.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 7.75 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 1, + 10.5, + 2 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 10, + 2, + 11 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 2, + 10.5, + 3 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 3, + 10.5, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 7, + 10.5, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 10.5, + 7, + 11 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.7, + 3.45, + -1.25 + ], + "to": [ + 8.3, + 4.05, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 7.75 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 7, + 11, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 8, + 10.5, + 8.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 10.5, + 8, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 10, + 4.5, + 10.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 11, + 4.5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 4.5, + 10, + 5.5 + ], + "texture": "#0" + } + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [ + -1.5, + 4.25, + -2.75 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + }, + "thirdperson_lefthand": { + "translation": [ + -1.5, + 4.25, + -2.75 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + }, + "ground": { + "translation": [ + 0, + 9, + 0 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + }, + "head": { + "translation": [ + 0, + 18.75, + 0 + ] + }, + "fixed": { + "rotation": [ + 90, + -45, + 90 + ], + "translation": [ + -2.5, + 4.25, + 0 + ], + "scale": [ + 0.75, + 0.75, + 0.75 + ] + } + }, + "groups": [ + { + "name": "group", + "origin": [ + 8, + 3.25, + 7.75 + ], + "color": 0, + "children": [ + 0, + 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, + 31 + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/rpk_base.json b/src/main/resources/assets/superbwarfare/models/item/rpk_base.json new file mode 100644 index 000000000..fcbbb41e1 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/rpk_base.json @@ -0,0 +1,6 @@ +{ + "parent": "superbwarfare:displaysettings/rpk.item", + "textures": { + "layer0": "superbwarfare:item/rpk" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/rpk_icon.json b/src/main/resources/assets/superbwarfare/models/item/rpk_icon.json new file mode 100644 index 000000000..6598e4a75 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/rpk_icon.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/rpk_icon" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/sandbag.json b/src/main/resources/assets/superbwarfare/models/item/sandbag.json new file mode 100644 index 000000000..b16c0c72c --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/sandbag.json @@ -0,0 +1,22 @@ +{ + "parent": "superbwarfare:block/sandbag", + "display": { + "thirdperson": { + "rotation": [ + 10, + -45, + 170 + ], + "translation": [ + 0, + 1.5, + -2.75 + ], + "scale": [ + 0.375, + 0.375, + 0.375 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/secondary_cataclysm.json b/src/main/resources/assets/superbwarfare/models/item/secondary_cataclysm.json new file mode 100644 index 000000000..54313d76d --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/secondary_cataclysm.json @@ -0,0 +1,27 @@ +{ + "loader": "forge:separate_transforms", + "gui_light": "front", + "base": { + "parent": "superbwarfare:item/secondary_cataclysm_base" + }, + "perspectives": { + "gui": { + "parent": "superbwarfare:item/secondary_cataclysm_icon" + }, + "thirdperson_righthand": { + "parent": "superbwarfare:item/secondary_cataclysm_3d" + }, + "thirdperson_lefthand": { + "parent": "superbwarfare:item/secondary_cataclysm_3d" + }, + "ground": { + "parent": "superbwarfare:item/secondary_cataclysm_3d" + }, + "fixed": { + "parent": "superbwarfare:item/secondary_cataclysm_3d" + }, + "head": { + "parent": "superbwarfare:item/secondary_cataclysm_3d" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/secondary_cataclysm_3d.json b/src/main/resources/assets/superbwarfare/models/item/secondary_cataclysm_3d.json new file mode 100644 index 000000000..fdf5bc799 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/secondary_cataclysm_3d.json @@ -0,0 +1,24368 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 128, + 128 + ], + "textures": { + "1": "superbwarfare:item/secondary_cataclysm_3d" + }, + "elements": [ + { + "from": [ + 3.76955, + 7.32204, + 6.86617 + ], + "to": [ + 4.15235, + 7.81704, + 11.08617 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.53723, + 8.74762, + 6.84877 + ] + }, + "faces": { + "north": { + "uv": [ + 2.875, + 7.875, + 2.92188, + 7.9375 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.875, + 1.75, + 6.40625, + 1.8125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.875, + 2.875, + 7.92188, + 2.9375 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.875, + 4.375, + 6.40625, + 4.4375 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0.29688, + 7.03125, + 0.25, + 6.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.42188, + 6.5, + 0.375, + 7.03125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 3.96017, + 7.24309, + 6.86617 + ], + "to": [ + 4.34297, + 7.73809, + 11.08617 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 4.15157, + 7.54559, + 8.35117 + ] + }, + "faces": { + "north": { + "uv": [ + 3, + 7.875, + 3.04688, + 7.9375 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6, + 0, + 6.53125, + 0.0625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.875, + 3, + 7.92188, + 3.0625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.375, + 6, + 1.90625, + 6.0625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0.54688, + 7.03125, + 0.5, + 6.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.67188, + 6.5, + 0.625, + 7.03125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 3.92803, + 7.16356, + 6.86617 + ], + "to": [ + 4.42303, + 7.54636, + 11.08617 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 4.23053, + 7.35496, + 8.35117 + ] + }, + "faces": { + "north": { + "uv": [ + 3.125, + 7.875, + 3.1875, + 7.92188 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.5, + 1.75, + 7.03125, + 1.79688 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.875, + 3.125, + 7.9375, + 3.17188 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.5, + 3.625, + 7.03125, + 3.67188 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 1.1875, + 6.53125, + 1.125, + 6 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.0625, + 6, + 2, + 6.53125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 3.84907, + 6.97294, + 6.86617 + ], + "to": [ + 4.34407, + 7.35574, + 11.08617 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 4.15157, + 7.16434, + 8.35117 + ] + }, + "faces": { + "north": { + "uv": [ + 3.25, + 7.875, + 3.3125, + 7.92188 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.5, + 3.75, + 7.03125, + 3.79688 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.875, + 3.25, + 7.9375, + 3.29688 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.125, + 6.5, + 4.65625, + 6.54688 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2.1875, + 6.53125, + 2.125, + 6 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.3125, + 6, + 2.25, + 6.53125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 3.76955, + 6.89288, + 6.86617 + ], + "to": [ + 4.15235, + 7.38788, + 11.08617 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 3.96095, + 7.08538, + 8.35117 + ] + }, + "faces": { + "north": { + "uv": [ + 3.375, + 7.875, + 3.42188, + 7.9375 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6, + 1.625, + 6.53125, + 1.6875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.875, + 3.375, + 7.92188, + 3.4375 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6, + 1.875, + 6.53125, + 1.9375 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0.79688, + 7.03125, + 0.75, + 6.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.04688, + 6.5, + 3, + 7.03125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 3.57893, + 6.97184, + 6.86617 + ], + "to": [ + 3.96173, + 7.46684, + 11.08617 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 3.77033, + 7.16434, + 8.35117 + ] + }, + "faces": { + "north": { + "uv": [ + 3.5, + 7.875, + 3.54688, + 7.9375 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6, + 2, + 6.53125, + 2.0625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.875, + 3.5, + 7.92188, + 3.5625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6, + 2.125, + 6.53125, + 2.1875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 3.67188, + 7.03125, + 3.625, + 6.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.79688, + 6.5, + 4.75, + 7.03125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 3.49887, + 7.16356, + 6.86617 + ], + "to": [ + 3.99387, + 7.54636, + 11.08617 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 3.69137, + 7.35496, + 8.35117 + ] + }, + "faces": { + "north": { + "uv": [ + 3.625, + 7.875, + 3.6875, + 7.92188 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.5, + 4.25, + 7.03125, + 4.29688 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.875, + 3.625, + 7.9375, + 3.67188 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.5, + 4.375, + 7.03125, + 4.42188 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2.4375, + 6.53125, + 2.375, + 6 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.5625, + 6, + 2.5, + 6.53125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 3.57783, + 7.35419, + 6.86617 + ], + "to": [ + 4.07283, + 7.73699, + 11.08617 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 3.77033, + 7.54559, + 8.35117 + ] + }, + "faces": { + "north": { + "uv": [ + 3.75, + 7.875, + 3.8125, + 7.92188 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.5, + 5.375, + 7.03125, + 5.42188 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.875, + 3.75, + 7.9375, + 3.79688 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.5, + 5.5, + 7.03125, + 5.54688 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2.6875, + 6.53125, + 2.625, + 6 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.8125, + 6, + 2.75, + 6.53125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 4.45494, + 7.0772, + 5.74517 + ], + "to": [ + 5.53494, + 7.6172, + 6.28517 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 7.375, + 2.875, + 7.51563, + 2.9375 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.625, + 7.75, + 2.6875, + 7.8125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.375, + 3, + 7.51563, + 3.0625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.75, + 2.625, + 7.8125, + 2.6875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.51563, + 3.5625, + 7.375, + 3.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.51563, + 3.625, + 7.375, + 3.6875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 4.72053, + 7.0772, + 3.977 + ], + "to": [ + 5.80053, + 7.6172, + 4.517 + ], + "rotation": { + "angle": 45, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 7.375, + 3.75, + 7.51563, + 3.8125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.75, + 7.75, + 2.8125, + 7.8125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.375, + 4.25, + 7.51563, + 4.3125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.75, + 2.75, + 7.8125, + 2.8125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.51563, + 4.6875, + 7.375, + 4.625 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.51563, + 4.75, + 7.375, + 4.8125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 3.69127, + 7.0772, + 6.50885 + ], + "to": [ + 4.23127, + 7.6172, + 7.58885 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 3.96127, + 7.3472, + 7.04885 + ] + }, + "faces": { + "north": { + "uv": [ + 2.875, + 7.75, + 2.9375, + 7.8125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.875, + 7.375, + 5.01563, + 7.4375 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.75, + 2.875, + 7.8125, + 2.9375 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.375, + 4.875, + 7.51563, + 4.9375 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5.3125, + 7.51563, + 5.25, + 7.375 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.4375, + 7.375, + 5.375, + 7.51563 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 3.83855, + 7.34793, + 11.01924 + ], + "to": [ + 4.08251, + 7.64889, + 11.15844 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 3.97478, + 7.38441, + 9.13484 + ] + }, + "faces": { + "north": { + "uv": [ + 0.5, + 8.875, + 0.51563, + 8.89063 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.75, + 5.875, + 7.95313, + 5.89063 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.875, + 0.375, + 8.89063, + 0.39063 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6, + 7.75, + 6.20313, + 7.76563 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.95313, + 6.01563, + 7.75, + 6 + ], + "rotation": 90, + "texture": "#1" + }, + "down": { + "uv": [ + 7.95313, + 6.5, + 7.75, + 6.51563 + ], + "rotation": 270, + "texture": "#1" + } + } + }, + { + "from": [ + 3.70823, + 7.33425, + 11.01924 + ], + "to": [ + 4.00919, + 7.57821, + 11.15844 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 3.85871, + 7.45623, + 9.13484 + ] + }, + "faces": { + "north": { + "uv": [ + 0.625, + 8.875, + 0.64063, + 8.89063 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.75, + 7.75, + 6.95313, + 7.76563 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.875, + 0.5, + 8.89063, + 0.51563 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.75, + 6.75, + 7.95313, + 6.76563 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.20313, + 7.76563, + 7, + 7.75 + ], + "rotation": 90, + "texture": "#1" + }, + "down": { + "uv": [ + 7.45313, + 7.75, + 7.25, + 7.76563 + ], + "rotation": 270, + "texture": "#1" + } + } + }, + { + "from": [ + 3.70823, + 7.13061, + 11.01924 + ], + "to": [ + 4.00919, + 7.37457, + 11.15844 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 3.85871, + 7.25259, + 9.13484 + ] + }, + "faces": { + "north": { + "uv": [ + 0.75, + 8.875, + 0.76563, + 8.89063 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.5, + 7.75, + 7.70313, + 7.76563 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.875, + 0.625, + 8.89063, + 0.64063 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.75, + 7.625, + 7.95313, + 7.64063 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.95313, + 7.76563, + 7.75, + 7.75 + ], + "rotation": 90, + "texture": "#1" + }, + "down": { + "uv": [ + 0.20313, + 7.875, + 0, + 7.89063 + ], + "rotation": 270, + "texture": "#1" + } + } + }, + { + "from": [ + 3.66605, + 7.23243, + 11.01924 + ], + "to": [ + 3.96701, + 7.47639, + 11.15844 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 3.81653, + 7.35441, + 9.13484 + ] + }, + "faces": { + "north": { + "uv": [ + 0.875, + 8.875, + 0.89063, + 8.89063 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.875, + 0, + 8.07813, + 0.01563 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.875, + 0.75, + 8.89063, + 0.76563 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.875, + 0.125, + 8.07813, + 0.14063 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0.45313, + 7.89063, + 0.25, + 7.875 + ], + "rotation": 90, + "texture": "#1" + }, + "down": { + "uv": [ + 8.07813, + 0.375, + 7.875, + 0.39063 + ], + "rotation": 270, + "texture": "#1" + } + } + }, + { + "from": [ + 3.83855, + 7.05993, + 11.01924 + ], + "to": [ + 4.08251, + 7.36089, + 11.15844 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 3.96053, + 7.21041, + 9.13484 + ] + }, + "faces": { + "north": { + "uv": [ + 1, + 8.875, + 1.01563, + 8.89063 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.5, + 7.875, + 0.70313, + 7.89063 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.875, + 0.875, + 8.89063, + 0.89063 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.75, + 7.875, + 0.95313, + 7.89063 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 1.20313, + 7.89063, + 1, + 7.875 + ], + "rotation": 90, + "texture": "#1" + }, + "down": { + "uv": [ + 1.57813, + 7.875, + 1.375, + 7.89063 + ], + "rotation": 270, + "texture": "#1" + } + } + }, + { + "from": [ + 3.95405, + 7.23243, + 11.01924 + ], + "to": [ + 4.25501, + 7.47639, + 11.15844 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 4.10453, + 7.35441, + 9.13484 + ] + }, + "faces": { + "north": { + "uv": [ + 1.125, + 8.875, + 1.14063, + 8.89063 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.625, + 7.875, + 1.82813, + 7.89063 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.875, + 1, + 8.89063, + 1.01563 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.875, + 1.75, + 8.07813, + 1.76563 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2.07813, + 7.89063, + 1.875, + 7.875 + ], + "rotation": 90, + "texture": "#1" + }, + "down": { + "uv": [ + 2.32813, + 7.875, + 2.125, + 7.89063 + ], + "rotation": 270, + "texture": "#1" + } + } + }, + { + "from": [ + 3.91187, + 7.33425, + 11.01924 + ], + "to": [ + 4.21283, + 7.57821, + 11.15844 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 4.06235, + 7.45623, + 9.13484 + ] + }, + "faces": { + "north": { + "uv": [ + 1.25, + 8.875, + 1.26563, + 8.89063 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.875, + 2.125, + 8.07813, + 2.14063 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.875, + 1.125, + 8.89063, + 1.14063 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.875, + 2.25, + 8.07813, + 2.26563 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2.57813, + 7.89063, + 2.375, + 7.875 + ], + "rotation": 90, + "texture": "#1" + }, + "down": { + "uv": [ + 8.07813, + 2.375, + 7.875, + 2.39063 + ], + "rotation": 270, + "texture": "#1" + } + } + }, + { + "from": [ + 3.94037, + 7.10211, + 11.01924 + ], + "to": [ + 4.18433, + 7.40307, + 11.15844 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 4.06235, + 7.25259, + 9.13484 + ] + }, + "faces": { + "north": { + "uv": [ + 1.375, + 8.875, + 1.39063, + 8.89063 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.875, + 2.5, + 8.07813, + 2.51563 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.875, + 1.25, + 8.89063, + 1.26563 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.625, + 7.875, + 2.82813, + 7.89063 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.07813, + 2.64063, + 7.875, + 2.625 + ], + "rotation": 90, + "texture": "#1" + }, + "down": { + "uv": [ + 8.07813, + 2.75, + 7.875, + 2.76563 + ], + "rotation": 270, + "texture": "#1" + } + } + }, + { + "from": [ + 6.20454, + 6.96381, + 4.88117 + ], + "to": [ + 6.47454, + 8.96181, + 11.36117 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 0.5, + 7.5, + 0.53125, + 7.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.25, + 1.375, + 4.0625, + 1.625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0.625, + 7.5, + 0.65625, + 7.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.25, + 3.25, + 3.0625, + 3.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0.03125, + 7.3125, + 0, + 6.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.15625, + 6.5, + 0.125, + 7.3125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.70228, + 9.34932, + 4.88117 + ], + "to": [ + 9.29428, + 9.61532, + 11.36117 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 7.25, + 3.125, + 7.57813, + 3.15625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.375, + 2.875, + 7.1875, + 2.90625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.25, + 3.25, + 7.57813, + 3.28125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.375, + 5.125, + 7.1875, + 5.15625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2.32813, + 1.3125, + 2, + 0.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.07813, + 2, + 0.75, + 2.8125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 5.29828, + 5.78532, + 4.88117 + ], + "to": [ + 5.56828, + 8.21532, + 11.36117 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 2.875, + 7.375, + 2.90625, + 7.67188 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.375, + 0.875, + 3.1875, + 1.17188 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3, + 7.375, + 3.03125, + 7.67188 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.375, + 1.25, + 3.1875, + 1.54688 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5.78125, + 7.1875, + 5.75, + 6.375 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.90625, + 6.375, + 5.875, + 7.1875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 3.82414, + 6.02483, + 4.88117 + ], + "to": [ + 4.09414, + 8.02283, + 11.36117 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 0.125, + 7.5, + 0.15625, + 7.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.25, + 0.375, + 4.0625, + 0.625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0.25, + 7.5, + 0.28125, + 7.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.25, + 0.625, + 4.0625, + 0.875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6.03125, + 7.1875, + 6, + 6.375 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.15625, + 6.375, + 6.125, + 7.1875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.70228, + 4.38132, + 4.88117 + ], + "to": [ + 9.29428, + 4.59732, + 11.36117 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 7.25, + 3.375, + 7.57813, + 3.40625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.375, + 5.25, + 7.1875, + 5.28125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.25, + 3.875, + 7.57813, + 3.90625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.5, + 0.125, + 7.3125, + 0.15625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2.32813, + 2.1875, + 2, + 1.375 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.82813, + 2.125, + 1.5, + 2.9375 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 11.47119, + 7.06592, + 4.88117 + ], + "to": [ + 11.74119, + 9.06392, + 11.36117 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 0.25, + 7.53125, + 0.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.25, + 0.875, + 4.0625, + 1.125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0.375, + 7.5, + 0.40625, + 7.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.25, + 1.125, + 4.0625, + 1.375 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6.28125, + 7.1875, + 6.25, + 6.375 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.40625, + 6.25, + 6.375, + 7.0625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 10.42828, + 5.78532, + 4.88117 + ], + "to": [ + 10.69828, + 8.21532, + 11.36117 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 1.875, + 7.375, + 1.90625, + 7.67188 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.875, + 2.25, + 2.6875, + 2.54688 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.375, + 2.5, + 7.40625, + 2.79688 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.375, + 0.5, + 3.1875, + 0.79688 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5.53125, + 7.1875, + 5.5, + 6.375 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.65625, + 6.375, + 5.625, + 7.1875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 9.09079, + 5.92271, + 4.88117 + ], + "to": [ + 9.36079, + 7.92071, + 11.36117 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 7.375, + 7.125, + 7.40625, + 7.375 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.25, + 3, + 3.0625, + 3.25 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.375, + 7.375, + 7.40625, + 7.625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.125, + 3, + 3.9375, + 3.25 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5.28125, + 7.1875, + 5.25, + 6.375 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.40625, + 6.375, + 5.375, + 7.1875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 5.70937, + 4.46968, + 5.20517 + ], + "to": [ + 7.43737, + 5.33368, + 10.92917 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 6.625, + 0, + 6.84375, + 0.10938 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.125, + 4.125, + 5.84375, + 4.23438 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 6.625, + 0.75, + 6.84375, + 0.85938 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.25, + 0, + 5.96875, + 0.10938 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 1.71875, + 4.34375, + 1.5, + 3.625 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.84375, + 1.625, + 3.625, + 2.34375 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 9.18628, + 5.78532, + 5.20517 + ], + "to": [ + 10.48228, + 8.16132, + 10.92917 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 2, + 5.625, + 2.15625, + 5.92188 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.875, + 2.625, + 2.59375, + 2.92188 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5.625, + 2.375, + 5.78125, + 2.67188 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.625, + 2.625, + 3.34375, + 2.92188 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 3.90625, + 5.09375, + 3.75, + 4.375 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.28125, + 4.5, + 3.125, + 5.21875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.19337, + 6.08968, + 5.20517 + ], + "to": [ + 9.16537, + 7.81768, + 10.92917 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 3.75, + 6, + 3.875, + 6.21875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.625, + 0, + 4.34375, + 0.21875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0.75, + 6.25, + 0.875, + 6.46875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.75, + 3.25, + 4.46875, + 3.46875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 1.25, + 5.09375, + 1.125, + 4.375 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.125, + 4.375, + 4, + 5.09375 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.81028, + 4.59732, + 5.20517 + ], + "to": [ + 9.18628, + 9.34932, + 10.92917 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 2.25, + 3.5, + 2.54688, + 4.09375 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 0.71875, + 0.59375 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 2.625, + 3.5, + 2.92188, + 4.09375 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0.625, + 0.71875, + 1.21875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0.42188, + 3.34375, + 0.125, + 2.625 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.79688, + 2.875, + 0.5, + 3.59375 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 5.70937, + 8.57368, + 5.20517 + ], + "to": [ + 7.43737, + 9.54568, + 10.92917 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 0.875, + 3.75, + 1.09375, + 3.875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.5, + 2.375, + 4.21875, + 2.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 6.375, + 0.75, + 6.59375, + 0.875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.75, + 3.875, + 5.46875, + 4 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 1.96875, + 4.34375, + 1.75, + 3.625 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.21875, + 3.625, + 2, + 4.34375 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 5.51428, + 5.78532, + 5.20517 + ], + "to": [ + 6.81028, + 8.16132, + 10.92917 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 5.625, + 2.75, + 5.78125, + 3.04688 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.75, + 2.125, + 3.46875, + 2.42188 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3.625, + 5.625, + 3.78125, + 5.92188 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.875, + 0, + 3.59375, + 0.29688 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4.65625, + 3.96875, + 4.5, + 3.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.53125, + 4.5, + 4.375, + 5.21875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 4.08937, + 6.08968, + 5.20517 + ], + "to": [ + 4.95337, + 7.81768, + 10.92917 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 1.25, + 6.625, + 1.35938, + 6.84375 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.75, + 3.5, + 4.46875, + 3.71875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 1.375, + 6.625, + 1.48438, + 6.84375 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.75, + 3.75, + 4.46875, + 3.96875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 1.98438, + 5.96875, + 1.875, + 5.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.85938, + 5.25, + 2.75, + 5.96875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 5.14555, + 5.72205, + 4.98917 + ], + "to": [ + 5.41555, + 8.36805, + 5.96117 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 7.25, + 2.25, + 7.28125, + 2.57813 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.875, + 4, + 6, + 4.32813 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.25, + 2.625, + 7.28125, + 2.95313 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.375, + 5.875, + 4.5, + 6.20313 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 1.15625, + 7.875, + 1.125, + 7.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.90625, + 7.75, + 1.875, + 7.875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 5.08228, + 6.54132, + 4.66517 + ], + "to": [ + 5.35228, + 7.56732, + 6.50117 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 2, + 7.75, + 2.03125, + 7.875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.375, + 2.125, + 2.60938, + 2.25 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 2.125, + 7.75, + 2.15625, + 7.875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.875, + 0.375, + 3.10938, + 0.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.53125, + 1.73438, + 7.5, + 1.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.65625, + 7.5, + 1.625, + 7.73438 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 5.98854, + 6.96381, + 4.98917 + ], + "to": [ + 6.25854, + 8.96181, + 5.96117 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 0.75, + 7.5, + 0.78125, + 7.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.5, + 2.125, + 3.625, + 2.375 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.5, + 0.75, + 7.53125, + 1 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 4.5, + 0.125, + 4.75 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2.28125, + 7.875, + 2.25, + 7.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.40625, + 7.75, + 2.375, + 7.875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.32359, + 7.53114, + 4.66517 + ], + "to": [ + 11.50759, + 8.61114, + 4.88117 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 4.875, + 3, + 5.51563, + 3.14063 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4, + 7.625, + 4.03125, + 7.76563 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 2.25, + 5, + 2.89063, + 5.14063 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.125, + 7.625, + 4.15625, + 7.76563 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.39063, + 5.65625, + 6.75, + 5.625 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.39063, + 5.75, + 6.75, + 5.78125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 4.1341, + 6.45841, + 11.03717 + ], + "to": [ + 9.3181, + 7.43041, + 11.25317 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 5.125, + 1.75, + 5.76563, + 1.875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.5, + 7.75, + 2.53125, + 7.875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5.125, + 4, + 5.76563, + 4.125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.75, + 2.5, + 7.78125, + 2.625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.39063, + 5.90625, + 6.75, + 5.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.39063, + 6, + 6.75, + 6.03125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.0781, + 6.35041, + 10.06517 + ], + "to": [ + 7.2661, + 7.53841, + 11.68517 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 6.5, + 5.625, + 6.65625, + 5.78125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6, + 3.25, + 6.20313, + 3.40625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 6.5, + 5.875, + 6.65625, + 6.03125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6, + 4, + 6.20313, + 4.15625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4.78125, + 6.20313, + 4.625, + 6 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.15625, + 5.375, + 6, + 5.57813 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.69665, + 6.65859, + 11.14517 + ], + "to": [ + 8.45265, + 7.41459, + 11.79317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 5.125, + 0.5, + 5.21875, + 0.59375 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.5, + 0, + 7.57813, + 0.09375 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5.25, + 1.125, + 5.34375, + 1.21875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.75, + 7.5, + 1.82813, + 7.59375 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2.09375, + 7.57813, + 2, + 7.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.21875, + 7.5, + 2.125, + 7.57813 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 5.40628, + 6.97332, + 4.98917 + ], + "to": [ + 10.37428, + 8.16132, + 5.20517 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 4.75, + 1.875, + 5.375, + 2.03125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.625, + 2.875, + 7.65625, + 3.03125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 4.75, + 2.125, + 5.375, + 2.28125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.125, + 7.625, + 3.15625, + 7.78125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.125, + 6.78125, + 6.5, + 6.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.375, + 6.5, + 6.75, + 6.53125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 5.51428, + 5.78532, + 4.98917 + ], + "to": [ + 10.37428, + 6.64932, + 5.20517 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 2.75, + 2.5, + 3.35938, + 2.60938 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.125, + 7.75, + 5.15625, + 7.85938 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 4.125, + 1.5, + 4.73438, + 1.60938 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.25, + 7.75, + 5.28125, + 7.85938 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.48438, + 0.78125, + 6.875, + 0.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.85938, + 6.875, + 1.25, + 6.90625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.73428, + 9.29932, + -2.60483 + ], + "to": [ + 8.26228, + 9.34932, + -1.35483 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.73536 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 4.75, + 8.3125, + 4.76563 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.125, + 1.75, + 8.28125, + 1.76563 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 4.875, + 8.25, + 4.9375, + 8.26563 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.875, + 8.125, + 2.03125, + 8.14063 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 3.5625, + 7.40625, + 3.5, + 7.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.0625, + 7.25, + 4, + 7.40625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.53878, + 8.77044, + -2.60483 + ], + "to": [ + 8.06678, + 8.82044, + -1.35483 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.26212, + 8.68352, + 6.73536 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 4.875, + 8.3125, + 4.89063 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.125, + 1.875, + 8.28125, + 1.89063 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5, + 8.25, + 5.0625, + 8.26563 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.125, + 2, + 8.28125, + 2.01563 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5.5625, + 7.40625, + 5.5, + 7.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.6875, + 7.25, + 5.625, + 7.40625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.36093, + 8.44797, + -2.60483 + ], + "to": [ + 7.41093, + 8.97597, + -1.35483 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.73536 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 5, + 8.26563, + 5.0625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.25, + 5.25, + 7.40625, + 5.3125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5.125, + 8.25, + 5.14063, + 8.3125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.75, + 7.25, + 5.90625, + 7.3125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2.14063, + 8.28125, + 2.125, + 8.125 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.14063, + 2.125, + 8.125, + 2.28125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.16543, + 7.91909, + -2.60483 + ], + "to": [ + 7.21543, + 8.44709, + -1.35483 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.26212, + 8.68352, + 6.73536 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 5.125, + 8.26563, + 5.1875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6, + 7.25, + 6.15625, + 7.3125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5.25, + 8.25, + 5.26563, + 8.3125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.25, + 6.25, + 7.40625, + 6.3125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2.26563, + 8.28125, + 2.25, + 8.125 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.39063, + 8.125, + 2.375, + 8.28125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.73428, + 8.07461, + -2.60483 + ], + "to": [ + 8.26228, + 8.12461, + -1.35483 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.73536 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 5.25, + 8.3125, + 5.26563 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.125, + 2.375, + 8.28125, + 2.39063 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5.375, + 8.25, + 5.4375, + 8.26563 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.5, + 8.125, + 2.65625, + 8.14063 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6.3125, + 7.40625, + 6.25, + 7.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.1875, + 7.25, + 7.125, + 7.40625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.53878, + 7.54573, + -2.60483 + ], + "to": [ + 8.06678, + 7.59573, + -1.35483 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.26212, + 8.68352, + 6.73536 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 5.375, + 8.3125, + 5.39063 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.125, + 2.5, + 8.28125, + 2.51563 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5.5, + 8.25, + 5.5625, + 8.26563 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.125, + 2.625, + 8.28125, + 2.64063 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.3125, + 7.40625, + 7.25, + 7.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.0625, + 7.375, + 0, + 7.53125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.58563, + 8.44797, + -2.60483 + ], + "to": [ + 8.63563, + 8.97597, + -1.35483 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.73536 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 5.5, + 8.26563, + 5.5625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.25, + 6.375, + 7.40625, + 6.4375 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5.625, + 8.25, + 5.64063, + 8.3125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.25, + 6.625, + 7.40625, + 6.6875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2.76563, + 8.28125, + 2.75, + 8.125 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.14063, + 2.75, + 8.125, + 2.90625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.39013, + 7.91909, + -2.60483 + ], + "to": [ + 8.44013, + 8.44709, + -1.35483 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.26212, + 8.68352, + 6.73536 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 5.625, + 8.26563, + 5.6875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.25, + 6.875, + 7.40625, + 6.9375 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5.75, + 8.25, + 5.76563, + 8.3125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.125, + 7.375, + 0.28125, + 7.4375 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2.89063, + 8.28125, + 2.875, + 8.125 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.01563, + 8.125, + 3, + 8.28125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 9.48328, + 10.13749, + 7.73237 + ], + "to": [ + 10.57728, + 10.44689, + 7.96997 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 7.625, + 3.875, + 7.76563, + 3.90625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.25, + 5.75, + 8.28125, + 5.78125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 4.25, + 7.625, + 4.39063, + 7.65625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.875, + 8.25, + 5.90625, + 8.28125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.76563, + 4.28125, + 7.625, + 4.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.76563, + 4.375, + 7.625, + 4.40625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 9.48328, + 10.67079, + 6.28824 + ], + "to": [ + 10.57728, + 10.98019, + 6.52584 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 4.5, + 7.625, + 4.64063, + 7.65625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.25, + 5.875, + 8.28125, + 5.90625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.625, + 4.5, + 7.76563, + 4.53125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6, + 8.25, + 6.03125, + 8.28125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.76563, + 4.65625, + 7.625, + 4.625 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.89063, + 7.625, + 4.75, + 7.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 9.48328, + 10.04128, + 7.82858 + ], + "to": [ + 10.57728, + 10.27888, + 8.13798 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 7.625, + 4.75, + 7.76563, + 4.78125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.125, + 8.25, + 6.15625, + 8.28125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.625, + 4.875, + 7.76563, + 4.90625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.25, + 6.125, + 8.28125, + 6.15625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.76563, + 5.03125, + 7.625, + 5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.39063, + 7.625, + 5.25, + 7.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 9.48328, + 10.57458, + 6.38445 + ], + "to": [ + 10.57728, + 10.81218, + 6.69385 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 7.625, + 5.375, + 7.76563, + 5.40625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.25, + 8.25, + 6.28125, + 8.28125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5.5, + 7.625, + 5.64063, + 7.65625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.25, + 6.25, + 8.28125, + 6.28125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.76563, + 5.53125, + 7.625, + 5.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.89063, + 7.625, + 5.75, + 7.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 9.48328, + 10.57458, + 6.12023 + ], + "to": [ + 10.57728, + 10.81218, + 6.42963 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 6, + 7.625, + 6.14063, + 7.65625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.375, + 8.25, + 6.40625, + 8.28125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.625, + 6.125, + 7.76563, + 6.15625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.25, + 6.375, + 8.28125, + 6.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.76563, + 6.65625, + 7.625, + 6.625 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.89063, + 7.625, + 6.75, + 7.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 9.48328, + 10.04128, + 7.56436 + ], + "to": [ + 10.57728, + 10.27888, + 7.87376 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 7.625, + 6.875, + 7.76563, + 6.90625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.5, + 8.25, + 6.53125, + 8.28125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 7.625, + 7.14063, + 7.65625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.25, + 6.5, + 8.28125, + 6.53125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.76563, + 7.03125, + 7.625, + 7 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.76563, + 7.125, + 7.625, + 7.15625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 9.48328, + 10.40658, + 6.28824 + ], + "to": [ + 10.57728, + 10.71598, + 6.52584 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 7.25, + 7.625, + 7.39063, + 7.65625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.625, + 8.25, + 6.65625, + 8.28125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.625, + 7.25, + 7.76563, + 7.28125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.25, + 6.625, + 8.28125, + 6.65625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.76563, + 7.40625, + 7.625, + 7.375 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.64063, + 7.625, + 7.5, + 7.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 9.48328, + 9.87327, + 7.73237 + ], + "to": [ + 10.57728, + 10.18267, + 7.96997 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 7.625, + 7.5, + 7.76563, + 7.53125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.75, + 8.25, + 6.78125, + 8.28125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0.125, + 7.75, + 0.26563, + 7.78125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.25, + 6.75, + 8.28125, + 6.78125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.89063, + 0.28125, + 7.75, + 0.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.51563, + 7.75, + 0.375, + 7.78125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.28193, + 10.98876, + 17.52717 + ], + "to": [ + 8.45918, + 11.23876, + 17.73317 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.37056, + 11.11376, + 17.63017 + ] + }, + "faces": { + "north": { + "uv": [ + 5.75, + 8.5, + 5.76563, + 8.53125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.875, + 8.25, + 6.90625, + 8.28125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.5, + 5.75, + 8.51563, + 5.78125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.25, + 6.875, + 8.28125, + 6.90625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5.89063, + 8.53125, + 5.875, + 8.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.51563, + 5.875, + 8.5, + 5.90625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.60028, + 11.01482, + 17.52717 + ], + "to": [ + 8.39628, + 11.26482, + 17.73317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.75302, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 3.875, + 7.875, + 3.96875, + 7.90625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7, + 8.25, + 7.03125, + 8.28125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.875, + 3.875, + 7.96875, + 3.90625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.25, + 7, + 8.28125, + 7.03125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4.09375, + 7.90625, + 4, + 7.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.96875, + 4, + 7.875, + 4.03125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.62799, + 10.77, + 17.52717 + ], + "to": [ + 7.80524, + 11.02, + 17.73317 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.40724, + 10.895, + 17.60517 + ] + }, + "faces": { + "north": { + "uv": [ + 6, + 8.5, + 6.01563, + 8.53125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.125, + 8.25, + 7.15625, + 8.28125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.5, + 6, + 8.51563, + 6.03125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.25, + 7.125, + 8.28125, + 7.15625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6.14063, + 8.53125, + 6.125, + 8.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.51563, + 6.125, + 8.5, + 6.15625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.28193, + 10.98876, + 17.12717 + ], + "to": [ + 8.45918, + 11.23876, + 17.33317 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.37056, + 11.11376, + 17.23017 + ] + }, + "faces": { + "north": { + "uv": [ + 6.25, + 8.5, + 6.26563, + 8.53125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.25, + 8.25, + 7.28125, + 8.28125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.5, + 6.25, + 8.51563, + 6.28125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.25, + 7.25, + 8.28125, + 7.28125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6.39063, + 8.53125, + 6.375, + 8.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.51563, + 6.375, + 8.5, + 6.40625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.60028, + 11.01482, + 17.12717 + ], + "to": [ + 8.39628, + 11.26482, + 17.33317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.75302, + 6.08536 + ] + }, + "faces": { + "north": { + "uv": [ + 4.125, + 7.875, + 4.21875, + 7.90625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.375, + 8.25, + 7.40625, + 8.28125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.875, + 4.125, + 7.96875, + 4.15625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.25, + 7.375, + 8.28125, + 7.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4.34375, + 7.90625, + 4.25, + 7.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.96875, + 4.25, + 7.875, + 4.28125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.62799, + 10.77, + 17.12717 + ], + "to": [ + 7.80524, + 11.02, + 17.33317 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.40724, + 10.895, + 17.20517 + ] + }, + "faces": { + "north": { + "uv": [ + 6.5, + 8.5, + 6.51563, + 8.53125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.5, + 8.25, + 7.53125, + 8.28125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.5, + 6.5, + 8.51563, + 6.53125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.25, + 7.5, + 8.28125, + 7.53125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6.64063, + 8.53125, + 6.625, + 8.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.51563, + 6.625, + 8.5, + 6.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.62799, + 10.77, + 16.32717 + ], + "to": [ + 7.80524, + 11.02, + 16.53317 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.40724, + 10.895, + 16.40517 + ] + }, + "faces": { + "north": { + "uv": [ + 6.75, + 8.5, + 6.76563, + 8.53125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.625, + 8.25, + 7.65625, + 8.28125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.5, + 6.75, + 8.51563, + 6.78125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.25, + 7.625, + 8.28125, + 7.65625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6.89063, + 8.53125, + 6.875, + 8.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.51563, + 6.875, + 8.5, + 6.90625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.28193, + 10.98876, + 16.72717 + ], + "to": [ + 8.45918, + 11.23876, + 16.93317 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.37056, + 11.11376, + 16.83017 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 8.5, + 7.01563, + 8.53125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.75, + 8.25, + 7.78125, + 8.28125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.5, + 7, + 8.51563, + 7.03125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.25, + 7.75, + 8.28125, + 7.78125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.14063, + 8.53125, + 7.125, + 8.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.51563, + 7.125, + 8.5, + 7.15625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.60028, + 11.01482, + 16.72717 + ], + "to": [ + 8.39628, + 11.26482, + 16.93317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.75302, + 5.68536 + ] + }, + "faces": { + "north": { + "uv": [ + 4.375, + 7.875, + 4.46875, + 7.90625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.875, + 8.25, + 7.90625, + 8.28125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.875, + 4.375, + 7.96875, + 4.40625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.25, + 7.875, + 8.28125, + 7.90625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4.59375, + 7.90625, + 4.5, + 7.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.96875, + 4.5, + 7.875, + 4.53125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.62799, + 10.77, + 16.72717 + ], + "to": [ + 7.80524, + 11.02, + 16.93317 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.40724, + 10.895, + 16.80517 + ] + }, + "faces": { + "north": { + "uv": [ + 7.25, + 8.5, + 7.26563, + 8.53125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8, + 8.25, + 8.03125, + 8.28125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.5, + 7.25, + 8.51563, + 7.28125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.25, + 8, + 8.28125, + 8.03125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.39063, + 8.53125, + 7.375, + 8.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.51563, + 7.375, + 8.5, + 7.40625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.28193, + 10.98876, + 16.32717 + ], + "to": [ + 8.45918, + 11.23876, + 16.53317 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.37056, + 11.11376, + 16.43017 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 8.5, + 7.51563, + 8.53125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.125, + 8.25, + 8.15625, + 8.28125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.5, + 7.5, + 8.51563, + 7.53125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.25, + 8.125, + 8.28125, + 8.15625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.64063, + 8.53125, + 7.625, + 8.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.51563, + 7.625, + 8.5, + 7.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.60028, + 11.01482, + 16.32717 + ], + "to": [ + 8.39628, + 11.26482, + 16.53317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.75302, + 5.28536 + ] + }, + "faces": { + "north": { + "uv": [ + 4.625, + 7.875, + 4.71875, + 7.90625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.25, + 8.25, + 8.28125, + 8.28125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.875, + 4.625, + 7.96875, + 4.65625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 8.375, + 0.03125, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4.84375, + 7.90625, + 4.75, + 7.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.96875, + 4.75, + 7.875, + 4.78125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.28193, + 10.98876, + 15.92717 + ], + "to": [ + 8.45918, + 11.23876, + 16.13317 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.37056, + 11.11376, + 16.03017 + ] + }, + "faces": { + "north": { + "uv": [ + 7.75, + 8.5, + 7.76563, + 8.53125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 0, + 8.40625, + 0.03125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.5, + 7.75, + 8.51563, + 7.78125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.125, + 8.375, + 0.15625, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.89063, + 8.53125, + 7.875, + 8.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.51563, + 7.875, + 8.5, + 7.90625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.60028, + 11.01482, + 15.92717 + ], + "to": [ + 8.39628, + 11.26482, + 16.13317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.75302, + 4.88536 + ] + }, + "faces": { + "north": { + "uv": [ + 4.875, + 7.875, + 4.96875, + 7.90625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 0.125, + 8.40625, + 0.15625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.875, + 4.875, + 7.96875, + 4.90625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.25, + 8.375, + 0.28125, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5.09375, + 7.90625, + 5, + 7.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.96875, + 5, + 7.875, + 5.03125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.62799, + 10.77, + 15.92717 + ], + "to": [ + 7.80524, + 11.02, + 16.13317 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.40724, + 10.895, + 16.00517 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 8.5, + 8.01563, + 8.53125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 0.25, + 8.40625, + 0.28125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.5, + 8, + 8.51563, + 8.03125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.375, + 8.375, + 0.40625, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.14063, + 8.53125, + 8.125, + 8.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.51563, + 8.125, + 8.5, + 8.15625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.28193, + 10.98876, + 15.52717 + ], + "to": [ + 8.45918, + 11.23876, + 15.73317 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.37056, + 11.11376, + 15.63017 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 8.5, + 8.26563, + 8.53125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 0.375, + 8.40625, + 0.40625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.5, + 8.25, + 8.51563, + 8.28125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.5, + 8.375, + 0.53125, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.39063, + 8.53125, + 8.375, + 8.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.51563, + 8.375, + 8.5, + 8.40625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.60028, + 11.01482, + 15.52717 + ], + "to": [ + 8.39628, + 11.26482, + 15.73317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.75302, + 4.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 5.125, + 7.875, + 5.21875, + 7.90625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 0.5, + 8.40625, + 0.53125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5.25, + 7.875, + 5.34375, + 7.90625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.625, + 8.375, + 0.65625, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5.46875, + 7.90625, + 5.375, + 7.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.96875, + 5.375, + 7.875, + 5.40625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.62799, + 10.77, + 15.52717 + ], + "to": [ + 7.80524, + 11.02, + 15.73317 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.40724, + 10.895, + 15.60517 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 8.5, + 8.51563, + 8.53125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 0.625, + 8.40625, + 0.65625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 8.625, + 0.01563, + 8.65625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.75, + 8.375, + 0.78125, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.64063, + 0.03125, + 8.625, + 0 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.14063, + 8.625, + 0.125, + 8.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.62799, + 10.77, + 14.72717 + ], + "to": [ + 7.80524, + 11.02, + 14.93317 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.40724, + 10.895, + 14.80517 + ] + }, + "faces": { + "north": { + "uv": [ + 8.625, + 0.125, + 8.64063, + 0.15625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 0.75, + 8.40625, + 0.78125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0.25, + 8.625, + 0.26563, + 8.65625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.875, + 8.375, + 0.90625, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.64063, + 0.28125, + 8.625, + 0.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.39063, + 8.625, + 0.375, + 8.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.28193, + 10.98876, + 15.12717 + ], + "to": [ + 8.45918, + 11.23876, + 15.33317 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.37056, + 11.11376, + 15.23017 + ] + }, + "faces": { + "north": { + "uv": [ + 8.625, + 0.375, + 8.64063, + 0.40625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 0.875, + 8.40625, + 0.90625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0.5, + 8.625, + 0.51563, + 8.65625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1, + 8.375, + 1.03125, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.64063, + 0.53125, + 8.625, + 0.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.64063, + 8.625, + 0.625, + 8.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.60028, + 11.01482, + 15.12717 + ], + "to": [ + 8.39628, + 11.26482, + 15.33317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.75302, + 4.08536 + ] + }, + "faces": { + "north": { + "uv": [ + 5.5, + 7.875, + 5.59375, + 7.90625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 1, + 8.40625, + 1.03125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.875, + 5.5, + 7.96875, + 5.53125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.125, + 8.375, + 1.15625, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5.71875, + 7.90625, + 5.625, + 7.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.84375, + 7.875, + 5.75, + 7.90625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.62799, + 10.77, + 15.12717 + ], + "to": [ + 7.80524, + 11.02, + 15.33317 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.40724, + 10.895, + 15.20517 + ] + }, + "faces": { + "north": { + "uv": [ + 8.625, + 0.625, + 8.64063, + 0.65625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 1.125, + 8.40625, + 1.15625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0.75, + 8.625, + 0.76563, + 8.65625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.25, + 8.375, + 1.28125, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.64063, + 0.78125, + 8.625, + 0.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.89063, + 8.625, + 0.875, + 8.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.28193, + 10.98876, + 14.72717 + ], + "to": [ + 8.45918, + 11.23876, + 14.93317 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.37056, + 11.11376, + 14.83017 + ] + }, + "faces": { + "north": { + "uv": [ + 8.625, + 0.875, + 8.64063, + 0.90625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 1.25, + 8.40625, + 1.28125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 1, + 8.625, + 1.01563, + 8.65625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.375, + 8.375, + 1.40625, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.64063, + 1.03125, + 8.625, + 1 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.14063, + 8.625, + 1.125, + 8.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.60028, + 11.01482, + 14.72717 + ], + "to": [ + 8.39628, + 11.26482, + 14.93317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.75302, + 3.68536 + ] + }, + "faces": { + "north": { + "uv": [ + 7.875, + 5.75, + 7.96875, + 5.78125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 1.375, + 8.40625, + 1.40625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5.875, + 7.875, + 5.96875, + 7.90625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.5, + 8.375, + 1.53125, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6.09375, + 7.90625, + 6, + 7.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.21875, + 7.875, + 6.125, + 7.90625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.28193, + 10.98876, + 14.32717 + ], + "to": [ + 8.45918, + 11.23876, + 14.53317 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.37056, + 11.11376, + 14.43017 + ] + }, + "faces": { + "north": { + "uv": [ + 8.625, + 1.125, + 8.64063, + 1.15625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 1.5, + 8.40625, + 1.53125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 1.25, + 8.625, + 1.26563, + 8.65625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.625, + 8.375, + 1.65625, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.64063, + 1.28125, + 8.625, + 1.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.39063, + 8.625, + 1.375, + 8.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.60028, + 11.01482, + 14.32717 + ], + "to": [ + 8.39628, + 11.26482, + 14.53317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.75302, + 3.28536 + ] + }, + "faces": { + "north": { + "uv": [ + 7.875, + 6.125, + 7.96875, + 6.15625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 1.625, + 8.40625, + 1.65625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.875, + 6.625, + 7.96875, + 6.65625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.75, + 8.375, + 1.78125, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6.84375, + 7.90625, + 6.75, + 7.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.96875, + 7.875, + 6.875, + 7.90625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.62799, + 10.77, + 14.32717 + ], + "to": [ + 7.80524, + 11.02, + 14.53317 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.40724, + 10.895, + 14.40517 + ] + }, + "faces": { + "north": { + "uv": [ + 8.625, + 1.375, + 8.64063, + 1.40625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 1.75, + 8.40625, + 1.78125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 1.5, + 8.625, + 1.51563, + 8.65625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.875, + 8.375, + 1.90625, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.64063, + 1.53125, + 8.625, + 1.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.64063, + 8.625, + 1.625, + 8.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.28193, + 10.98876, + 13.92717 + ], + "to": [ + 8.45918, + 11.23876, + 14.13317 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.37056, + 11.11376, + 14.03017 + ] + }, + "faces": { + "north": { + "uv": [ + 8.625, + 1.625, + 8.64063, + 1.65625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 1.875, + 8.40625, + 1.90625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 1.75, + 8.625, + 1.76563, + 8.65625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2, + 8.375, + 2.03125, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.64063, + 1.78125, + 8.625, + 1.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.89063, + 8.625, + 1.875, + 8.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.60028, + 11.01482, + 13.92717 + ], + "to": [ + 8.39628, + 11.26482, + 14.13317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.75302, + 2.88536 + ] + }, + "faces": { + "north": { + "uv": [ + 7.875, + 6.875, + 7.96875, + 6.90625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 2, + 8.40625, + 2.03125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 7.875, + 7.09375, + 7.90625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.125, + 8.375, + 2.15625, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.96875, + 7.03125, + 7.875, + 7 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.21875, + 7.875, + 7.125, + 7.90625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.62799, + 10.77, + 13.92717 + ], + "to": [ + 7.80524, + 11.02, + 14.13317 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.40724, + 10.895, + 14.00517 + ] + }, + "faces": { + "north": { + "uv": [ + 8.625, + 1.875, + 8.64063, + 1.90625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 2.125, + 8.40625, + 2.15625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 2, + 8.625, + 2.01563, + 8.65625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.25, + 8.375, + 2.28125, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.64063, + 2.03125, + 8.625, + 2 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.14063, + 8.625, + 2.125, + 8.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.62799, + 10.77, + 13.12717 + ], + "to": [ + 7.80524, + 11.02, + 13.33317 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.40724, + 10.895, + 13.20517 + ] + }, + "faces": { + "north": { + "uv": [ + 8.625, + 2.125, + 8.64063, + 2.15625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 2.25, + 8.40625, + 2.28125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 2.25, + 8.625, + 2.26563, + 8.65625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.375, + 8.375, + 2.40625, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.64063, + 2.28125, + 8.625, + 2.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.39063, + 8.625, + 2.375, + 8.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.28193, + 10.98876, + 13.52717 + ], + "to": [ + 8.45918, + 11.23876, + 13.73317 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.37056, + 11.11376, + 13.63017 + ] + }, + "faces": { + "north": { + "uv": [ + 8.625, + 2.375, + 8.64063, + 2.40625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 2.375, + 8.40625, + 2.40625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 2.5, + 8.625, + 2.51563, + 8.65625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.5, + 8.375, + 2.53125, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.64063, + 2.53125, + 8.625, + 2.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.64063, + 8.625, + 2.625, + 8.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.60028, + 11.01482, + 13.52717 + ], + "to": [ + 8.39628, + 11.26482, + 13.73317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.75302, + 2.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 7.875, + 7.125, + 7.96875, + 7.15625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 2.5, + 8.40625, + 2.53125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.25, + 7.875, + 7.34375, + 7.90625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.625, + 8.375, + 2.65625, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.96875, + 7.28125, + 7.875, + 7.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.46875, + 7.875, + 7.375, + 7.90625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.62799, + 10.77, + 13.52717 + ], + "to": [ + 7.80524, + 11.02, + 13.73317 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.40724, + 10.895, + 13.60517 + ] + }, + "faces": { + "north": { + "uv": [ + 8.625, + 2.625, + 8.64063, + 2.65625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 2.625, + 8.40625, + 2.65625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 2.75, + 8.625, + 2.76563, + 8.65625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.75, + 8.375, + 2.78125, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.64063, + 2.78125, + 8.625, + 2.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.89063, + 8.625, + 2.875, + 8.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.28193, + 10.98876, + 13.12717 + ], + "to": [ + 8.45918, + 11.23876, + 13.33317 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.37056, + 11.11376, + 13.23017 + ] + }, + "faces": { + "north": { + "uv": [ + 8.625, + 2.875, + 8.64063, + 2.90625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 2.75, + 8.40625, + 2.78125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3, + 8.625, + 3.01563, + 8.65625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.875, + 8.375, + 2.90625, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.64063, + 3.03125, + 8.625, + 3 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.14063, + 8.625, + 3.125, + 8.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.60028, + 11.01482, + 13.12717 + ], + "to": [ + 8.39628, + 11.26482, + 13.33317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.75302, + 2.08536 + ] + }, + "faces": { + "north": { + "uv": [ + 7.875, + 7.375, + 7.96875, + 7.40625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 2.875, + 8.40625, + 2.90625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.5, + 7.875, + 7.59375, + 7.90625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3, + 8.375, + 3.03125, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.96875, + 7.53125, + 7.875, + 7.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.71875, + 7.875, + 7.625, + 7.90625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.28193, + 10.98876, + 12.72717 + ], + "to": [ + 8.45918, + 11.23876, + 12.93317 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.37056, + 11.11376, + 12.83017 + ] + }, + "faces": { + "north": { + "uv": [ + 8.625, + 3.125, + 8.64063, + 3.15625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 3, + 8.40625, + 3.03125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3.25, + 8.625, + 3.26563, + 8.65625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.125, + 8.375, + 3.15625, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.64063, + 3.28125, + 8.625, + 3.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.39063, + 8.625, + 3.375, + 8.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.60028, + 11.01482, + 12.72717 + ], + "to": [ + 8.39628, + 11.26482, + 12.93317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.75302, + 1.68536 + ] + }, + "faces": { + "north": { + "uv": [ + 7.75, + 7.875, + 7.84375, + 7.90625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 3.125, + 8.40625, + 3.15625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.875, + 7.875, + 7.96875, + 7.90625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.25, + 8.375, + 3.28125, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0.09375, + 8.03125, + 0, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.21875, + 8, + 0.125, + 8.03125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.62799, + 10.77, + 12.72717 + ], + "to": [ + 7.80524, + 11.02, + 12.93317 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.40724, + 10.895, + 12.80517 + ] + }, + "faces": { + "north": { + "uv": [ + 8.625, + 3.375, + 8.64063, + 3.40625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 3.25, + 8.40625, + 3.28125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3.5, + 8.625, + 3.51563, + 8.65625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.375, + 8.375, + 3.40625, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.64063, + 3.53125, + 8.625, + 3.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.64063, + 8.625, + 3.625, + 8.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.28193, + 10.98876, + 12.32717 + ], + "to": [ + 8.45918, + 11.23876, + 12.53317 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.37056, + 11.11376, + 12.43017 + ] + }, + "faces": { + "north": { + "uv": [ + 8.625, + 3.625, + 8.64063, + 3.65625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 3.375, + 8.40625, + 3.40625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3.75, + 8.625, + 3.76563, + 8.65625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.5, + 8.375, + 3.53125, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.64063, + 3.78125, + 8.625, + 3.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.89063, + 8.625, + 3.875, + 8.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.60028, + 11.01482, + 12.32717 + ], + "to": [ + 8.39628, + 11.26482, + 12.53317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.75302, + 1.28536 + ] + }, + "faces": { + "north": { + "uv": [ + 0.25, + 8, + 0.34375, + 8.03125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 3.5, + 8.40625, + 3.53125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 0.25, + 8.09375, + 0.28125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.625, + 8.375, + 3.65625, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0.46875, + 8.03125, + 0.375, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.59375, + 8, + 0.5, + 8.03125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.62799, + 10.77, + 12.32717 + ], + "to": [ + 7.80524, + 11.02, + 12.53317 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.40724, + 10.895, + 12.40517 + ] + }, + "faces": { + "north": { + "uv": [ + 8.625, + 3.875, + 8.64063, + 3.90625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 3.625, + 8.40625, + 3.65625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 4, + 8.625, + 4.01563, + 8.65625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.75, + 8.375, + 3.78125, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.64063, + 4.03125, + 8.625, + 4 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.14063, + 8.625, + 4.125, + 8.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.62799, + 10.77, + 11.52717 + ], + "to": [ + 7.80524, + 11.02, + 11.73317 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.40724, + 10.895, + 11.60517 + ] + }, + "faces": { + "north": { + "uv": [ + 8.625, + 4.125, + 8.64063, + 4.15625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 3.75, + 8.40625, + 3.78125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 4.25, + 8.625, + 4.26563, + 8.65625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.875, + 8.375, + 3.90625, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.64063, + 4.28125, + 8.625, + 4.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.39063, + 8.625, + 4.375, + 8.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.28193, + 10.98876, + 11.92717 + ], + "to": [ + 8.45918, + 11.23876, + 12.13317 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.37056, + 11.11376, + 12.03017 + ] + }, + "faces": { + "north": { + "uv": [ + 8.625, + 4.375, + 8.64063, + 4.40625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 3.875, + 8.40625, + 3.90625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 4.5, + 8.625, + 4.51563, + 8.65625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4, + 8.375, + 4.03125, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.64063, + 4.53125, + 8.625, + 4.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.64063, + 8.625, + 4.625, + 8.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.60028, + 11.01482, + 11.92717 + ], + "to": [ + 8.39628, + 11.26482, + 12.13317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.75302, + 0.88536 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 0.5, + 8.09375, + 0.53125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 4, + 8.40625, + 4.03125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0.625, + 8, + 0.71875, + 8.03125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.125, + 8.375, + 4.15625, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.09375, + 0.65625, + 8, + 0.625 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.84375, + 8, + 0.75, + 8.03125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.62799, + 10.77, + 11.92717 + ], + "to": [ + 7.80524, + 11.02, + 12.13317 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.40724, + 10.895, + 12.00517 + ] + }, + "faces": { + "north": { + "uv": [ + 8.625, + 4.625, + 8.64063, + 4.65625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 4.125, + 8.40625, + 4.15625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 4.75, + 8.625, + 4.76563, + 8.65625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.25, + 8.375, + 4.28125, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.64063, + 4.78125, + 8.625, + 4.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.89063, + 8.625, + 4.875, + 8.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.28193, + 10.98876, + 11.52717 + ], + "to": [ + 8.45918, + 11.23876, + 11.73317 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.37056, + 11.11376, + 11.63017 + ] + }, + "faces": { + "north": { + "uv": [ + 8.625, + 4.875, + 8.64063, + 4.90625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 4.25, + 8.40625, + 4.28125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5, + 8.625, + 5.01563, + 8.65625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.375, + 8.375, + 4.40625, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.64063, + 5.03125, + 8.625, + 5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.14063, + 8.625, + 5.125, + 8.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.60028, + 11.01482, + 11.52717 + ], + "to": [ + 8.39628, + 11.26482, + 11.73317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.75302, + 0.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 0.75, + 8.09375, + 0.78125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 4.375, + 8.40625, + 4.40625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0.875, + 8, + 0.96875, + 8.03125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.5, + 8.375, + 4.53125, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.09375, + 0.90625, + 8, + 0.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.09375, + 8, + 1, + 8.03125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.28193, + 10.98876, + 11.12717 + ], + "to": [ + 8.45918, + 11.23876, + 11.33317 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.37056, + 11.11376, + 11.23017 + ] + }, + "faces": { + "north": { + "uv": [ + 8.625, + 5.125, + 8.64063, + 5.15625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 4.5, + 8.40625, + 4.53125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5.25, + 8.625, + 5.26563, + 8.65625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.625, + 8.375, + 4.65625, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.64063, + 5.28125, + 8.625, + 5.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.39063, + 8.625, + 5.375, + 8.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.60028, + 11.01482, + 11.12717 + ], + "to": [ + 8.39628, + 11.26482, + 11.33317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.75302, + 0.08536 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 1, + 8.09375, + 1.03125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 4.625, + 8.40625, + 4.65625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 1.125, + 8, + 1.21875, + 8.03125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.75, + 8.375, + 4.78125, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.09375, + 1.15625, + 8, + 1.125 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.34375, + 8, + 1.25, + 8.03125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.62799, + 10.77, + 11.12717 + ], + "to": [ + 7.80524, + 11.02, + 11.33317 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.40724, + 10.895, + 11.20517 + ] + }, + "faces": { + "north": { + "uv": [ + 8.625, + 5.375, + 8.64063, + 5.40625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 4.75, + 8.40625, + 4.78125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5.5, + 8.625, + 5.51563, + 8.65625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.875, + 8.375, + 4.90625, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.64063, + 5.53125, + 8.625, + 5.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.64063, + 8.625, + 5.625, + 8.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.28193, + 10.98876, + 10.72717 + ], + "to": [ + 8.45918, + 11.23876, + 10.93317 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.37056, + 11.11376, + 10.83017 + ] + }, + "faces": { + "north": { + "uv": [ + 8.625, + 5.625, + 8.64063, + 5.65625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 4.875, + 8.40625, + 4.90625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5.75, + 8.625, + 5.76563, + 8.65625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5, + 8.375, + 5.03125, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.64063, + 5.78125, + 8.625, + 5.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.89063, + 8.625, + 5.875, + 8.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.60028, + 11.01482, + 10.72717 + ], + "to": [ + 8.39628, + 11.26482, + 10.93317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.75302, + -0.31464 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 1.25, + 8.09375, + 1.28125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 5, + 8.40625, + 5.03125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 1.375, + 8, + 1.46875, + 8.03125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.125, + 8.375, + 5.15625, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.09375, + 1.40625, + 8, + 1.375 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.59375, + 8, + 1.5, + 8.03125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.62799, + 10.77, + 10.72717 + ], + "to": [ + 7.80524, + 11.02, + 10.93317 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.40724, + 10.895, + 10.80517 + ] + }, + "faces": { + "north": { + "uv": [ + 8.625, + 5.875, + 8.64063, + 5.90625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 5.125, + 8.40625, + 5.15625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 6, + 8.625, + 6.01563, + 8.65625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.25, + 8.375, + 5.28125, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.64063, + 6.03125, + 8.625, + 6 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.14063, + 8.625, + 6.125, + 8.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.62799, + 10.77, + 9.92717 + ], + "to": [ + 7.80524, + 11.02, + 10.13317 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.40724, + 10.895, + 10.00517 + ] + }, + "faces": { + "north": { + "uv": [ + 8.625, + 6.125, + 8.64063, + 6.15625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 5.25, + 8.40625, + 5.28125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 6.25, + 8.625, + 6.26563, + 8.65625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.375, + 8.375, + 5.40625, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.64063, + 6.28125, + 8.625, + 6.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.39063, + 8.625, + 6.375, + 8.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.28193, + 10.98876, + 10.32717 + ], + "to": [ + 8.45918, + 11.23876, + 10.53317 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.37056, + 11.11376, + 10.43017 + ] + }, + "faces": { + "north": { + "uv": [ + 8.625, + 6.375, + 8.64063, + 6.40625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 5.375, + 8.40625, + 5.40625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 6.5, + 8.625, + 6.51563, + 8.65625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.5, + 8.375, + 5.53125, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.64063, + 6.53125, + 8.625, + 6.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.64063, + 8.625, + 6.625, + 8.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.60028, + 11.01482, + 10.32717 + ], + "to": [ + 8.39628, + 11.26482, + 10.53317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.75302, + -0.71464 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 1.5, + 8.09375, + 1.53125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 5.5, + 8.40625, + 5.53125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 1.625, + 8, + 1.71875, + 8.03125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.625, + 8.375, + 5.65625, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.09375, + 1.65625, + 8, + 1.625 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.84375, + 8, + 1.75, + 8.03125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.62799, + 10.77, + 10.32717 + ], + "to": [ + 7.80524, + 11.02, + 10.53317 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.40724, + 10.895, + 10.40517 + ] + }, + "faces": { + "north": { + "uv": [ + 8.625, + 6.625, + 8.64063, + 6.65625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 5.625, + 8.40625, + 5.65625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 6.75, + 8.625, + 6.76563, + 8.65625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.75, + 8.375, + 5.78125, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.64063, + 6.78125, + 8.625, + 6.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.89063, + 8.625, + 6.875, + 8.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.28193, + 10.98876, + 9.92717 + ], + "to": [ + 8.45918, + 11.23876, + 10.13317 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.37056, + 11.11376, + 10.03017 + ] + }, + "faces": { + "north": { + "uv": [ + 8.625, + 6.875, + 8.64063, + 6.90625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 5.75, + 8.40625, + 5.78125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 8.625, + 7.01563, + 8.65625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.875, + 8.375, + 5.90625, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.64063, + 7.03125, + 8.625, + 7 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.14063, + 8.625, + 7.125, + 8.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.60028, + 11.01482, + 9.92717 + ], + "to": [ + 8.39628, + 11.26482, + 10.13317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.75302, + -1.11464 + ] + }, + "faces": { + "north": { + "uv": [ + 1.875, + 8, + 1.96875, + 8.03125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 5.875, + 8.40625, + 5.90625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 1.875, + 8.09375, + 1.90625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6, + 8.375, + 6.03125, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2.09375, + 8.03125, + 2, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.09375, + 2, + 8, + 2.03125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.28193, + 10.98876, + 9.52717 + ], + "to": [ + 8.45918, + 11.23876, + 9.73317 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.37056, + 11.11376, + 9.63017 + ] + }, + "faces": { + "north": { + "uv": [ + 8.625, + 7.125, + 8.64063, + 7.15625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 6, + 8.40625, + 6.03125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.25, + 8.625, + 7.26563, + 8.65625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.125, + 8.375, + 6.15625, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.64063, + 7.28125, + 8.625, + 7.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.39063, + 8.625, + 7.375, + 8.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.60028, + 11.01482, + 9.52717 + ], + "to": [ + 8.39628, + 11.26482, + 9.73317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.75302, + -1.51464 + ] + }, + "faces": { + "north": { + "uv": [ + 2.125, + 8, + 2.21875, + 8.03125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 6.125, + 8.40625, + 6.15625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 2.25, + 8, + 2.34375, + 8.03125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.25, + 8.375, + 6.28125, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2.46875, + 8.03125, + 2.375, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.59375, + 8, + 2.5, + 8.03125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.62799, + 10.77, + 9.52717 + ], + "to": [ + 7.80524, + 11.02, + 9.73317 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.40724, + 10.895, + 9.60517 + ] + }, + "faces": { + "north": { + "uv": [ + 8.625, + 7.375, + 8.64063, + 7.40625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 6.25, + 8.40625, + 6.28125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.5, + 8.625, + 7.51563, + 8.65625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.375, + 8.375, + 6.40625, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.64063, + 7.53125, + 8.625, + 7.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.64063, + 8.625, + 7.625, + 8.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.28193, + 10.98876, + 9.12717 + ], + "to": [ + 8.45918, + 11.23876, + 9.33317 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.37056, + 11.11376, + 9.23017 + ] + }, + "faces": { + "north": { + "uv": [ + 8.625, + 7.625, + 8.64063, + 7.65625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 6.375, + 8.40625, + 6.40625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.75, + 8.625, + 7.76563, + 8.65625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.5, + 8.375, + 6.53125, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.64063, + 7.78125, + 8.625, + 7.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.89063, + 8.625, + 7.875, + 8.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.60028, + 11.01482, + 9.12717 + ], + "to": [ + 8.39628, + 11.26482, + 9.33317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.75302, + -1.91464 + ] + }, + "faces": { + "north": { + "uv": [ + 2.625, + 8, + 2.71875, + 8.03125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 6.5, + 8.40625, + 6.53125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 2.75, + 8, + 2.84375, + 8.03125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.625, + 8.375, + 6.65625, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2.96875, + 8.03125, + 2.875, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.09375, + 2.875, + 8, + 2.90625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.62799, + 10.77, + 9.12717 + ], + "to": [ + 7.80524, + 11.02, + 9.33317 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.40724, + 10.895, + 9.20517 + ] + }, + "faces": { + "north": { + "uv": [ + 8.625, + 7.875, + 8.64063, + 7.90625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 6.625, + 8.40625, + 6.65625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 8.625, + 8.01563, + 8.65625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.75, + 8.375, + 6.78125, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.64063, + 8.03125, + 8.625, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.14063, + 8.625, + 8.125, + 8.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.62799, + 10.77, + 8.32717 + ], + "to": [ + 7.80524, + 11.02, + 8.53317 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.40724, + 10.895, + 8.40517 + ] + }, + "faces": { + "north": { + "uv": [ + 8.625, + 8.125, + 8.64063, + 8.15625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 6.75, + 8.40625, + 6.78125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.25, + 8.625, + 8.26563, + 8.65625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.875, + 8.375, + 6.90625, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.64063, + 8.28125, + 8.625, + 8.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.39063, + 8.625, + 8.375, + 8.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.28193, + 10.98876, + 8.72717 + ], + "to": [ + 8.45918, + 11.23876, + 8.93317 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.37056, + 11.11376, + 8.83017 + ] + }, + "faces": { + "north": { + "uv": [ + 8.625, + 8.375, + 8.64063, + 8.40625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 6.875, + 8.40625, + 6.90625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.5, + 8.625, + 8.51563, + 8.65625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7, + 8.375, + 7.03125, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.64063, + 8.53125, + 8.625, + 8.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.64063, + 8.625, + 8.625, + 8.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.60028, + 11.01482, + 8.72717 + ], + "to": [ + 8.39628, + 11.26482, + 8.93317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.75302, + -2.31464 + ] + }, + "faces": { + "north": { + "uv": [ + 3, + 8, + 3.09375, + 8.03125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 7, + 8.40625, + 7.03125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 3, + 8.09375, + 3.03125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.125, + 8.375, + 7.15625, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 3.21875, + 8.03125, + 3.125, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.09375, + 3.125, + 8, + 3.15625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.62799, + 10.77, + 8.72717 + ], + "to": [ + 7.80524, + 11.02, + 8.93317 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.40724, + 10.895, + 8.80517 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 8.75, + 0.01563, + 8.78125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 7.125, + 8.40625, + 7.15625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.75, + 0, + 8.76563, + 0.03125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.25, + 8.375, + 7.28125, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0.14063, + 8.78125, + 0.125, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.76563, + 0.125, + 8.75, + 0.15625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.28193, + 10.98876, + 8.32717 + ], + "to": [ + 8.45918, + 11.23876, + 8.53317 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.37056, + 11.11376, + 8.43017 + ] + }, + "faces": { + "north": { + "uv": [ + 0.25, + 8.75, + 0.26563, + 8.78125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 7.25, + 8.40625, + 7.28125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.75, + 0.25, + 8.76563, + 0.28125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.375, + 8.375, + 7.40625, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0.39063, + 8.78125, + 0.375, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.76563, + 0.375, + 8.75, + 0.40625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.60028, + 11.01482, + 8.32717 + ], + "to": [ + 8.39628, + 11.26482, + 8.53317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.75302, + -2.71464 + ] + }, + "faces": { + "north": { + "uv": [ + 3.25, + 8, + 3.34375, + 8.03125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 7.375, + 8.40625, + 7.40625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 3.25, + 8.09375, + 3.28125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.5, + 8.375, + 7.53125, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 3.46875, + 8.03125, + 3.375, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.09375, + 3.375, + 8, + 3.40625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.28193, + 10.98876, + 7.92717 + ], + "to": [ + 8.45918, + 11.23876, + 8.13317 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.37056, + 11.11376, + 8.03017 + ] + }, + "faces": { + "north": { + "uv": [ + 0.5, + 8.75, + 0.51563, + 8.78125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 7.5, + 8.40625, + 7.53125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.75, + 0.5, + 8.76563, + 0.53125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.625, + 8.375, + 7.65625, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0.64063, + 8.78125, + 0.625, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.76563, + 0.625, + 8.75, + 0.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.60028, + 11.01482, + 7.92717 + ], + "to": [ + 8.39628, + 11.26482, + 8.13317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.75302, + -3.11464 + ] + }, + "faces": { + "north": { + "uv": [ + 3.5, + 8, + 3.59375, + 8.03125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 7.625, + 8.40625, + 7.65625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 3.5, + 8.09375, + 3.53125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.75, + 8.375, + 7.78125, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 3.71875, + 8.03125, + 3.625, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.09375, + 3.625, + 8, + 3.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.62799, + 10.77, + 7.92717 + ], + "to": [ + 7.80524, + 11.02, + 8.13317 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.40724, + 10.895, + 8.00517 + ] + }, + "faces": { + "north": { + "uv": [ + 0.75, + 8.75, + 0.76563, + 8.78125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 7.75, + 8.40625, + 7.78125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.75, + 0.75, + 8.76563, + 0.78125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.875, + 8.375, + 7.90625, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0.89063, + 8.78125, + 0.875, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.76563, + 0.875, + 8.75, + 0.90625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.28193, + 10.98876, + 7.52717 + ], + "to": [ + 8.45918, + 11.23876, + 7.73317 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.37056, + 11.11376, + 7.63017 + ] + }, + "faces": { + "north": { + "uv": [ + 1, + 8.75, + 1.01563, + 8.78125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 7.875, + 8.40625, + 7.90625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.75, + 1, + 8.76563, + 1.03125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8, + 8.375, + 8.03125, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 1.14063, + 8.78125, + 1.125, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.76563, + 1.125, + 8.75, + 1.15625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.60028, + 11.01482, + 7.52717 + ], + "to": [ + 8.39628, + 11.26482, + 7.73317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.75302, + -3.51464 + ] + }, + "faces": { + "north": { + "uv": [ + 3.75, + 8, + 3.84375, + 8.03125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 8, + 8.40625, + 8.03125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 3.75, + 8.09375, + 3.78125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.125, + 8.375, + 8.15625, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 3.96875, + 8.03125, + 3.875, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.09375, + 3.875, + 8, + 3.90625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.62799, + 10.77, + 7.52717 + ], + "to": [ + 7.80524, + 11.02, + 7.73317 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.40724, + 10.895, + 7.60517 + ] + }, + "faces": { + "north": { + "uv": [ + 1.25, + 8.75, + 1.26563, + 8.78125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 8.125, + 8.40625, + 8.15625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.75, + 1.25, + 8.76563, + 1.28125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.25, + 8.375, + 8.28125, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 1.39063, + 8.78125, + 1.375, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.76563, + 1.375, + 8.75, + 1.40625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.62799, + 10.77, + 6.72717 + ], + "to": [ + 7.80524, + 11.02, + 6.93317 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.40724, + 10.895, + 6.80517 + ] + }, + "faces": { + "north": { + "uv": [ + 1.5, + 8.75, + 1.51563, + 8.78125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 8.25, + 8.40625, + 8.28125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.75, + 1.5, + 8.76563, + 1.53125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.375, + 8.375, + 8.40625, + 8.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 1.64063, + 8.78125, + 1.625, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.76563, + 1.625, + 8.75, + 1.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.28193, + 10.98876, + 7.12717 + ], + "to": [ + 8.45918, + 11.23876, + 7.33317 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.37056, + 11.11376, + 7.23017 + ] + }, + "faces": { + "north": { + "uv": [ + 1.75, + 8.75, + 1.76563, + 8.78125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 8.5, + 0.03125, + 8.53125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.75, + 1.75, + 8.76563, + 1.78125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 0, + 8.53125, + 0.03125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 1.89063, + 8.78125, + 1.875, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.76563, + 1.875, + 8.75, + 1.90625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.60028, + 11.01482, + 7.12717 + ], + "to": [ + 8.39628, + 11.26482, + 7.33317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.75302, + -3.91464 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 8, + 4.09375, + 8.03125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.125, + 8.5, + 0.15625, + 8.53125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 4, + 8.09375, + 4.03125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 0.125, + 8.53125, + 0.15625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4.21875, + 8.03125, + 4.125, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.09375, + 4.125, + 8, + 4.15625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.62799, + 10.77, + 7.12717 + ], + "to": [ + 7.80524, + 11.02, + 7.33317 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.40724, + 10.895, + 7.20517 + ] + }, + "faces": { + "north": { + "uv": [ + 2, + 8.75, + 2.01563, + 8.78125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.25, + 8.5, + 0.28125, + 8.53125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.75, + 2, + 8.76563, + 2.03125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 0.25, + 8.53125, + 0.28125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2.14063, + 8.78125, + 2.125, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.76563, + 2.125, + 8.75, + 2.15625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.28193, + 10.98876, + 6.72717 + ], + "to": [ + 8.45918, + 11.23876, + 6.93317 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.37056, + 11.11376, + 6.83017 + ] + }, + "faces": { + "north": { + "uv": [ + 2.25, + 8.75, + 2.26563, + 8.78125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.375, + 8.5, + 0.40625, + 8.53125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.75, + 2.25, + 8.76563, + 2.28125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 0.375, + 8.53125, + 0.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2.39063, + 8.78125, + 2.375, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.76563, + 2.375, + 8.75, + 2.40625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.60028, + 11.01482, + 6.72717 + ], + "to": [ + 8.39628, + 11.26482, + 6.93317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.75302, + -4.31464 + ] + }, + "faces": { + "north": { + "uv": [ + 4.25, + 8, + 4.34375, + 8.03125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.5, + 8.5, + 0.53125, + 8.53125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 4.25, + 8.09375, + 4.28125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 0.5, + 8.53125, + 0.53125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4.46875, + 8.03125, + 4.375, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.09375, + 4.375, + 8, + 4.40625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.28193, + 10.98876, + 6.32717 + ], + "to": [ + 8.45918, + 11.23876, + 6.53317 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.37056, + 11.11376, + 6.43017 + ] + }, + "faces": { + "north": { + "uv": [ + 2.5, + 8.75, + 2.51563, + 8.78125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.625, + 8.5, + 0.65625, + 8.53125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.75, + 2.5, + 8.76563, + 2.53125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 0.625, + 8.53125, + 0.65625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2.64063, + 8.78125, + 2.625, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.76563, + 2.625, + 8.75, + 2.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.60028, + 11.01482, + 6.32717 + ], + "to": [ + 8.39628, + 11.26482, + 6.53317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.75302, + -4.71464 + ] + }, + "faces": { + "north": { + "uv": [ + 4.5, + 8, + 4.59375, + 8.03125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.75, + 8.5, + 0.78125, + 8.53125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 4.5, + 8.09375, + 4.53125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 0.75, + 8.53125, + 0.78125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4.71875, + 8.03125, + 4.625, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.09375, + 4.625, + 8, + 4.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.62799, + 10.77, + 6.32717 + ], + "to": [ + 7.80524, + 11.02, + 6.53317 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.40724, + 10.895, + 6.40517 + ] + }, + "faces": { + "north": { + "uv": [ + 2.75, + 8.75, + 2.76563, + 8.78125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.875, + 8.5, + 0.90625, + 8.53125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.75, + 2.75, + 8.76563, + 2.78125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 0.875, + 8.53125, + 0.90625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2.89063, + 8.78125, + 2.875, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.76563, + 2.875, + 8.75, + 2.90625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.28193, + 10.98876, + 5.92717 + ], + "to": [ + 8.45918, + 11.23876, + 6.13317 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.37056, + 11.11376, + 6.03017 + ] + }, + "faces": { + "north": { + "uv": [ + 3, + 8.75, + 3.01563, + 8.78125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1, + 8.5, + 1.03125, + 8.53125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.75, + 3, + 8.76563, + 3.03125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 1, + 8.53125, + 1.03125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 3.14063, + 8.78125, + 3.125, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.76563, + 3.125, + 8.75, + 3.15625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.60028, + 11.01482, + 5.92717 + ], + "to": [ + 8.39628, + 11.26482, + 6.13317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.75302, + -5.11464 + ] + }, + "faces": { + "north": { + "uv": [ + 4.75, + 8, + 4.84375, + 8.03125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.125, + 8.5, + 1.15625, + 8.53125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 4.75, + 8.09375, + 4.78125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 1.125, + 8.53125, + 1.15625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4.96875, + 8.03125, + 4.875, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.09375, + 4.875, + 8, + 4.90625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.62799, + 10.77, + 5.92717 + ], + "to": [ + 7.80524, + 11.02, + 6.13317 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.40724, + 10.895, + 6.00517 + ] + }, + "faces": { + "north": { + "uv": [ + 3.25, + 8.75, + 3.26563, + 8.78125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.25, + 8.5, + 1.28125, + 8.53125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.75, + 3.25, + 8.76563, + 3.28125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 1.25, + 8.53125, + 1.28125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 3.39063, + 8.78125, + 3.375, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.76563, + 3.375, + 8.75, + 3.40625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.62799, + 10.77, + 5.12717 + ], + "to": [ + 7.80524, + 11.02, + 5.33317 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.40724, + 10.895, + 5.20517 + ] + }, + "faces": { + "north": { + "uv": [ + 3.5, + 8.75, + 3.51563, + 8.78125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.375, + 8.5, + 1.40625, + 8.53125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.75, + 3.5, + 8.76563, + 3.53125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 1.375, + 8.53125, + 1.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 3.64063, + 8.78125, + 3.625, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.76563, + 3.625, + 8.75, + 3.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.28193, + 10.98876, + 5.52717 + ], + "to": [ + 8.45918, + 11.23876, + 5.73317 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.37056, + 11.11376, + 5.63017 + ] + }, + "faces": { + "north": { + "uv": [ + 3.75, + 8.75, + 3.76563, + 8.78125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.5, + 8.5, + 1.53125, + 8.53125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.75, + 3.75, + 8.76563, + 3.78125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 1.5, + 8.53125, + 1.53125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 3.89063, + 8.78125, + 3.875, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.76563, + 3.875, + 8.75, + 3.90625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.60028, + 11.01482, + 5.52717 + ], + "to": [ + 8.39628, + 11.26482, + 5.73317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.75302, + -5.51464 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 8, + 5.09375, + 8.03125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.625, + 8.5, + 1.65625, + 8.53125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 5, + 8.09375, + 5.03125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 1.625, + 8.53125, + 1.65625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5.21875, + 8.03125, + 5.125, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.09375, + 5.125, + 8, + 5.15625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.62799, + 10.77, + 5.52717 + ], + "to": [ + 7.80524, + 11.02, + 5.73317 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.40724, + 10.895, + 5.60517 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 8.75, + 4.01563, + 8.78125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.75, + 8.5, + 1.78125, + 8.53125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.75, + 4, + 8.76563, + 4.03125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 1.75, + 8.53125, + 1.78125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4.14063, + 8.78125, + 4.125, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.76563, + 4.125, + 8.75, + 4.15625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.28193, + 10.98876, + 5.12717 + ], + "to": [ + 8.45918, + 11.23876, + 5.33317 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.37056, + 11.11376, + 5.23017 + ] + }, + "faces": { + "north": { + "uv": [ + 4.25, + 8.75, + 4.26563, + 8.78125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.875, + 8.5, + 1.90625, + 8.53125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.75, + 4.25, + 8.76563, + 4.28125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 1.875, + 8.53125, + 1.90625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4.39063, + 8.78125, + 4.375, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.76563, + 4.375, + 8.75, + 4.40625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.60028, + 11.01482, + 5.12717 + ], + "to": [ + 8.39628, + 11.26482, + 5.33317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.75302, + -5.91464 + ] + }, + "faces": { + "north": { + "uv": [ + 5.25, + 8, + 5.34375, + 8.03125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2, + 8.5, + 2.03125, + 8.53125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 5.25, + 8.09375, + 5.28125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 2, + 8.53125, + 2.03125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5.46875, + 8.03125, + 5.375, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.09375, + 5.375, + 8, + 5.40625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.62799, + 10.77, + 3.52717 + ], + "to": [ + 7.80524, + 11.02, + 3.73317 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.40724, + 10.895, + 3.60517 + ] + }, + "faces": { + "north": { + "uv": [ + 4.5, + 8.75, + 4.51563, + 8.78125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.125, + 8.5, + 2.15625, + 8.53125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.75, + 4.5, + 8.76563, + 4.53125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 2.125, + 8.53125, + 2.15625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4.64063, + 8.78125, + 4.625, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.76563, + 4.625, + 8.75, + 4.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.60028, + 11.01482, + 3.52717 + ], + "to": [ + 8.39628, + 11.26482, + 3.73317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.75302, + -7.51464 + ] + }, + "faces": { + "north": { + "uv": [ + 5.5, + 8, + 5.59375, + 8.03125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.25, + 8.5, + 2.28125, + 8.53125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 5.5, + 8.09375, + 5.53125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 2.25, + 8.53125, + 2.28125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5.71875, + 8.03125, + 5.625, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.09375, + 5.625, + 8, + 5.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.28193, + 10.98876, + 3.52717 + ], + "to": [ + 8.45918, + 11.23876, + 3.73317 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.37056, + 11.11376, + 3.63017 + ] + }, + "faces": { + "north": { + "uv": [ + 4.75, + 8.75, + 4.76563, + 8.78125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.375, + 8.5, + 2.40625, + 8.53125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.75, + 4.75, + 8.76563, + 4.78125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 2.375, + 8.53125, + 2.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4.89063, + 8.78125, + 4.875, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.76563, + 4.875, + 8.75, + 4.90625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.62799, + 10.77, + 3.92717 + ], + "to": [ + 7.80524, + 11.02, + 4.13317 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.40724, + 10.895, + 4.00517 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 8.75, + 5.01563, + 8.78125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.5, + 8.5, + 2.53125, + 8.53125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.75, + 5, + 8.76563, + 5.03125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 2.5, + 8.53125, + 2.53125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5.14063, + 8.78125, + 5.125, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.76563, + 5.125, + 8.75, + 5.15625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.60028, + 11.01482, + 3.92717 + ], + "to": [ + 8.39628, + 11.26482, + 4.13317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.75302, + -7.11464 + ] + }, + "faces": { + "north": { + "uv": [ + 5.75, + 8, + 5.84375, + 8.03125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.625, + 8.5, + 2.65625, + 8.53125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 5.75, + 8.09375, + 5.78125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 2.625, + 8.53125, + 2.65625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5.96875, + 8.03125, + 5.875, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.09375, + 5.875, + 8, + 5.90625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.28193, + 10.98876, + 3.92717 + ], + "to": [ + 8.45918, + 11.23876, + 4.13317 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.37056, + 11.11376, + 4.03017 + ] + }, + "faces": { + "north": { + "uv": [ + 5.25, + 8.75, + 5.26563, + 8.78125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.75, + 8.5, + 2.78125, + 8.53125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.75, + 5.25, + 8.76563, + 5.28125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 2.75, + 8.53125, + 2.78125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5.39063, + 8.78125, + 5.375, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.76563, + 5.375, + 8.75, + 5.40625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.62799, + 10.77, + 4.32717 + ], + "to": [ + 7.80524, + 11.02, + 4.53317 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.40724, + 10.895, + 4.40517 + ] + }, + "faces": { + "north": { + "uv": [ + 5.5, + 8.75, + 5.51563, + 8.78125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.875, + 8.5, + 2.90625, + 8.53125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.75, + 5.5, + 8.76563, + 5.53125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 2.875, + 8.53125, + 2.90625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5.64063, + 8.78125, + 5.625, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.76563, + 5.625, + 8.75, + 5.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.60028, + 11.01482, + 4.32717 + ], + "to": [ + 8.39628, + 11.26482, + 4.53317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.75302, + -6.71464 + ] + }, + "faces": { + "north": { + "uv": [ + 6, + 8, + 6.09375, + 8.03125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3, + 8.5, + 3.03125, + 8.53125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 6, + 8.09375, + 6.03125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 3, + 8.53125, + 3.03125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6.21875, + 8.03125, + 6.125, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.09375, + 6.125, + 8, + 6.15625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.28193, + 10.98876, + 4.32717 + ], + "to": [ + 8.45918, + 11.23876, + 4.53317 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.37056, + 11.11376, + 4.43017 + ] + }, + "faces": { + "north": { + "uv": [ + 5.75, + 8.75, + 5.76563, + 8.78125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.125, + 8.5, + 3.15625, + 8.53125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.75, + 5.75, + 8.76563, + 5.78125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 3.125, + 8.53125, + 3.15625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5.89063, + 8.78125, + 5.875, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.76563, + 5.875, + 8.75, + 5.90625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.60028, + 11.01482, + 4.72717 + ], + "to": [ + 8.39628, + 11.26482, + 4.93317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.75302, + -6.31464 + ] + }, + "faces": { + "north": { + "uv": [ + 6.25, + 8, + 6.34375, + 8.03125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.25, + 8.5, + 3.28125, + 8.53125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 6.25, + 8.09375, + 6.28125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 3.25, + 8.53125, + 3.28125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6.46875, + 8.03125, + 6.375, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.09375, + 6.375, + 8, + 6.40625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.28193, + 10.98876, + 4.72717 + ], + "to": [ + 8.45918, + 11.23876, + 4.93317 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.37056, + 11.11376, + 4.83017 + ] + }, + "faces": { + "north": { + "uv": [ + 6, + 8.75, + 6.01563, + 8.78125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.375, + 8.5, + 3.40625, + 8.53125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.75, + 6, + 8.76563, + 6.03125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 3.375, + 8.53125, + 3.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6.14063, + 8.78125, + 6.125, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.76563, + 6.125, + 8.75, + 6.15625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.62799, + 10.77, + 4.72717 + ], + "to": [ + 7.80524, + 11.02, + 4.93317 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.40724, + 10.895, + 4.80517 + ] + }, + "faces": { + "north": { + "uv": [ + 6.25, + 8.75, + 6.26563, + 8.78125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.5, + 8.5, + 3.53125, + 8.53125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.75, + 6.25, + 8.76563, + 6.28125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 3.5, + 8.53125, + 3.53125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6.39063, + 8.78125, + 6.375, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.76563, + 6.375, + 8.75, + 6.40625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.92078, + 9.56532, + 2.81467 + ], + "to": [ + 8.01828, + 10.64532, + 10.71067 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 2.375, + 6.75, + 2.51563, + 6.89063 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.125, + 1.25, + 5.10938, + 1.39063 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 4.125, + 6.75, + 4.26563, + 6.89063 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.125, + 4, + 5.10938, + 4.14063 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 1.39063, + 5.23438, + 1.25, + 4.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.26563, + 4.25, + 4.125, + 5.23438 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.01828, + 9.56532, + 2.81467 + ], + "to": [ + 9.07828, + 10.64532, + 7.61067 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 1.875, + 6.875, + 2, + 7.01563 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5, + 2.75, + 5.59375, + 2.89063 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 2.875, + 6.875, + 3, + 7.01563 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5, + 3.625, + 5.59375, + 3.76563 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 3.375, + 5.84375, + 3.25, + 5.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.25, + 5.25, + 4.125, + 5.84375 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.41828, + 10.31532, + 7.61067 + ], + "to": [ + 9.07828, + 10.64532, + 10.71917 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 7.375, + 0.125, + 7.57813, + 0.17188 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.125, + 6.875, + 3.51563, + 6.92188 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0.375, + 7.375, + 0.57813, + 7.42188 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.5, + 6.875, + 6.89063, + 6.92188 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 1.57813, + 5.64063, + 1.375, + 5.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.82813, + 5.25, + 1.625, + 5.64063 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.41828, + 9.89782, + 7.61067 + ], + "to": [ + 8.32828, + 10.31532, + 10.71917 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 1.75, + 7.625, + 1.85938, + 7.67188 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7, + 0.25, + 7.39063, + 0.29688 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 2.5, + 7.625, + 2.60938, + 7.67188 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7, + 0.375, + 7.39063, + 0.42188 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 3.48438, + 4.89063, + 3.375, + 4.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.10938, + 5.875, + 4, + 6.26563 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.41828, + 9.56532, + 7.61067 + ], + "to": [ + 9.07828, + 9.89532, + 10.71917 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 7.375, + 0.5, + 7.57813, + 0.54688 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.875, + 7, + 1.26563, + 7.04688 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0.625, + 7.375, + 0.82813, + 7.42188 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.375, + 7, + 1.76563, + 7.04688 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2.45313, + 5.64063, + 2.25, + 5.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.70313, + 5.25, + 2.5, + 5.64063 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.92078, + 9.56532, + 10.71067 + ], + "to": [ + 9.08078, + 10.64532, + 20.85667 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 6, + 0.5, + 6.26563, + 0.64063 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.375, + 2.5, + 4.64063, + 2.64063 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 6, + 0.75, + 6.26563, + 0.89063 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.375, + 2.75, + 4.64063, + 2.89063 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0.26563, + 2.51563, + 0, + 1.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.64063, + 1.25, + 0.375, + 2.51563 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.92078, + 9.56532, + -1.53933 + ], + "to": [ + 7.18078, + 10.39532, + 2.85667 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 5.375, + 7.75, + 5.40625, + 7.85938 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.25, + 0.125, + 5.79688, + 0.23438 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5.5, + 7.75, + 5.53125, + 7.85938 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.375, + 1.625, + 5.92188, + 1.73438 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2.53125, + 7.54688, + 2.5, + 7 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.65625, + 7, + 2.625, + 7.54688 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.82078, + 9.56532, + -1.53933 + ], + "to": [ + 9.08078, + 10.39532, + 2.85667 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 5.625, + 7.75, + 5.65625, + 7.85938 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.375, + 3.25, + 5.92188, + 3.35938 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5.75, + 7.75, + 5.78125, + 7.85938 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.375, + 3.375, + 5.92188, + 3.48438 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2.78125, + 7.54688, + 2.75, + 7 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.15625, + 7, + 3.125, + 7.54688 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 10.02698, + 9.3676, + -1.53933 + ], + "to": [ + 10.23698, + 9.9476, + 2.85667 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 8.41832, + 8.4858, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 8.125, + 3, + 8.15625, + 3.07813 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.625, + 3.125, + 6.17188, + 3.20313 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3.125, + 8.125, + 3.15625, + 8.20313 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.875, + 0.125, + 6.42188, + 0.20313 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 3.28125, + 7.54688, + 3.25, + 7 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.40625, + 7, + 3.375, + 7.54688 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.3309, + 10.59544, + -1.53933 + ], + "to": [ + 8.6734, + 10.80544, + 2.85667 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 9.5552, + 8.98678, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 7.625, + 1.75, + 7.79688, + 1.78125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7, + 2.125, + 7.54688, + 2.15625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 2, + 7.625, + 2.17188, + 7.65625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.125, + 7, + 4.67188, + 7.03125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5.17188, + 1.17188, + 5, + 0.625 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.17188, + 5, + 2, + 5.54688 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.7054, + 11.92842, + -1.53933 + ], + "to": [ + 8.2854, + 12.13842, + 2.85667 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 9.4172, + 10.31975, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 8.125, + 3.125, + 8.20313, + 3.15625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7, + 4.5, + 7.54688, + 4.53125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3.25, + 8.125, + 3.32813, + 8.15625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7, + 6.125, + 7.54688, + 6.15625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4.20313, + 6.42188, + 4.125, + 5.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.32813, + 5.875, + 4.25, + 6.42188 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.60028, + 10.64532, + 3.52717 + ], + "to": [ + 8.39628, + 11.01482, + 17.73317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 7.625, + 5.09375, + 7.67188 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.125, + 0.25, + 6.90625, + 0.29688 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.75, + 0.375, + 7.84375, + 0.42188 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.125, + 0.375, + 6.90625, + 0.42188 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 3.09375, + 5.28125, + 3, + 3.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.84375, + 3.625, + 0.75, + 5.40625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.19612, + 11.56792, + 3.52717 + ], + "to": [ + 8.19612, + 11.76792, + 17.73317 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 8.59412, + 10.58317, + 10.63017 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 0, + 0.03125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.5, + 4.625, + 7.28125, + 4.65625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 0, + 0.03125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.5, + 4.75, + 7.28125, + 4.78125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 1.78125, + 0, + 0 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 0, + 1.78125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.47495, + 11.13848, + 3.52717 + ], + "to": [ + 8.52495, + 11.13848, + 17.73317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 6.4902, + 10.74048, + 10.63017 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 0.125, + 0 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 1.78125, + 0 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 0.125, + 0 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 0, + 1.78125, + 0 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 1.25, + 3.78125, + 1.125, + 2 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.125, + 2.625, + 0, + 4.40625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.80044, + 11.56792, + 3.52717 + ], + "to": [ + 7.80044, + 11.76792, + 17.73317 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 7.40244, + 10.58317, + 10.63017 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 0, + 0, + 0.03125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.5, + 4.875, + 7.28125, + 4.90625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 0, + 0, + 0.03125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.5, + 5, + 7.28125, + 5.03125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0, + 1.78125, + 0, + 0 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0, + 0, + 0, + 1.78125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.56628, + 4.03126, + 0.53594 + ], + "to": [ + 8.43028, + 9.05526, + 1.58194 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 3, + 5.375, + 3.10938, + 6 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.875, + 5.25, + 3, + 5.875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5.375, + 4.5, + 5.48438, + 5.125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.125, + 5.25, + 3.25, + 5.875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 3.23438, + 0.5, + 3.125, + 0.375 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.73438, + 5, + 3.625, + 5.125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.45828, + 8.29926, + 0.42794 + ], + "to": [ + 8.53828, + 9.05526, + 1.93994 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 2, + 7.125, + 2.14063, + 7.21875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7, + 1.375, + 7.1875, + 1.46875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 2.875, + 7.125, + 3.01563, + 7.21875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2, + 7, + 2.1875, + 7.09375 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6.51563, + 1.5625, + 6.375, + 1.375 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.64063, + 6.375, + 1.5, + 6.5625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.35028, + 1.97385, + 0.92447 + ], + "to": [ + 8.64628, + 2.18985, + 1.89647 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 7.625, + 3.125, + 7.78125, + 3.15625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3, + 7.75, + 3.125, + 7.78125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3.25, + 7.625, + 3.40625, + 7.65625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.75, + 3, + 7.875, + 3.03125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6.90625, + 6.75, + 6.75, + 6.625 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.03125, + 0, + 6.875, + 0.125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.35028, + 2.18985, + 1.03247 + ], + "to": [ + 8.64628, + 2.29785, + 1.78847 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 8.125, + 3.25, + 8.28125, + 3.26563 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.125, + 7.5, + 8.21875, + 7.51563 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3.375, + 8.125, + 3.53125, + 8.14063 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.625, + 8.125, + 7.71875, + 8.14063 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0.53125, + 7.21875, + 0.375, + 7.125 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.28125, + 0.5, + 7.125, + 0.59375 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.35028, + 2.29785, + 1.24847 + ], + "to": [ + 8.64628, + 2.51385, + 1.68047 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 7.625, + 3.25, + 7.78125, + 3.28125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.125, + 7.625, + 8.17188, + 7.65625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.625, + 3.375, + 7.78125, + 3.40625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.75, + 8.125, + 7.79688, + 8.15625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.65625, + 2.54688, + 7.5, + 2.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.65625, + 2.625, + 7.5, + 2.67188 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.50645, + 8.84033, + 2.72117 + ], + "to": [ + 7.03845, + 9.21633, + 3.26117 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 9.72625, + 7.29217, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 6.5, + 8, + 6.5625, + 8.04688 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8, + 6.5, + 8.0625, + 6.54688 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 6.625, + 8, + 6.6875, + 8.04688 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8, + 6.625, + 8.0625, + 6.67188 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 3.3125, + 7.8125, + 3.25, + 7.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.4375, + 7.75, + 3.375, + 7.8125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.95811, + 8.84033, + 2.72117 + ], + "to": [ + 9.49011, + 9.21633, + 3.26117 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 6.27031, + 7.29217, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 6.75, + 8, + 6.8125, + 8.04688 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8, + 6.75, + 8.0625, + 6.79688 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 6.875, + 8, + 6.9375, + 8.04688 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8, + 6.875, + 8.0625, + 6.92188 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 3.5625, + 7.8125, + 3.5, + 7.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.6875, + 7.75, + 3.625, + 7.8125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.18646, + 10.5535, + 2.72117 + ], + "to": [ + 8.81221, + 10.9295, + 3.26117 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 5.74866, + 9.00533, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 7.375, + 0.625, + 7.57813, + 0.67188 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7, + 8, + 7.0625, + 8.04688 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 1.375, + 7.375, + 1.57813, + 7.42188 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8, + 7, + 8.0625, + 7.04688 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.32813, + 3.8125, + 7.125, + 3.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.32813, + 4.25, + 7.125, + 4.3125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.81028, + 7.52132, + 2.72117 + ], + "to": [ + 9.18628, + 10.55332, + 3.26117 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 2.25, + 4.625, + 2.54688, + 5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.625, + 1.875, + 6.6875, + 2.25 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 2.625, + 4.625, + 2.92188, + 5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2, + 6.625, + 2.0625, + 7 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.17188, + 1.5625, + 6.875, + 1.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.17188, + 1.625, + 6.875, + 1.6875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.89628, + 9.99732, + 7.66867 + ], + "to": [ + 9.51028, + 10.32132, + 8.03367 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 1.625, + 7.375, + 1.82813, + 7.42188 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.75, + 8.125, + 5.79688, + 8.17188 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.375, + 1.75, + 7.57813, + 1.79688 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.125, + 5.75, + 8.17188, + 5.79688 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.57813, + 2.29688, + 7.375, + 2.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.57813, + 2.375, + 7.375, + 2.42188 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 9.07828, + 9.99732, + 10.71317 + ], + "to": [ + 9.29428, + 10.32132, + 10.82117 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 8.125, + 7.75, + 8.15625, + 7.79688 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.125, + 8.5, + 5.14063, + 8.54688 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.875, + 8.125, + 7.90625, + 8.17188 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 5.125, + 8.51563, + 5.17188 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6.53125, + 8.76563, + 6.5, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.78125, + 6.5, + 8.75, + 6.51563 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 9.07828, + 9.99732, + 7.47317 + ], + "to": [ + 9.29428, + 10.32132, + 7.58117 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 8.125, + 7.875, + 8.15625, + 7.92188 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.25, + 8.5, + 5.26563, + 8.54688 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 8.125, + 8.03125, + 8.17188 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 5.25, + 8.51563, + 5.29688 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6.65625, + 8.76563, + 6.625, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.78125, + 6.625, + 8.75, + 6.64063 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 9.07828, + 10.32132, + 7.47317 + ], + "to": [ + 9.29428, + 10.42932, + 10.82117 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 6.75, + 8.75, + 6.78125, + 8.76563 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.5, + 5.125, + 7.92188, + 5.14063 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.75, + 6.75, + 8.78125, + 6.76563 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.5, + 5.25, + 7.92188, + 5.26563 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 3.65625, + 7.54688, + 3.625, + 7.125 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.78125, + 7.125, + 3.75, + 7.54688 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 9.07828, + 9.88932, + 7.47317 + ], + "to": [ + 9.29428, + 9.99732, + 10.82117 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 6.875, + 8.75, + 6.90625, + 8.76563 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.5, + 7.5, + 5.92188, + 7.51563 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.75, + 6.875, + 8.78125, + 6.89063 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.5, + 5.625, + 7.92188, + 5.64063 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4.15625, + 7.54688, + 4.125, + 7.125 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.28125, + 7.125, + 4.25, + 7.54688 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.81028, + 7.62132, + -1.38283 + ], + "to": [ + 9.18628, + 9.65332, + -0.84283 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 4.25, + 5.25, + 4.54688, + 5.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.5, + 7, + 3.5625, + 7.25 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5.25, + 4.25, + 5.54688, + 4.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.25, + 7.125, + 0.3125, + 7.375 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.17188, + 2.3125, + 6.875, + 2.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.17188, + 2.375, + 6.875, + 2.4375 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.35028, + 7.83732, + -1.60483 + ], + "to": [ + 8.64628, + 8.05332, + 4.98917 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 7.625, + 3.5, + 7.78125, + 3.53125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.375, + 0.875, + 7.20313, + 0.90625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3.625, + 7.625, + 3.78125, + 7.65625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.375, + 2.5, + 7.20313, + 2.53125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0.65625, + 5.20313, + 0.5, + 4.375 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.03125, + 4.375, + 0.875, + 5.20313 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.35028, + 6.64932, + -1.49083 + ], + "to": [ + 8.64628, + 7.83732, + 4.98917 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 6.5, + 6.25, + 6.65625, + 6.40625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.375, + 0, + 5.1875, + 0.15625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 6.5, + 6.5, + 6.65625, + 6.65625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.375, + 4.25, + 5.1875, + 4.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 1.65625, + 5.1875, + 1.5, + 4.375 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.90625, + 4.375, + 1.75, + 5.1875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.13428, + 9.34932, + -1.60483 + ], + "to": [ + 8.86228, + 9.56532, + 4.98917 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 2.75, + 7.71875, + 2.78125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.375, + 2.625, + 7.20313, + 2.65625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3.875, + 7.5, + 4.09375, + 7.53125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.375, + 2.75, + 7.20313, + 2.78125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 1.09375, + 3.70313, + 0.875, + 2.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.46875, + 3.375, + 1.25, + 4.20313 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.96376, + 10.54156, + 3.26042 + ], + "to": [ + 7.29176, + 10.75756, + 10.60442 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.07776, + 10.64956, + 7.03867 + ] + }, + "faces": { + "north": { + "uv": [ + 8.125, + 8, + 8.17188, + 8.03125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.125, + 3, + 7.04688, + 3.03125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.125, + 8.125, + 8.17188, + 8.15625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6, + 6.125, + 6.92188, + 6.15625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0.92188, + 6.79688, + 0.875, + 5.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.04688, + 5.875, + 1, + 6.79688 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.70824, + 10.54156, + 3.26042 + ], + "to": [ + 9.03624, + 10.75756, + 10.60442 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.92224, + 10.64956, + 7.03867 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 8.25, + 0.04688, + 8.28125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.25, + 3.125, + 7.17188, + 3.15625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.25, + 0, + 8.29688, + 0.03125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.25, + 3.25, + 7.17188, + 3.28125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2.92188, + 6.79688, + 2.875, + 5.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.17188, + 5.875, + 3.125, + 6.79688 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.70824, + 10.54156, + 11.06042 + ], + "to": [ + 9.03624, + 10.75756, + 18.40442 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 8.92224, + 10.64956, + 14.83867 + ] + }, + "faces": { + "north": { + "uv": [ + 0.125, + 8.25, + 0.17188, + 8.28125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.25, + 3.375, + 7.17188, + 3.40625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.25, + 0.125, + 8.29688, + 0.15625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.25, + 3.875, + 7.17188, + 3.90625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 3.29688, + 6.79688, + 3.25, + 5.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.42188, + 5.875, + 3.375, + 6.79688 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.15054, + 10.66125, + 3.26042 + ], + "to": [ + 8.84729, + 10.87725, + 18.40442 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.73329, + 10.76925, + 14.83867 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 4, + 7.71875, + 4.03125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.375, + 3.5, + 7.26563, + 3.53125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.5, + 4.125, + 7.71875, + 4.15625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.5, + 1, + 7.39063, + 1.03125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0.96875, + 1.89063, + 0.75, + 0 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.21875, + 0, + 1, + 1.89063 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.96376, + 10.54156, + 11.06042 + ], + "to": [ + 7.29176, + 10.75756, + 18.40442 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 7.07776, + 10.64956, + 14.83867 + ] + }, + "faces": { + "north": { + "uv": [ + 0.25, + 8.25, + 0.29688, + 8.28125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.25, + 4, + 7.17188, + 4.03125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.25, + 0.25, + 8.29688, + 0.28125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.25, + 4.125, + 7.17188, + 4.15625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 3.54688, + 6.79688, + 3.5, + 5.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.92188, + 5.875, + 3.875, + 6.79688 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.64628, + 7.83732, + -1.60483 + ], + "to": [ + 8.86228, + 9.34932, + 4.98917 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 7.375, + 7.53125, + 7.5625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.875, + 1.625, + 4.70313, + 1.8125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 7.625, + 0.03125, + 7.8125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.875, + 1.875, + 4.70313, + 2.0625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 3.78125, + 7.07813, + 3.75, + 6.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.03125, + 6.375, + 4, + 7.20313 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 5.83828, + 9.40332, + 0.61517 + ], + "to": [ + 7.35028, + 10.37532, + 1.58717 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 2.125, + 6.625, + 2.3125, + 6.75 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.875, + 2.125, + 2, + 2.25 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 6.625, + 2.25, + 6.8125, + 2.375 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.625, + 2.125, + 2.75, + 2.25 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2.5625, + 6.75, + 2.375, + 6.625 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.8125, + 2.375, + 6.625, + 2.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 5.62228, + 9.40332, + 1.04717 + ], + "to": [ + 5.83828, + 13.93932, + 1.26317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 3.875, + 6.875, + 3.90625, + 7.4375 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.125, + 6.875, + 5.15625, + 7.4375 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 2.25, + 7, + 2.28125, + 7.5625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.375, + 7, + 2.40625, + 7.5625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 3.65625, + 8.53125, + 3.625, + 8.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.53125, + 3.625, + 8.5, + 3.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 5.83828, + 10.69932, + 1.04717 + ], + "to": [ + 6.59428, + 10.91532, + 1.26317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 7.125, + 8, + 7.21875, + 8.03125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.75, + 8.5, + 3.78125, + 8.53125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 7.125, + 8.09375, + 7.15625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 3.75, + 8.53125, + 3.78125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.34375, + 8.03125, + 7.25, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.09375, + 7.25, + 8, + 7.28125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 5.83828, + 11.56332, + 1.04717 + ], + "to": [ + 6.59428, + 11.77932, + 1.26317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 7.375, + 8, + 7.46875, + 8.03125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.875, + 8.5, + 3.90625, + 8.53125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 7.375, + 8.09375, + 7.40625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 3.875, + 8.53125, + 3.90625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.59375, + 8.03125, + 7.5, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.09375, + 7.5, + 8, + 7.53125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 5.83828, + 12.53532, + 1.04717 + ], + "to": [ + 6.59428, + 12.75132, + 1.26317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 7.625, + 8, + 7.71875, + 8.03125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4, + 8.5, + 4.03125, + 8.53125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 7.625, + 8.09375, + 7.65625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 4, + 8.53125, + 4.03125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.84375, + 8.03125, + 7.75, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.09375, + 7.75, + 8, + 7.78125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 5.83828, + 13.72332, + 1.04717 + ], + "to": [ + 6.59428, + 13.93932, + 1.26317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 7.875, + 8, + 7.96875, + 8.03125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.125, + 8.5, + 4.15625, + 8.53125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 7.875, + 8.09375, + 7.90625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 4.125, + 8.53125, + 4.15625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.09375, + 8.03125, + 8, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.09375, + 8.125, + 0, + 8.15625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 5.83828, + 9.07932, + 1.58717 + ], + "to": [ + 7.35028, + 10.26732, + 1.80317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 5.5, + 6.125, + 5.6875, + 6.28125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.625, + 3.625, + 7.65625, + 3.78125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5.75, + 6.125, + 5.9375, + 6.28125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.875, + 7.625, + 3.90625, + 7.78125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.8125, + 0.03125, + 7.625, + 0 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.8125, + 0.125, + 7.625, + 0.15625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 5.38117, + 9.38654, + 1.04717 + ], + "to": [ + 5.92117, + 9.60254, + 1.26317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 8.125, + 6.125, + 8.1875, + 6.15625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.25, + 8.5, + 4.28125, + 8.53125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 6.25, + 8.125, + 6.3125, + 8.15625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 4.25, + 8.53125, + 4.28125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.1875, + 6.28125, + 8.125, + 6.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.4375, + 8.125, + 6.375, + 8.15625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 5.17265, + 8.81277, + 1.04717 + ], + "to": [ + 5.38865, + 9.56877, + 1.26317 + ], + "rotation": { + "angle": -22.5, + "axis": "z", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 8.125, + 0, + 8.15625, + 0.09375 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.125, + 8.125, + 0.15625, + 8.21875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.125, + 0.125, + 8.15625, + 0.21875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.25, + 8.125, + 0.28125, + 8.21875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4.40625, + 8.53125, + 4.375, + 8.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.53125, + 4.375, + 8.5, + 4.40625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.59428, + 10.37532, + 1.04717 + ], + "to": [ + 6.81028, + 13.93932, + 1.26317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 0.875, + 7.125, + 0.90625, + 7.57813 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1, + 7.125, + 1.03125, + 7.57813 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 1.125, + 7.125, + 1.15625, + 7.57813 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.25, + 7.125, + 1.28125, + 7.57813 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4.53125, + 8.53125, + 4.5, + 8.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.53125, + 4.5, + 8.5, + 4.53125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.13428, + 7.83732, + -1.60483 + ], + "to": [ + 7.35028, + 9.34932, + 4.98917 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 7.625, + 0.25, + 7.65625, + 0.4375 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.875, + 2.125, + 4.70313, + 2.3125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.625, + 0.5, + 7.65625, + 0.6875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4, + 3, + 4.82813, + 3.1875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4.90625, + 7.20313, + 4.875, + 6.375 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.03125, + 6.375, + 5, + 7.20313 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.24228, + 6.75732, + -1.49083 + ], + "to": [ + 7.35028, + 7.40532, + 1.74917 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 3.125, + 8.25, + 3.14063, + 8.32813 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.625, + 0.25, + 4.03125, + 0.32813 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.25, + 3.125, + 8.26563, + 3.20313 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.25, + 2.375, + 4.65625, + 2.45313 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6.26563, + 7.90625, + 6.25, + 7.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.39063, + 7.5, + 6.375, + 7.90625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.13428, + 6.75732, + -1.49083 + ], + "to": [ + 7.24228, + 7.40532, + -1.27483 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 3.25, + 8.25, + 3.26563, + 8.32813 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.125, + 3.375, + 8.15625, + 3.45313 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3.375, + 8.25, + 3.39063, + 8.32813 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.125, + 3.5, + 8.15625, + 3.57813 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.01563, + 8.78125, + 7, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.76563, + 7, + 8.75, + 7.03125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.70228, + 6.64932, + -1.05883 + ], + "to": [ + 7.35028, + 7.51332, + 0.45317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 6, + 2.25, + 6.07813, + 2.35938 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.125, + 6.75, + 2.3125, + 6.85938 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 6.375, + 7.375, + 6.45313, + 7.48438 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.75, + 2.125, + 6.9375, + 2.23438 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0.70313, + 7.3125, + 0.625, + 7.125 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.82813, + 7.125, + 0.75, + 7.3125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.70228, + 6.10932, + 0.34517 + ], + "to": [ + 7.35028, + 6.75732, + 0.99317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 6.625, + 7.57813, + 6.70313 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.75, + 7.5, + 6.82813, + 7.57813 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 6.875, + 7.5, + 6.95313, + 7.57813 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.5, + 6.875, + 7.57813, + 6.95313 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.07813, + 7.57813, + 7, + 7.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.57813, + 7, + 7.5, + 7.07813 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.81028, + 3.00592, + 2.99183 + ], + "to": [ + 7.13428, + 3.43792, + 3.96383 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 5.875, + 8.125, + 5.92188, + 8.17188 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.625, + 0.75, + 7.75, + 0.79688 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.125, + 5.875, + 8.17188, + 5.92188 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.875, + 7.625, + 1, + 7.67188 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.67188, + 1, + 7.625, + 0.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.04688, + 7.625, + 1, + 7.75 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.02628, + 7.4801, + -0.60671 + ], + "to": [ + 7.35028, + 7.5881, + 0.36529 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 5.375, + 8.5, + 5.42188, + 8.51563 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.125, + 6.375, + 8.25, + 6.39063 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.5, + 5.375, + 8.54688, + 5.39063 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.5, + 8.125, + 6.625, + 8.14063 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.67188, + 1.125, + 7.625, + 1 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.17188, + 7.625, + 1.125, + 7.75 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.02628, + 7.4801, + 0.36529 + ], + "to": [ + 7.35028, + 7.5881, + 0.47329 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 5.5, + 8.5, + 5.54688, + 8.51563 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.875, + 0.125, + 8.89063, + 0.14063 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.5, + 5.5, + 8.54688, + 5.51563 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.25, + 8.875, + 0.26563, + 8.89063 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5.67188, + 8.51563, + 5.625, + 8.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.54688, + 5.625, + 8.5, + 5.64063 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.91828, + 6.75732, + -3.97483 + ], + "to": [ + 7.13428, + 7.40532, + -1.05883 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 3.625, + 8.125, + 3.65625, + 8.20313 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.25, + 4.5, + 6.60938, + 4.57813 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.125, + 3.625, + 8.15625, + 3.70313 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6, + 6.25, + 6.35938, + 6.32813 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6.65625, + 7.48438, + 6.625, + 7.125 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.78125, + 7.125, + 6.75, + 7.48438 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.91828, + 6.86532, + -6.89083 + ], + "to": [ + 7.13428, + 7.29732, + -3.97483 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 0.375, + 8.25, + 0.40625, + 8.29688 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7, + 7, + 7.35938, + 7.04688 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.25, + 0.375, + 8.28125, + 0.42188 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.125, + 0, + 7.48438, + 0.04688 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6.90625, + 7.48438, + 6.875, + 7.125 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.03125, + 7.125, + 7, + 7.48438 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.91828, + 6.97332, + -10.13083 + ], + "to": [ + 7.13428, + 7.18932, + -6.89083 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 4.625, + 8.5, + 4.65625, + 8.53125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.125, + 4.375, + 7.53125, + 4.40625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.5, + 4.625, + 8.53125, + 4.65625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.125, + 5.375, + 7.53125, + 5.40625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4.65625, + 7.53125, + 4.625, + 7.125 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.78125, + 7.125, + 4.75, + 7.53125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.02628, + 6.97332, + -13.37083 + ], + "to": [ + 7.13428, + 7.08132, + -10.13083 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 8.875, + 0.25, + 8.89063, + 0.26563 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.5, + 6.25, + 7.90625, + 6.26563 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0.375, + 8.875, + 0.39063, + 8.89063 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.5, + 6.375, + 7.90625, + 6.39063 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6.51563, + 7.90625, + 6.5, + 7.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.64063, + 7.5, + 6.625, + 7.90625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.13428, + 6.75732, + -1.05883 + ], + "to": [ + 7.24228, + 7.40532, + -0.84283 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 3.375, + 8.26563, + 3.45313 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.75, + 8.125, + 3.78125, + 8.20313 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3.5, + 8.25, + 3.51563, + 8.32813 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.125, + 3.75, + 8.15625, + 3.82813 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.14063, + 8.78125, + 7.125, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.76563, + 7.125, + 8.75, + 7.15625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.13428, + 6.75732, + -0.62683 + ], + "to": [ + 7.24228, + 7.40532, + -0.41083 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 3.5, + 8.26563, + 3.57813 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.875, + 8.125, + 3.90625, + 8.20313 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3.625, + 8.25, + 3.64063, + 8.32813 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.125, + 3.875, + 8.15625, + 3.95313 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.26563, + 8.78125, + 7.25, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.76563, + 7.25, + 8.75, + 7.28125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.13428, + 6.75732, + -0.19483 + ], + "to": [ + 7.24228, + 7.40532, + 0.02117 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 3.625, + 8.26563, + 3.70313 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4, + 8.125, + 4.03125, + 8.20313 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3.75, + 8.25, + 3.76563, + 8.32813 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.125, + 4, + 8.15625, + 4.07813 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.39063, + 8.78125, + 7.375, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.76563, + 7.375, + 8.75, + 7.40625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.13428, + 6.75732, + 1.10117 + ], + "to": [ + 7.24228, + 7.40532, + 1.31717 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 3.75, + 8.26563, + 3.82813 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.125, + 8.125, + 4.15625, + 8.20313 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3.875, + 8.25, + 3.89063, + 8.32813 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.125, + 4.125, + 8.15625, + 4.20313 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.51563, + 8.78125, + 7.5, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.76563, + 7.5, + 8.75, + 7.53125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.13428, + 6.75732, + 1.53317 + ], + "to": [ + 7.24228, + 7.40532, + 1.74917 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 3.875, + 8.26563, + 3.95313 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.25, + 8.125, + 4.28125, + 8.20313 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 4, + 8.25, + 4.01563, + 8.32813 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.125, + 4.25, + 8.15625, + 4.32813 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.64063, + 8.78125, + 7.625, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.76563, + 7.625, + 8.75, + 7.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.13428, + 6.75732, + 0.23717 + ], + "to": [ + 7.24228, + 7.40532, + 0.45317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 4, + 8.26563, + 4.07813 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.375, + 8.125, + 4.40625, + 8.20313 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 4.125, + 8.25, + 4.14063, + 8.32813 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.125, + 4.375, + 8.15625, + 4.45313 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.76563, + 8.78125, + 7.75, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.76563, + 7.75, + 8.75, + 7.78125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.13428, + 6.75732, + 0.66917 + ], + "to": [ + 7.24228, + 7.40532, + 0.88517 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 4.125, + 8.26563, + 4.20313 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.5, + 8.125, + 4.53125, + 8.20313 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 4.25, + 8.25, + 4.26563, + 8.32813 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.125, + 4.5, + 8.15625, + 4.57813 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.89063, + 8.78125, + 7.875, + 8.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.76563, + 7.875, + 8.75, + 7.90625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.67428, + 6.41265, + 0.58359 + ], + "to": [ + 7.37803, + 6.61065, + 0.74409 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.07928, + 6.43665, + 0.65447 + ] + }, + "faces": { + "north": { + "uv": [ + 8.125, + 0.25, + 8.21875, + 0.28125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8, + 8.75, + 8.01563, + 8.78125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0.375, + 8.125, + 0.46875, + 8.15625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.75, + 8, + 8.76563, + 8.03125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0.59375, + 8.26563, + 0.5, + 8.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.34375, + 0.5, + 8.25, + 0.51563 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.67428, + 6.40365, + 0.63183 + ], + "to": [ + 7.37803, + 6.56415, + 0.82983 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 7.07928, + 6.4839, + 0.73083 + ] + }, + "faces": { + "north": { + "uv": [ + 0.625, + 8.25, + 0.71875, + 8.26563 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.125, + 8.75, + 8.15625, + 8.76563 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.25, + 0.625, + 8.34375, + 0.64063 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.75, + 8.125, + 8.78125, + 8.14063 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.21875, + 0.40625, + 8.125, + 0.375 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.59375, + 8.125, + 0.5, + 8.15625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.67428, + 6.26967, + 0.63183 + ], + "to": [ + 7.37803, + 6.43017, + 0.82983 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 7.07928, + 6.34992, + 0.73083 + ] + }, + "faces": { + "north": { + "uv": [ + 0.75, + 8.25, + 0.84375, + 8.26563 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.25, + 8.75, + 8.28125, + 8.76563 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.25, + 0.75, + 8.34375, + 0.76563 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.75, + 8.25, + 8.78125, + 8.26563 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.21875, + 0.53125, + 8.125, + 0.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.71875, + 8.125, + 0.625, + 8.15625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.67428, + 6.33666, + 0.65958 + ], + "to": [ + 7.37803, + 6.49716, + 0.85758 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.07928, + 6.41691, + 0.75858 + ] + }, + "faces": { + "north": { + "uv": [ + 0.875, + 8.25, + 0.96875, + 8.26563 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.375, + 8.75, + 8.40625, + 8.76563 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.25, + 0.875, + 8.34375, + 0.89063 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.75, + 8.375, + 8.78125, + 8.39063 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.21875, + 0.65625, + 8.125, + 0.625 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.84375, + 8.125, + 0.75, + 8.15625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.67428, + 6.22317, + 0.58359 + ], + "to": [ + 7.37803, + 6.42117, + 0.74409 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.07928, + 6.32217, + 0.66384 + ] + }, + "faces": { + "north": { + "uv": [ + 8.125, + 0.75, + 8.21875, + 0.78125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.5, + 8.75, + 8.51563, + 8.78125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0.875, + 8.125, + 0.96875, + 8.15625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.75, + 8.5, + 8.76563, + 8.53125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 1.09375, + 8.26563, + 1, + 8.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.34375, + 1, + 8.25, + 1.01563 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.67428, + 6.33666, + 0.4701 + ], + "to": [ + 7.37803, + 6.49716, + 0.6681 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.07928, + 6.41691, + 0.5691 + ] + }, + "faces": { + "north": { + "uv": [ + 1.125, + 8.25, + 1.21875, + 8.26563 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.625, + 8.75, + 8.65625, + 8.76563 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.25, + 1.125, + 8.34375, + 1.14063 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.75, + 8.625, + 8.78125, + 8.64063 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.21875, + 0.90625, + 8.125, + 0.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.09375, + 8.125, + 1, + 8.15625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.67428, + 6.40365, + 0.49785 + ], + "to": [ + 7.37803, + 6.56415, + 0.69585 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 7.07928, + 6.4839, + 0.59685 + ] + }, + "faces": { + "north": { + "uv": [ + 1.25, + 8.25, + 1.34375, + 8.26563 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.75, + 8.75, + 8.78125, + 8.76563 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.25, + 1.25, + 8.34375, + 1.26563 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 8.875, + 0.03125, + 8.89063 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.21875, + 1.03125, + 8.125, + 1 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.21875, + 8.125, + 1.125, + 8.15625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.67428, + 6.25092, + 0.5166 + ], + "to": [ + 7.37803, + 6.44892, + 0.6771 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 7.07928, + 6.34992, + 0.59685 + ] + }, + "faces": { + "north": { + "uv": [ + 8.125, + 1.125, + 8.21875, + 1.15625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.875, + 0, + 8.89063, + 0.03125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 1.25, + 8.125, + 1.34375, + 8.15625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.125, + 8.875, + 0.14063, + 8.90625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 1.46875, + 8.26563, + 1.375, + 8.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.34375, + 1.375, + 8.25, + 1.39063 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.28428, + 6.95157, + 13.04159 + ], + "to": [ + 8.92428, + 7.08357, + 13.14859 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.55428, + 6.96757, + 13.08884 + ] + }, + "faces": { + "north": { + "uv": [ + 7.75, + 5.875, + 7.95313, + 5.89063 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.875, + 0.375, + 8.89063, + 0.39063 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 6, + 7.75, + 6.20313, + 7.76563 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.5, + 8.875, + 0.51563, + 8.89063 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.95313, + 6.01563, + 7.75, + 6 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.95313, + 6.5, + 7.75, + 6.51563 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.28428, + 6.94557, + 13.07375 + ], + "to": [ + 8.92428, + 7.05257, + 13.20575 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 7.55428, + 6.99907, + 13.13975 + ] + }, + "faces": { + "north": { + "uv": [ + 6.75, + 7.75, + 6.95313, + 7.76563 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.875, + 0.5, + 8.89063, + 0.51563 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.75, + 6.75, + 7.95313, + 6.76563 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.625, + 8.875, + 0.64063, + 8.89063 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.20313, + 7.76563, + 7, + 7.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.45313, + 7.75, + 7.25, + 7.76563 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.28428, + 6.85625, + 13.07375 + ], + "to": [ + 8.92428, + 6.96325, + 13.20575 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 7.55428, + 6.90975, + 13.13975 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 7.75, + 7.70313, + 7.76563 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.875, + 0.625, + 8.89063, + 0.64063 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.75, + 7.625, + 7.95313, + 7.64063 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.75, + 8.875, + 0.76563, + 8.89063 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.95313, + 7.76563, + 7.75, + 7.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.20313, + 7.875, + 0, + 7.89063 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.28428, + 6.90091, + 13.09225 + ], + "to": [ + 8.92428, + 7.00791, + 13.22425 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.55428, + 6.95441, + 13.15825 + ] + }, + "faces": { + "north": { + "uv": [ + 7.875, + 0, + 8.07813, + 0.01563 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.875, + 0.75, + 8.89063, + 0.76563 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.875, + 0.125, + 8.07813, + 0.14063 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.875, + 8.875, + 0.89063, + 8.89063 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0.45313, + 7.89063, + 0.25, + 7.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.07813, + 0.375, + 7.875, + 0.39063 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.28428, + 6.82525, + 13.04159 + ], + "to": [ + 8.92428, + 6.95725, + 13.14859 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.55428, + 6.89125, + 13.09509 + ] + }, + "faces": { + "north": { + "uv": [ + 0.5, + 7.875, + 0.70313, + 7.89063 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.875, + 0.875, + 8.89063, + 0.89063 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0.75, + 7.875, + 0.95313, + 7.89063 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1, + 8.875, + 1.01563, + 8.89063 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 1.20313, + 7.89063, + 1, + 7.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.57813, + 7.875, + 1.375, + 7.89063 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.28428, + 6.90091, + 12.96593 + ], + "to": [ + 8.92428, + 7.00791, + 13.09793 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.55428, + 6.95441, + 13.03193 + ] + }, + "faces": { + "north": { + "uv": [ + 1.625, + 7.875, + 1.82813, + 7.89063 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.875, + 1, + 8.89063, + 1.01563 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.875, + 1.75, + 8.07813, + 1.76563 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.125, + 8.875, + 1.14063, + 8.89063 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2.07813, + 7.89063, + 1.875, + 7.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.32813, + 7.875, + 2.125, + 7.89063 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.28428, + 6.94557, + 12.98443 + ], + "to": [ + 8.92428, + 7.05257, + 13.11643 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 7.55428, + 6.99907, + 13.05043 + ] + }, + "faces": { + "north": { + "uv": [ + 7.875, + 2.125, + 8.07813, + 2.14063 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.875, + 1.125, + 8.89063, + 1.14063 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.875, + 2.25, + 8.07813, + 2.26563 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.25, + 8.875, + 1.26563, + 8.89063 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2.57813, + 7.89063, + 2.375, + 7.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.07813, + 2.375, + 7.875, + 2.39063 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.28428, + 6.84375, + 12.99693 + ], + "to": [ + 8.92428, + 6.97575, + 13.10393 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 7.55428, + 6.90975, + 13.05043 + ] + }, + "faces": { + "north": { + "uv": [ + 7.875, + 2.5, + 8.07813, + 2.51563 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.875, + 1.25, + 8.89063, + 1.26563 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 2.625, + 7.875, + 2.82813, + 7.89063 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.375, + 8.875, + 1.39063, + 8.89063 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.07813, + 2.64063, + 7.875, + 2.625 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.07813, + 2.75, + 7.875, + 2.76563 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.43428, + -1.40696, + 14.20091 + ], + "to": [ + 8.75428, + 0.62104, + 14.41091 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 7.26211, + 8.63272, + 6.47836 + ] + }, + "faces": { + "north": { + "uv": [ + 5.875, + 1.125, + 6.04688, + 1.375 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.5, + 1, + 7.53125, + 1.25 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5.875, + 1.375, + 6.04688, + 1.625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.5, + 1.25, + 7.53125, + 1.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.79688, + 2.15625, + 7.625, + 2.125 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.42188, + 7.625, + 2.25, + 7.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.43428, + 3.8953, + 15.97676 + ], + "to": [ + 8.75428, + 5.9233, + 16.18676 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 8.09428, + 4.9093, + 16.08176 + ] + }, + "faces": { + "north": { + "uv": [ + 5.875, + 2.375, + 6.04688, + 2.625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.375, + 7.5, + 1.40625, + 7.75 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5.875, + 2.625, + 6.04688, + 2.875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.5, + 7.5, + 1.53125, + 7.75 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.79688, + 2.28125, + 7.625, + 2.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.79688, + 2.375, + 7.625, + 2.40625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.43428, + -1.41079, + 12.44167 + ], + "to": [ + 8.75428, + 2.61721, + 14.20167 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 7.26211, + 8.62889, + 6.46912 + ] + }, + "faces": { + "north": { + "uv": [ + 3.375, + 5, + 3.54688, + 5.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.625, + 4.5, + 4.84375, + 5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 4.625, + 5, + 4.79688, + 5.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 4.75, + 0.21875, + 5.25 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5.67188, + 6.09375, + 5.5, + 5.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.92188, + 5.875, + 5.75, + 6.09375 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.53428, + 4.14193, + 14.58911 + ], + "to": [ + 8.65428, + 4.71993, + 14.79911 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.09428, + 4.60593, + 15.76911 + ] + }, + "faces": { + "north": { + "uv": [ + 7.125, + 5.5, + 7.26563, + 5.57813 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.625, + 8.125, + 4.65625, + 8.20313 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.125, + 6.75, + 7.26563, + 6.82813 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.125, + 4.625, + 8.15625, + 4.70313 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.89063, + 0.53125, + 7.75, + 0.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.76563, + 7.75, + 0.625, + 7.78125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.53428, + 3.72282, + 14.76271 + ], + "to": [ + 8.65428, + 4.30082, + 14.97271 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 8.09428, + 4.01182, + 14.86771 + ] + }, + "faces": { + "north": { + "uv": [ + 7.125, + 7.125, + 7.26563, + 7.20313 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.75, + 8.125, + 4.78125, + 8.20313 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0.375, + 7.25, + 0.51563, + 7.32813 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.125, + 4.75, + 8.15625, + 4.82813 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.89063, + 0.65625, + 7.75, + 0.625 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.89063, + 0.75, + 7.75, + 0.78125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.53428, + 3.14193, + 14.98911 + ], + "to": [ + 8.65428, + 3.71993, + 15.19911 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.09428, + 3.60593, + 16.16911 + ] + }, + "faces": { + "north": { + "uv": [ + 7.25, + 0.875, + 7.39063, + 0.95313 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.875, + 8.125, + 4.90625, + 8.20313 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.25, + 1.125, + 7.39063, + 1.20313 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.125, + 4.875, + 8.15625, + 4.95313 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 1.01563, + 7.78125, + 0.875, + 7.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.89063, + 0.875, + 7.75, + 0.90625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.53428, + 2.72282, + 15.16271 + ], + "to": [ + 8.65428, + 3.30082, + 15.37271 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 8.09428, + 3.01182, + 15.26771 + ] + }, + "faces": { + "north": { + "uv": [ + 7.25, + 1.25, + 7.39063, + 1.32813 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5, + 8.125, + 5.03125, + 8.20313 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.25, + 1.375, + 7.39063, + 1.45313 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.125, + 5, + 8.15625, + 5.07813 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.89063, + 1.03125, + 7.75, + 1 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.89063, + 1.125, + 7.75, + 1.15625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.53428, + 2.09269, + 15.36829 + ], + "to": [ + 8.65428, + 2.82069, + 15.57829 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.09428, + 2.08169, + 15.47329 + ] + }, + "faces": { + "north": { + "uv": [ + 7.125, + 3, + 7.26563, + 3.09375 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.125, + 1.25, + 8.15625, + 1.34375 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.125, + 3.625, + 7.26563, + 3.71875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.375, + 8.125, + 1.40625, + 8.21875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.89063, + 1.28125, + 7.75, + 1.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.51563, + 7.75, + 1.375, + 7.78125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.53428, + 1.63763, + 15.37648 + ], + "to": [ + 8.65428, + 1.96563, + 15.83023 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.09428, + 1.80163, + 15.48148 + ] + }, + "faces": { + "north": { + "uv": [ + 4.375, + 7.5, + 4.51563, + 7.54688 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.125, + 1.375, + 8.1875, + 1.42188 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 4.875, + 7.5, + 5.01563, + 7.54688 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.5, + 8.125, + 1.5625, + 8.17188 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.51563, + 5.0625, + 7.375, + 5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.51563, + 5.5, + 7.375, + 5.5625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.53428, + 1.77052, + 15.21022 + ], + "to": [ + 8.65428, + 2.39852, + 15.58272 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8.09428, + 1.77202, + 15.28397 + ] + }, + "faces": { + "north": { + "uv": [ + 1.5, + 7.25, + 1.64063, + 7.32813 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.75, + 3.625, + 7.79688, + 3.70313 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.25, + 1.5, + 7.39063, + 1.57813 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.75, + 7.75, + 3.79688, + 7.82813 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.64063, + 5.79688, + 7.5, + 5.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.64063, + 5.875, + 7.5, + 5.92188 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.53428, + 1.50641, + 14.84969 + ], + "to": [ + 8.65428, + 1.73441, + 15.45969 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 8.09428, + 2.20791, + 14.95469 + ] + }, + "faces": { + "north": { + "uv": [ + 7.75, + 1.375, + 7.89063, + 1.40625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.125, + 8.125, + 5.20313, + 8.15625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 1.625, + 7.75, + 1.76563, + 7.78125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.125, + 5.125, + 8.20313, + 5.15625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.39063, + 1.70313, + 7.25, + 1.625 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.89063, + 7.25, + 1.75, + 7.32813 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.43428, + 5.36042, + 14.1876 + ], + "to": [ + 8.75428, + 8.53842, + 15.9976 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.09428, + 7.29942, + 15.2176 + ] + }, + "faces": { + "north": { + "uv": [ + 5.375, + 5.125, + 5.54688, + 5.51563 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.125, + 1.25, + 5.34375, + 1.64063 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5.5, + 0.5, + 5.67188, + 0.89063 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.625, + 5.125, + 3.84375, + 5.51563 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0.17188, + 6.21875, + 0, + 6 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.67188, + 6, + 0.5, + 6.21875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.38428, + -1.21079, + 12.64167 + ], + "to": [ + 8.80428, + 2.61721, + 14.00167 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 7.26211, + 8.62889, + 6.46912 + ] + }, + "faces": { + "north": { + "uv": [ + 4.875, + 5.125, + 5.04688, + 5.60938 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.125, + 5, + 5.29688, + 5.48438 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0, + 5.25, + 0.17188, + 5.73438 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.5, + 5.25, + 0.67188, + 5.73438 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5.29688, + 6.29688, + 5.125, + 6.125 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.29688, + 5.125, + 6.125, + 5.29688 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.38428, + 5.43695, + 14.47238 + ], + "to": [ + 8.80428, + 8.41495, + 15.78238 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.09428, + 7.17595, + 15.30238 + ] + }, + "faces": { + "north": { + "uv": [ + 1.5, + 1.75, + 1.67188, + 2.125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.375, + 5.5, + 3.53125, + 5.875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5.375, + 2.375, + 5.54688, + 2.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.25, + 5.5, + 4.40625, + 5.875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6.54688, + 1.28125, + 6.375, + 1.125 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.42188, + 6.375, + 1.25, + 6.53125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.53428, + 6.5988, + 15.88488 + ], + "to": [ + 8.65428, + 7.6768, + 16.29488 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8.09428, + 7.3878, + 16.18988 + ] + }, + "faces": { + "north": { + "uv": [ + 4.375, + 6.75, + 4.51563, + 6.89063 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.5, + 7.5, + 3.54688, + 7.64063 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 6.75, + 6.25, + 6.89063, + 6.39063 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.125, + 7.5, + 5.17188, + 7.64063 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6.14063, + 7.54688, + 6, + 7.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.64063, + 6, + 7.5, + 6.04688 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.53428, + 7.3988, + 16.13488 + ], + "to": [ + 8.65428, + 7.8768, + 16.29488 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 8.09428, + 7.3878, + 16.18988 + ] + }, + "faces": { + "north": { + "uv": [ + 5.75, + 7.375, + 5.89063, + 7.4375 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.75, + 8.5, + 4.76563, + 8.5625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 6, + 7.375, + 6.14063, + 7.4375 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.5, + 4.75, + 8.51563, + 4.8125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6.14063, + 8.14063, + 6, + 8.125 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.26563, + 6, + 8.125, + 6.01563 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.88228, + 5.60002, + 11.74728 + ], + "to": [ + 8.31428, + 6.44802, + 11.95528 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.36212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 2.625, + 7.625, + 2.67188, + 7.73438 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.75, + 5.75, + 7.78125, + 5.85938 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 2.75, + 7.625, + 2.79688, + 7.73438 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.875, + 7.75, + 5.90625, + 7.85938 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 1.54688, + 8.28125, + 1.5, + 8.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.29688, + 1.5, + 8.25, + 1.53125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.88228, + 6.20002, + 11.64728 + ], + "to": [ + 8.31428, + 6.84802, + 11.85528 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 8.09828, + 6.12402, + 11.85128 + ] + }, + "faces": { + "north": { + "uv": [ + 7.75, + 3.75, + 7.79688, + 3.82813 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.25, + 8.125, + 5.28125, + 8.20313 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.75, + 4, + 7.79688, + 4.07813 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.125, + 5.25, + 8.15625, + 5.32813 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 1.67188, + 8.28125, + 1.625, + 8.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.29688, + 1.625, + 8.25, + 1.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.89028, + 8.77401, + 13.33658 + ], + "to": [ + 8.30628, + 9.41401, + 13.54458 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 7.36212, + 8.58352, + 6.38536 + ] + }, + "faces": { + "north": { + "uv": [ + 7.75, + 4.125, + 7.79688, + 4.20313 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.375, + 8.125, + 5.40625, + 8.20313 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 4.25, + 7.75, + 4.29688, + 7.82813 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.125, + 5.375, + 8.15625, + 5.45313 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 1.79688, + 8.28125, + 1.75, + 8.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.92188, + 8.25, + 1.875, + 8.28125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.94028, + 10.85123, + 12.71871 + ], + "to": [ + 8.25628, + 11.49923, + 12.92671 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 7.36212, + 8.58352, + 6.38536 + ] + }, + "faces": { + "north": { + "uv": [ + 4.375, + 7.75, + 4.42188, + 7.82813 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.5, + 8.125, + 5.53125, + 8.20313 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 4.5, + 7.75, + 4.54688, + 7.82813 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.125, + 5.5, + 8.15625, + 5.57813 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2.04688, + 8.28125, + 2, + 8.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.29688, + 2.125, + 8.25, + 2.15625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.88228, + 2.07583, + 8.16716 + ], + "to": [ + 8.31428, + 2.72383, + 8.37516 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 7.36212, + 8.48351, + 6.48535 + ] + }, + "faces": { + "north": { + "uv": [ + 4.625, + 7.75, + 4.67188, + 7.82813 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.625, + 8.125, + 5.65625, + 8.20313 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 4.75, + 7.75, + 4.79688, + 7.82813 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8.125, + 5.625, + 8.15625, + 5.70313 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.29688, + 2.28125, + 8.25, + 2.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.54688, + 8.25, + 2.5, + 8.28125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.88228, + 5.14181, + 12.20549 + ], + "to": [ + 8.31428, + 5.34981, + 14.47349 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.36212, + 8.48351, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 2.625, + 8.25, + 2.67188, + 8.28125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.375, + 6.5, + 7.65625, + 6.53125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.25, + 2.75, + 8.29688, + 2.78125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.375, + 6.75, + 7.65625, + 6.78125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4.42188, + 7.40625, + 4.375, + 7.125 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.54688, + 7.125, + 4.5, + 7.40625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.56628, + 6.96182, + 17.82148 + ], + "to": [ + 7.67428, + 7.06982, + 18.79348 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 8.875, + 1.375, + 8.89063, + 1.39063 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.125, + 6.5, + 8.25, + 6.51563 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 1.5, + 8.875, + 1.51563, + 8.89063 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.625, + 8.125, + 6.75, + 8.14063 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.14063, + 6.75, + 8.125, + 6.625 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.76563, + 8.125, + 6.75, + 8.25 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.56628, + 15.48194, + 14.74664 + ], + "to": [ + 7.67428, + 15.58994, + 15.71864 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 8.875, + 1.5, + 8.89063, + 1.51563 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.125, + 6.75, + 8.25, + 6.76563 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 1.625, + 8.875, + 1.64063, + 8.89063 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.875, + 8.125, + 7, + 8.14063 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.14063, + 7, + 8.125, + 6.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.01563, + 8.125, + 7, + 8.25 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.21428, + 7.17782, + 17.82148 + ], + "to": [ + 8.32228, + 7.28582, + 18.79348 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 8.875, + 1.625, + 8.89063, + 1.64063 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.125, + 7, + 8.25, + 7.01563 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 1.75, + 8.875, + 1.76563, + 8.89063 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.125, + 8.125, + 7.25, + 8.14063 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.14063, + 7.25, + 8.125, + 7.125 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.26563, + 8.125, + 7.25, + 8.25 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.21428, + 15.63468, + 14.5939 + ], + "to": [ + 8.32228, + 15.74268, + 15.5659 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 8.875, + 1.75, + 8.89063, + 1.76563 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.125, + 7.25, + 8.25, + 7.26563 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 1.875, + 8.875, + 1.89063, + 8.89063 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.375, + 8.125, + 7.5, + 8.14063 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.14063, + 7.5, + 8.125, + 7.375 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.51563, + 8.125, + 7.5, + 8.25 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.43028, + 7.29732, + 11.36117 + ], + "to": [ + 9.61828, + 9.56532, + 15.57317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 5.125, + 5.75, + 5.28125, + 6.03125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3.5, + 4, + 4.03125, + 4.28125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0.25, + 5.875, + 0.40625, + 6.15625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.125, + 0.25, + 4.65625, + 0.53125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5.40625, + 1.03125, + 5.25, + 0.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.03125, + 5.25, + 0.875, + 5.78125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.35028, + 6.54132, + 10.17317 + ], + "to": [ + 8.86228, + 7.62132, + 14.24517 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 1.75, + 6.375, + 1.9375, + 6.51563 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.375, + 1.875, + 5.89063, + 2.01563 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 6.375, + 2.25, + 6.5625, + 2.39063 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.375, + 2.125, + 5.89063, + 2.26563 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0.4375, + 5.26563, + 0.25, + 4.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.9375, + 2.375, + 4.75, + 2.89063 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.35028, + 7.62132, + 10.17317 + ], + "to": [ + 8.86228, + 9.56532, + 22.37717 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 0.5, + 2.625, + 0.6875, + 2.875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.25, + 0, + 2.78125, + 0.25 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 4.625, + 5.5, + 4.8125, + 5.75 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.25, + 0.25, + 2.78125, + 0.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 1.9375, + 2.03125, + 1.75, + 0.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.4375, + 1.75, + 1.25, + 3.28125 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.45828, + 5.78532, + 18.48917 + ], + "to": [ + 8.75428, + 7.72932, + 22.26917 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 4.875, + 5.875, + 5.03125, + 6.125 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.5, + 0.625, + 4.96875, + 0.875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5.875, + 5.125, + 6.03125, + 5.375 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.5, + 0.875, + 4.96875, + 1.125 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0.40625, + 5.84375, + 0.25, + 5.375 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.53125, + 1.125, + 5.375, + 1.59375 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.13428, + 8.05332, + 13.08917 + ], + "to": [ + 9.07828, + 9.56532, + 22.37717 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 5.125, + 5.5, + 5.375, + 5.6875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2.375, + 1.625, + 3.53125, + 1.8125 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5.625, + 1.125, + 5.875, + 1.3125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.375, + 1.875, + 3.53125, + 2.0625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 1.5, + 1.65625, + 1.25, + 0.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.75, + 0.5, + 1.5, + 1.65625 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.13428, + 6.43332, + 11.46917 + ], + "to": [ + 10.05028, + 9.78132, + 12.11717 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 0.875, + 3.875, + 1.23438, + 4.29688 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3, + 6, + 3.07813, + 6.42188 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3.125, + 4, + 3.48438, + 4.42188 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.625, + 6, + 3.70313, + 6.42188 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6.73438, + 0.57813, + 6.375, + 0.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.73438, + 0.625, + 6.375, + 0.70313 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.91828, + 7.83732, + 13.73717 + ], + "to": [ + 7.45828, + 9.56532, + 15.35717 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 7.125, + 1.125, + 7.1875, + 1.34375 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.625, + 1.375, + 5.82813, + 1.59375 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 1.375, + 7.125, + 1.4375, + 7.34375 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.625, + 3.625, + 5.82813, + 3.84375 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6.4375, + 7.32813, + 6.375, + 7.125 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.5625, + 7.125, + 6.5, + 7.32813 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.81028, + 5.67732, + 18.59717 + ], + "to": [ + 9.18628, + 10.75332, + 19.24517 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 3.125, + 3.25, + 3.42188, + 3.89063 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.75, + 5.5, + 0.82813, + 6.14063 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 0.125, + 3.375, + 0.42188, + 4.01563 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.5, + 5.5, + 4.57813, + 6.14063 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.04688, + 0.57813, + 6.75, + 0.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.04688, + 0.625, + 6.75, + 0.70313 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.24228, + 10.64532, + 19.46117 + ], + "to": [ + 7.89028, + 10.77732, + 20.10917 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 4.25, + 8.32813, + 4.26563 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.375, + 8.25, + 4.45313, + 8.26563 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.25, + 4.375, + 8.32813, + 4.39063 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.5, + 8.25, + 4.57813, + 8.26563 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.20313, + 7.57813, + 7.125, + 7.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.57813, + 7.125, + 7.5, + 7.20313 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.21428, + 10.64532, + 19.46117 + ], + "to": [ + 8.86228, + 10.77732, + 20.10917 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 4.5, + 8.32813, + 4.51563 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.625, + 8.25, + 4.70313, + 8.26563 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.25, + 4.625, + 8.32813, + 4.64063 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.75, + 8.25, + 4.82813, + 8.26563 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.32813, + 7.57813, + 7.25, + 7.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.57813, + 7.25, + 7.5, + 7.32813 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.91828, + 5.67732, + 21.40517 + ], + "to": [ + 9.29428, + 9.67332, + 22.05317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 2.25, + 4.125, + 2.54688, + 4.625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.375, + 5.875, + 5.45313, + 6.375 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 2.625, + 4.125, + 2.92188, + 4.625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.875, + 5.375, + 5.95313, + 5.875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.04688, + 1.20313, + 6.75, + 1.125 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.04688, + 1.25, + 6.75, + 1.32813 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.86228, + 7.94532, + 14.27717 + ], + "to": [ + 9.72628, + 9.78132, + 14.92517 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 6.375, + 3.625, + 6.48438, + 3.85938 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.125, + 6.625, + 5.20313, + 6.85938 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5.125, + 6.375, + 5.23438, + 6.60938 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.625, + 6.75, + 4.70313, + 6.98438 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6.60938, + 7.45313, + 6.5, + 7.375 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.48438, + 7, + 7.375, + 7.07813 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.79541, + 7.07303, + 12.22517 + ], + "to": [ + 9.06341, + 9.55703, + 12.87317 + ], + "rotation": { + "angle": 22.5, + "axis": "z", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 2.375, + 5.28125, + 2.6875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.125, + 6.625, + 1.20313, + 6.9375 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5, + 3.25, + 5.28125, + 3.5625 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.625, + 1.125, + 6.70313, + 1.4375 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.03125, + 1.95313, + 6.75, + 1.875 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.03125, + 2, + 6.75, + 2.07813 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.91828, + 6.32532, + 22.37717 + ], + "to": [ + 9.07828, + 10.78532, + 25.40117 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 0.125, + 4.125, + 0.39063, + 4.6875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.5, + 3, + 1.875, + 3.5625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 4.125, + 0.625, + 4.39063, + 1.1875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.875, + 3, + 2.25, + 3.5625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5.01563, + 0.625, + 4.75, + 0.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.01563, + 1.5, + 4.75, + 1.875 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.00445, + 10.26914, + 22.37717 + ], + "to": [ + 6.16445, + 10.82914, + 25.40117 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 7.08445, + 9.42414, + 23.88917 + ] + }, + "faces": { + "north": { + "uv": [ + 4.875, + 8.5, + 4.89063, + 8.5625 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.125, + 6.625, + 4.5, + 6.6875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.5, + 4.875, + 8.51563, + 4.9375 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.625, + 4.5, + 7, + 4.5625 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.64063, + 1.5, + 7.625, + 1.125 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.26563, + 7.625, + 1.25, + 8 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.0448, + 12.81381, + 22.37717 + ], + "to": [ + 6.6048, + 12.97381, + 25.40117 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 5.1998, + 8.89381, + 23.88917 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 8.5, + 5.0625, + 8.51563 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.625, + 1.5, + 8, + 1.51563 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.5, + 5, + 8.5625, + 5.01563 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.625, + 1.625, + 8, + 1.64063 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2.6875, + 7, + 2.625, + 6.625 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.8125, + 6.625, + 2.75, + 7 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.35828, + 4.70532, + 23.02517 + ], + "to": [ + 8.64628, + 9.56532, + 24.64517 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.05228, + 6.53126, + 24.27836 + ] + }, + "faces": { + "north": { + "uv": [ + 4.75, + 3.25, + 4.90625, + 3.85938 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2, + 4.375, + 2.20313, + 4.98438 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 4.875, + 4.5, + 5.03125, + 5.10938 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.5, + 4.375, + 3.70313, + 4.98438 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6.15625, + 5.82813, + 6, + 5.625 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6.15625, + 5.875, + 6, + 6.07813 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.10828, + 5.4995, + 24.20887 + ], + "to": [ + 8.89628, + 7.0855, + 25.82887 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 8.05228, + 6.53126, + 24.27836 + ] + }, + "faces": { + "north": { + "uv": [ + 3.875, + 5.625, + 4.09375, + 5.82813 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.875, + 2.875, + 6.07813, + 3.07813 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5.625, + 4.25, + 5.84375, + 4.45313 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.875, + 3.625, + 6.07813, + 3.82813 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5.09375, + 5.82813, + 4.875, + 5.625 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.84375, + 5.125, + 5.625, + 5.32813 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.10828, + 5.82679, + 24.14664 + ], + "to": [ + 8.89628, + 6.91279, + 25.76664 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.05228, + 6.85855, + 24.21613 + ] + }, + "faces": { + "north": { + "uv": [ + 6.125, + 1.125, + 6.34375, + 1.26563 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 6.25, + 0.20313, + 6.39063 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 1.25, + 6.125, + 1.46875, + 6.26563 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0.25, + 6.25, + 0.45313, + 6.39063 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5.59375, + 5.82813, + 5.375, + 5.625 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.84375, + 5.375, + 5.625, + 5.57813 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.10828, + 8.47679, + 25.39664 + ], + "to": [ + 8.89628, + 9.06279, + 25.76664 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.05228, + 6.75855, + 24.21613 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 6.25, + 7.21875, + 6.32813 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.875, + 7.75, + 4.92188, + 7.82813 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 6.375, + 7.21875, + 6.45313 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5, + 7.75, + 5.04688, + 7.82813 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 3.09375, + 7.29688, + 2.875, + 7.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.46875, + 4, + 7.25, + 4.04688 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.10828, + 6.2409, + 23.86983 + ], + "to": [ + 8.89628, + 7.3269, + 25.48983 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8.05228, + 7.27265, + 23.93932 + ] + }, + "faces": { + "north": { + "uv": [ + 6.125, + 1.375, + 6.34375, + 1.51563 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0.5, + 6.25, + 0.70313, + 6.39063 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 1.5, + 6.125, + 1.71875, + 6.26563 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4.375, + 6.25, + 4.57813, + 6.39063 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5.84375, + 5.82813, + 5.625, + 5.625 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.21875, + 5.75, + 0, + 5.95313 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.10828, + 7.7421, + 24.00051 + ], + "to": [ + 8.89628, + 8.8281, + 25.62051 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8.00228, + 8.2851, + 24.81051 + ] + }, + "faces": { + "north": { + "uv": [ + 1.75, + 6.125, + 1.96875, + 6.26563 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.625, + 6.25, + 4.82813, + 6.39063 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 6.125, + 2.25, + 6.34375, + 2.39063 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.25, + 5.375, + 6.45313, + 5.51563 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0.71875, + 5.95313, + 0.5, + 5.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.96875, + 0.5, + 5.75, + 0.70313 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.10828, + 7.2409, + 23.96983 + ], + "to": [ + 8.89628, + 8.0769, + 25.58983 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.05228, + 7.27265, + 23.93932 + ] + }, + "faces": { + "north": { + "uv": [ + 1.5, + 6.625, + 1.71875, + 6.73438 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.5, + 6.625, + 4.70313, + 6.73438 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 6.625, + 1.5, + 6.84375, + 1.60938 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.75, + 1.375, + 6.95313, + 1.48438 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5.96875, + 0.95313, + 5.75, + 0.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.59375, + 5.75, + 1.375, + 5.95313 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.10828, + 10.42679, + 25.39664 + ], + "to": [ + 8.89628, + 10.91279, + 25.76664 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.05228, + 8.70855, + 24.21613 + ] + }, + "faces": { + "north": { + "uv": [ + 7.125, + 0.625, + 7.34375, + 0.6875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.125, + 1.5, + 8.17188, + 1.5625 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 1.5, + 7.125, + 1.71875, + 7.1875 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.625, + 8.125, + 1.67188, + 8.1875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.46875, + 4.17188, + 7.25, + 4.125 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.09375, + 7.25, + 4.875, + 7.29688 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.10828, + 10.7108, + 25.279 + ], + "to": [ + 8.89628, + 11.1968, + 25.649 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 8.00228, + 10.9538, + 25.464 + ] + }, + "faces": { + "north": { + "uv": [ + 1.75, + 7.125, + 1.96875, + 7.1875 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.125, + 1.625, + 8.17188, + 1.6875 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7.125, + 1.75, + 7.34375, + 1.8125 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.75, + 8.125, + 1.79688, + 8.1875 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.46875, + 5.17188, + 7.25, + 5.125 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.46875, + 7.25, + 5.25, + 7.29688 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.10828, + 10.58645, + 22.23699 + ], + "to": [ + 8.89628, + 11.25645, + 25.42299 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.00228, + 11.07145, + 25.17999 + ] + }, + "faces": { + "north": { + "uv": [ + 6.5, + 7, + 6.71875, + 7.07813 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 4.5, + 1.125, + 4.89063, + 1.20313 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 6.625, + 7.21875, + 6.70313 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6, + 4.25, + 6.39063, + 4.32813 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4.09375, + 5.51563, + 3.875, + 5.125 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.34375, + 4.5, + 5.125, + 4.89063 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.10828, + 9.6921, + 25.00051 + ], + "to": [ + 8.89628, + 10.7781, + 25.62051 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8.00228, + 10.2351, + 24.81051 + ] + }, + "faces": { + "north": { + "uv": [ + 6.125, + 2.5, + 6.34375, + 2.64063 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 2, + 7.25, + 2.07813, + 7.39063 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 6.125, + 2.75, + 6.34375, + 2.89063 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2.125, + 7.25, + 2.20313, + 7.39063 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6.96875, + 7.07813, + 6.75, + 7 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7.21875, + 6.875, + 7, + 6.95313 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.10828, + 9.1909, + 23.96983 + ], + "to": [ + 8.89628, + 10.0269, + 25.58983 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.05228, + 9.22265, + 23.93932 + ] + }, + "faces": { + "north": { + "uv": [ + 6.625, + 1.625, + 6.84375, + 1.73438 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.5, + 6.75, + 1.70313, + 6.85938 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 1.75, + 6.625, + 1.96875, + 6.73438 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 1.75, + 6.75, + 1.95313, + 6.85938 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 1.84375, + 5.95313, + 1.625, + 5.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2.46875, + 5.75, + 2.25, + 5.95313 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.10828, + 8.3909, + 23.86983 + ], + "to": [ + 8.89628, + 9.4769, + 25.48983 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8.05228, + 9.42265, + 23.93932 + ] + }, + "faces": { + "north": { + "uv": [ + 6.125, + 3.625, + 6.34375, + 3.76563 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 6.25, + 5.625, + 6.45313, + 5.76563 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 4.875, + 6.125, + 5.09375, + 6.26563 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 6.25, + 5.875, + 6.45313, + 6.01563 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 2.71875, + 5.95313, + 2.5, + 5.75 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.84375, + 5.75, + 4.625, + 5.95313 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.13428, + 10.10532, + 19.24517 + ], + "to": [ + 8.97028, + 10.71932, + 25.29317 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 0.875, + 6.875, + 1.10938, + 6.95313 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5.5, + 3.875, + 6.25, + 3.95313 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 2.125, + 6.875, + 2.35938, + 6.95313 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.5, + 4.5, + 6.25, + 4.57813 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 3.73438, + 4, + 3.5, + 3.25 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 0.73438, + 3.625, + 0.5, + 4.375 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.67428, + -1.3718, + 13.73401 + ], + "to": [ + 8.43028, + -1.3178, + 20.75401 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 2.875, + 8.34375, + 2.89063 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.125, + 1.875, + 8, + 1.89063 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.25, + 3, + 8.34375, + 3.01563 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.125, + 2, + 8, + 2.01563 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 1.21875, + 6, + 1.125, + 5.125 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1.34375, + 5.25, + 1.25, + 6.125 + ], + "texture": "#1" + } + } + } + ], + "gui_light": "front", + "display": { + "thirdperson_righthand": { + "translation": [ + 0, + 1, + -2.5 + ], + "scale": [ + 0.65, + 0.65, + 0.65 + ] + }, + "thirdperson_lefthand": { + "translation": [ + 0, + 1, + -2.5 + ], + "scale": [ + 0.65, + 0.65, + 0.65 + ] + }, + "firstperson_righthand": { + "translation": [ + -3.5, + 3.75, + -0.5 + ] + }, + "firstperson_lefthand": { + "translation": [ + -3.5, + 3.75, + -0.5 + ] + }, + "ground": { + "translation": [ + 0, + 2, + 0 + ], + "scale": [ + 0.9, + 0.9, + 0.9 + ] + }, + "gui": { + "rotation": [ + 90, + -45, + 90 + ], + "translation": [ + 1, + 0.75, + -0.75 + ], + "scale": [ + 0.6, + 0.6, + 0.6 + ] + }, + "head": { + "rotation": [ + 90, + 45, + -67 + ], + "translation": [ + -1.75, + -12, + 6.25 + ] + }, + "fixed": { + "rotation": [ + 90, + 45, + -90 + ], + "translation": [ + -2.5, + 2, + -0.75 + ], + "scale": [ + 0.8, + 0.8, + 0.8 + ] + } + }, + "groups": [ + { + "name": "main", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "nbt": "{}", + "children": [ + { + "name": "tiba", + "origin": [ + 4.06235, + 7.25259, + 9.13484 + ], + "color": 0, + "nbt": "{}", + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18 + ] + }, + { + "name": "dangu", + "origin": [ + 7.26212, + 8.68352, + 6.48536 + ], + "color": 0, + "nbt": "{}", + "children": [ + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + { + "name": "ammo", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "nbt": "{}", + "children": [ + { + "name": "group", + "origin": [ + 8, + 7.1, + 8 + ], + "color": 0, + "nbt": "{}", + "children": [ + 27, + 28, + 29, + 30, + 31, + 32, + 33 + ] + }, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42 + ] + } + ] + }, + { + "name": "body", + "origin": [ + 8, + 8, + -0.45 + ], + "color": 0, + "nbt": "{}", + "children": [ + { + "name": "group", + "origin": [ + -0.58547, + -0.26268, + -0.51883 + ], + "color": 0, + "nbt": "{}", + "children": [ + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50 + ] + }, + { + "name": "group", + "origin": [ + 0, + 0.4, + 0 + ], + "color": 0, + "nbt": "{}", + "children": [ + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58 + ] + }, + { + "name": "group", + "origin": [ + 7.26212, + 8.75302, + 6.48536 + ], + "color": 0, + "nbt": "{}", + "children": [ + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166 + ] + }, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + { + "name": "group", + "origin": [ + 5.65, + 9.45, + -0.45 + ], + "color": 0, + "nbt": "{}", + "children": [ + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215 + ] + }, + 216, + { + "name": "group", + "origin": [ + 8, + 8, + -0.45 + ], + "color": 0, + "nbt": "{}", + "children": [ + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234 + ] + }, + { + "name": "group", + "origin": [ + 7.40428, + 6.90975, + 13.05043 + ], + "color": 0, + "nbt": "{}", + "children": [ + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242 + ] + } + ] + }, + { + "name": "banji", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "nbt": "{}", + "children": [ + { + "name": "group", + "origin": [ + 7.40428, + 6.90975, + 13.05043 + ], + "color": 0, + "nbt": "{}", + "children": [ + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250 + ] + }, + { + "name": "group", + "origin": [ + 7.40428, + 6.90975, + 13.05043 + ], + "color": 0, + "nbt": "{}", + "children": [] + }, + 251, + 252, + 253, + { + "name": "group", + "origin": [ + 8.09428, + 4.01182, + 14.86771 + ], + "color": 0, + "nbt": "{}", + "children": [ + 254, + 255 + ] + }, + { + "name": "group", + "origin": [ + 8.09428, + 4.01182, + 14.86771 + ], + "color": 0, + "nbt": "{}", + "children": [ + 256, + 257, + 258, + 259, + 260, + 261 + ] + }, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289 + ] + }, + { + "name": "tuo", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "nbt": "{}", + "children": [ + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307 + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/secondary_cataclysm_base.json b/src/main/resources/assets/superbwarfare/models/item/secondary_cataclysm_base.json new file mode 100644 index 000000000..c4e9da31a --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/secondary_cataclysm_base.json @@ -0,0 +1,6 @@ +{ + "parent": "superbwarfare:displaysettings/secondary_cataclysm.item", + "textures": { + "layer0": "superbwarfare:item/secondary_cataclysm" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/secondary_cataclysm_icon.json b/src/main/resources/assets/superbwarfare/models/item/secondary_cataclysm_icon.json new file mode 100644 index 000000000..c6f321f41 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/secondary_cataclysm_icon.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/secondary_cataclysm_icon" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/senpai_spawn_egg.json b/src/main/resources/assets/superbwarfare/models/item/senpai_spawn_egg.json new file mode 100644 index 000000000..7a2c6da81 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/senpai_spawn_egg.json @@ -0,0 +1,3 @@ +{ + "parent": "item/template_spawn_egg" +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/sentinel.json b/src/main/resources/assets/superbwarfare/models/item/sentinel.json new file mode 100644 index 000000000..91810f363 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/sentinel.json @@ -0,0 +1,27 @@ +{ + "loader": "forge:separate_transforms", + "gui_light": "front", + "base": { + "parent": "superbwarfare:item/sentinel_base" + }, + "perspectives": { + "gui": { + "parent": "superbwarfare:item/sentinel_icon" + }, + "thirdperson_righthand": { + "parent": "superbwarfare:item/sentinel3d" + }, + "thirdperson_lefthand": { + "parent": "superbwarfare:item/sentinel3d" + }, + "ground": { + "parent": "superbwarfare:item/sentinel3d" + }, + "fixed": { + "parent": "superbwarfare:item/sentinel3d" + }, + "head": { + "parent": "superbwarfare:item/sentinel3d" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/sentinel3d.json b/src/main/resources/assets/superbwarfare/models/item/sentinel3d.json new file mode 100644 index 000000000..6716be75f --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/sentinel3d.json @@ -0,0 +1,1271 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 64, + 64 + ], + "textures": { + "0": "superbwarfare:item/sentinel3d", + "particle": "superbwarfare:item/sentinel3d" + }, + "elements": [ + { + "from": [ + 7.75, + 6, + -13 + ], + "to": [ + 8.5, + 7, + -1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1, + 1 + ] + }, + "faces": { + "north": { + "uv": [ + 6.5, + 2.5, + 6.75, + 2.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 3.25, + 8.5, + 3.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3.75, + 6.75, + 4, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 3.5, + 8.5, + 3.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.75, + 6.75, + 5.5, + 3.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 3.75, + 5.75, + 6.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 9, + 6.5, + 21.25 + ], + "to": [ + 10.75, + 7.5, + 22.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1, + 1.5 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 2.75, + 5.5, + 3 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 7.5, + 6.75, + 7.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 2, + 8, + 2.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 6.5, + 7.75, + 6.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 2.75, + 7.5, + 2.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 2.75, + 7.5, + 3 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 5.5, + -4.5 + ], + "to": [ + 9, + 7.5, + 29.75 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1, + 1.5 + ] + }, + "faces": { + "north": { + "uv": [ + 4.5, + 2.5, + 5, + 3 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 8.5, + 0.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 3.75, + 7.5, + 4.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 0.5, + 8.5, + 1 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0.5, + 9.5, + 0, + 1 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 1, + 0.5, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.05, + 6.75, + 24.25 + ], + "to": [ + 9.2, + 7.75, + 28.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1, + 1.5 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 3.75, + 8, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.25, + 7, + 5.25, + 7.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 4, + 8, + 4.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 4.25, + 8, + 4.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 7.5, + 1, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 6.5, + 1.5, + 7.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 7.5, + 7.25 + ], + "to": [ + 9, + 8, + 21.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1, + 1.5 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 4.5, + 8, + 4.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 1, + 7.25, + 1.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 4.75, + 8, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 1.25, + 7.25, + 1.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 6.5, + 1, + 3 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 3, + 1.5, + 6.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7, + 8, + 13 + ], + "to": [ + 9.25, + 10, + 17.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1, + 1.5 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 4.5, + 7.5, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 1.5, + 5, + 2 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 5, + 7.5, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.75, + 2, + 5, + 2.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 2.75, + 5, + 1.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 5.75, + 4, + 7 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 2, + 18.75 + ], + "to": [ + 9, + 5.5, + 29.75 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1, + 1.5 + ] + }, + "faces": { + "north": { + "uv": [ + 6.5, + 1.5, + 7, + 2.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 1, + 3.75, + 2 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 3.75, + 7, + 4.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 2, + 3.75, + 3 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 6.75, + 3, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 4, + 3.5, + 6.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 0.5, + 22.25 + ], + "to": [ + 8.75, + 2, + 25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1, + 1.5 + ] + }, + "faces": { + "north": { + "uv": [ + 2.75, + 7.5, + 3, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.75, + 2.5, + 4.5, + 3 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 5, + 7.75, + 5.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 2.75, + 6.75, + 3.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 7.75, + 5.25, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.75, + 7.25, + 3.5, + 8 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7, + 1, + 29.75 + ], + "to": [ + 9.25, + 7.75, + 32 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1, + 1.5 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 4, + 4.5, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 4, + 5, + 5.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 4, + 5.5, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 1.5, + 6, + 3.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 6, + 7, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 6, + 7, + 6.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 1.6, + 25 + ], + "to": [ + 9, + 2, + 29.75 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1, + 1.5 + ] + }, + "faces": { + "north": { + "uv": [ + 5.5, + 7.5, + 6, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 3, + 8, + 3.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 5.5, + 8, + 5.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 2.25, + 8.25, + 2.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 7, + 4.5, + 5.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 5.75, + 5, + 7 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 4, + 0.5 + ], + "to": [ + 9, + 5.5, + 14.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1, + 1.5 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 6.5, + 7.5, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 3, + 5.5, + 3.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 7, + 7.5, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 3.5, + 5.5, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 7.5, + 2, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 4, + 2.5, + 7.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 0.79359, + 14.97051 + ], + "to": [ + 9, + 5.59359, + 16.47051 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8.125, + 0.59359, + 15.72051 + ] + }, + "faces": { + "north": { + "uv": [ + 6, + 1.5, + 6.5, + 2.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 3.75, + 6.5, + 5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 5, + 6.5, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 6.25, + 6.5, + 7.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.75, + 1.5, + 7.25, + 1 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3.5, + 7.25, + 3, + 7.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 0.79359, + 16.47051 + ], + "to": [ + 9, + 2.34359, + 19.72051 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8.125, + 0.59359, + 15.72051 + ] + }, + "faces": { + "north": { + "uv": [ + 4.25, + 7.25, + 4.75, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 2.5, + 7.5, + 3 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.75, + 7.25, + 5.25, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 6.75, + 3.75, + 7.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 7.5, + 5.5, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 6.75, + 6.5, + 7.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 3, + 10.5 + ], + "to": [ + 9, + 4, + 14.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1, + 1.5 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 5.75, + 8, + 6 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 7.5, + 2, + 7.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 7.5, + 6.5, + 7.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 1.5, + 8.5, + 1.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 5.75, + 6.5, + 4.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 5.75, + 6.5, + 6.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 5.95, + -16 + ], + "to": [ + 9, + 7.05, + -13 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 1, + 1 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 6, + 8, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 1.75, + 8.25, + 2 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 6.25, + 8, + 6.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 7.5, + 2.75, + 7.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 2.25, + 7, + 1.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.25, + 7, + 3.75, + 7.75 + ], + "texture": "#0" + } + } + } + ], + "gui_light": "front", + "display": { + "thirdperson_righthand": { + "translation": [ + -1.5, + 2, + -4 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] + }, + "thirdperson_lefthand": { + "translation": [ + -1.5, + 2, + -4 + ], + "scale": [ + 0, + 0, + 0 + ] + }, + "ground": { + "translation": [ + 0, + 5.5, + -3.25 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + }, + "gui": { + "rotation": [ + 30, + -145, + 0 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] + }, + "head": { + "translation": [ + 0, + 12.25, + -5.25 + ] + }, + "fixed": { + "rotation": [ + 0, + 90, + 0 + ], + "translation": [ + 0.25, + 2.75, + -1.75 + ], + "scale": [ + 1.2, + 1.2, + 1.2 + ] + } + }, + "groups": [ + { + "name": "group", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "children": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14 + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/sentinel_base.json b/src/main/resources/assets/superbwarfare/models/item/sentinel_base.json new file mode 100644 index 000000000..8bfa056e3 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/sentinel_base.json @@ -0,0 +1,6 @@ +{ + "parent": "superbwarfare:displaysettings/sentinel.item", + "textures": { + "layer0": "superbwarfare:item/sentinel" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/sentinel_icon.json b/src/main/resources/assets/superbwarfare/models/item/sentinel_icon.json new file mode 100644 index 000000000..2190b10c0 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/sentinel_icon.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/sentinel_icon" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/shortcut_pack.json b/src/main/resources/assets/superbwarfare/models/item/shortcut_pack.json new file mode 100644 index 000000000..f7970d4d6 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/shortcut_pack.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/perk/shortcut_pack" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/shotgun_ammo_box.json b/src/main/resources/assets/superbwarfare/models/item/shotgun_ammo_box.json new file mode 100644 index 000000000..3f69fc76c --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/shotgun_ammo_box.json @@ -0,0 +1,7 @@ +{ + "parent": "superbwarfare:custom/shotgunammobox", + "textures": { + "1": "superbwarfare:block/shotgunammobox", + "particle": "superbwarfare:item/hk4163d" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/silver_bullet.json b/src/main/resources/assets/superbwarfare/models/item/silver_bullet.json new file mode 100644 index 000000000..047424deb --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/silver_bullet.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/perk/silver_bullet" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/sks.json b/src/main/resources/assets/superbwarfare/models/item/sks.json new file mode 100644 index 000000000..30126bda5 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/sks.json @@ -0,0 +1,27 @@ +{ + "loader": "forge:separate_transforms", + "gui_light": "front", + "base": { + "parent": "superbwarfare:item/sks_base" + }, + "perspectives": { + "gui": { + "parent": "superbwarfare:item/sks_icon" + }, + "thirdperson_righthand": { + "parent": "superbwarfare:item/sks3d" + }, + "thirdperson_lefthand": { + "parent": "superbwarfare:item/sks3d" + }, + "ground": { + "parent": "superbwarfare:item/sks3d" + }, + "fixed": { + "parent": "superbwarfare:item/sks3d" + }, + "head": { + "parent": "superbwarfare:item/sks3d" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/sks3d.json b/src/main/resources/assets/superbwarfare/models/item/sks3d.json new file mode 100644 index 000000000..0c8335d7f --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/sks3d.json @@ -0,0 +1,2197 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 32, + 32 + ], + "textures": { + "1": "superbwarfare:item/ak3d" + }, + "elements": [ + { + "from": [ + 7.7, + 3.24237, + -5.95836 + ], + "to": [ + 8.3, + 3.84237, + -4.45836 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 8, + 3.54237, + -5.58336 + ] + }, + "faces": { + "north": { + "uv": [ + 4.5, + 5.5, + 5, + 6 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9.5, + 0.5, + 10.5, + 1 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 10.5, + 7, + 11, + 7.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9.5, + 1, + 10.5, + 1.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8, + 10.5, + 7.5, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.5, + 9.5, + 8, + 10.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.5, + 2, + 0.25 + ], + "to": [ + 8.5, + 3.5, + 14.8 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 7.75 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 8, + 10, + 9 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 0, + 7, + 1 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.5, + 9.5, + 9, + 10.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 1, + 7, + 2 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 1.5, + 11.5, + 1, + 4.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 2, + 4.5, + 1.5, + 11.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.5, + 3.5, + 0.25 + ], + "to": [ + 8.5, + 4.75, + 5.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 7.75 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 10.5, + 8, + 11 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7, + 3, + 9.5, + 3.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8, + 10.5, + 8.5, + 11 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.5, + 3.5, + 10, + 4 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 5, + 10.5, + 4.5, + 8 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5.5, + 8, + 5, + 10.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.6, + 3.5, + 5.5 + ], + "to": [ + 8.4, + 4.5, + 6.75 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 7.75 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 10, + 11, + 10.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10.5, + 10.5, + 11, + 11 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 11, + 0, + 11.5, + 0.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11, + 0.5, + 11.5, + 1 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 11.5, + 2, + 11, + 1.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3, + 11, + 2.5, + 11.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.6, + 3.5, + 11.60156 + ], + "to": [ + 8.4, + 4.5, + 14.60156 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 7.75 + ] + }, + "faces": { + "north": { + "uv": [ + 11, + 2.5, + 11.5, + 3 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8, + 0.5, + 9.5, + 1 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3, + 11, + 3.5, + 11.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8, + 1, + 9.5, + 1.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 9, + 6.5, + 8.5, + 5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 8.5, + 6.5, + 10 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.2, + 2.2, + 9.35156 + ], + "to": [ + 7.5, + 3.25, + 13.10156 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 7.9, + 3.25, + 7.75 + ] + }, + "faces": { + "north": { + "uv": [ + 11, + 2.5, + 11.5, + 3 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8, + 0.5, + 9.5, + 1 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3, + 11, + 3.5, + 11.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8, + 1, + 9.5, + 1.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 9, + 6.5, + 8.5, + 5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 8.5, + 6.5, + 10 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.9, + 2.4, + 9.55156 + ], + "to": [ + 7.2, + 4.55, + 10.40156 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.1, + 3.25, + 7.75 + ] + }, + "faces": { + "north": { + "uv": [ + 11, + 2.5, + 11.5, + 3 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8, + 0.5, + 9.5, + 1 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3, + 11, + 3.5, + 11.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8, + 1, + 9.5, + 1.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 9, + 6.5, + 8.5, + 5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 8.5, + 6.5, + 10 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.9, + 4.55, + 8.30156 + ], + "to": [ + 7.7, + 5.25, + 13.15156 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.1, + 3.25, + 10.25 + ] + }, + "faces": { + "north": { + "uv": [ + 11, + 2.5, + 11.5, + 3 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8, + 0.5, + 9.5, + 1 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3, + 11, + 3.5, + 11.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8, + 1, + 9.5, + 1.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 9, + 6.5, + 8.5, + 5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 8.5, + 6.5, + 10 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 6.9, + 2.4, + 12.05156 + ], + "to": [ + 7.2, + 4.55, + 12.90156 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.1, + 3.25, + 10.25 + ] + }, + "faces": { + "north": { + "uv": [ + 11, + 2.5, + 11.5, + 3 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8, + 0.5, + 9.5, + 1 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3, + 11, + 3.5, + 11.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8, + 1, + 9.5, + 1.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 9, + 6.5, + 8.5, + 5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 7, + 8.5, + 6.5, + 10 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.7, + 3.5, + 6.75156 + ], + "to": [ + 8.3, + 4.5, + 11.60156 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 7.75 + ] + }, + "faces": { + "north": { + "uv": [ + 3.5, + 11, + 4, + 11.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7.5, + 4, + 10, + 4.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 11, + 3.5, + 11.5, + 4 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 8, + 0, + 10.5, + 0.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 8.5, + 7.5, + 8, + 5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6, + 8, + 5.5, + 10.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 8.2, + 3.75, + 7.00156 + ], + "to": [ + 9.05, + 4.25, + 7.50156 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 7.75 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 11, + 4.5, + 11.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11, + 4, + 11.5, + 4.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 5, + 11, + 5.5, + 11.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11, + 5, + 11.5, + 5.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 6, + 11.5, + 5.5, + 11 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11.5, + 5.5, + 11, + 6 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.5, + 4.5, + 5.5 + ], + "to": [ + 8.5, + 4.65, + 7.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 7.75 + ] + }, + "faces": { + "north": { + "uv": [ + 6.5, + 11, + 7, + 11.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9.5, + 3, + 10.5, + 3.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 11, + 6.5, + 11.5, + 7 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9, + 9.5, + 10, + 10 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 3, + 11, + 2.5, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3.5, + 10, + 3, + 11 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.5, + 1, + 16.45 + ], + "to": [ + 8.5, + 2.5, + 23.6 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 2.25, + 8.85 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 3.5, + 10.5, + 4.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 2, + 4, + 3 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 10, + 4.5, + 10.5, + 5.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 0, + 3, + 4, + 4 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4, + 9.5, + 3.5, + 5.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.5, + 5.5, + 4, + 9.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.5, + -1.5, + 22.6 + ], + "to": [ + 8.5, + 1, + 23.6 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 2.25, + 8.85 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 6.5, + 9, + 8 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 8.5, + 8, + 9, + 9.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 9, + 5, + 9.5, + 6.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 9, + 6.5, + 9.5, + 8 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.5, + 11.5, + 7, + 11 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11.5, + 7, + 11, + 7.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.5, + 1.35, + 20.55 + ], + "to": [ + 8.5, + 2.5, + 22.85 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 1.75, + 19.475 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 11, + 8, + 11.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 9.5, + 9, + 10.5, + 9.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 11, + 7.5, + 11.5, + 8 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10, + 1.5, + 11, + 2 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7, + 11, + 6.5, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10.5, + 6.5, + 10, + 7.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.5, + 5, + 8.5 + ], + "to": [ + 8.5, + 6, + 8.75 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 8.5 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 11, + 9, + 11.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 11, + 8.5, + 11.5, + 9 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 9, + 11, + 9.5, + 11.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 11, + 9, + 11.5, + 9.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 10, + 11.5, + 9.5, + 11 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11.5, + 9.5, + 11, + 10 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.7, + 0.44014, + 8.10413 + ], + "to": [ + 8.3, + 3.04014, + 10.60413 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 4.29014, + 8.65413 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 8, + 9.5, + 9.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 5, + 4.5, + 6.5, + 6 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 3.5, + 9.5, + 4, + 11 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2, + 5.5, + 3.5, + 7 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 4.5, + 11, + 4, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10, + 5, + 9.5, + 6.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.7, + -1.34838, + 5.92924 + ], + "to": [ + 8.3, + 1.25162, + 8.42924 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 8, + -0.04838, + 7.17924 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 6.5, + 10, + 8 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7, + 0, + 8, + 1.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 7, + 9.5, + 7.5, + 11 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7, + 5, + 8, + 6.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 10, + 11, + 9.5, + 10 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 10.5, + 9.5, + 10, + 10.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.5, + 1.06973, + 14.27681 + ], + "to": [ + 8.49218, + 2.56973, + 23.27681 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 7.99609, + 1.71973, + 16.87681 + ] + }, + "faces": { + "north": { + "uv": [ + 11, + 1, + 10.5, + 0 + ], + "rotation": 180, + "texture": "#1" + }, + "east": { + "uv": [ + 4.5, + 6, + 5.5, + 8 + ], + "rotation": 90, + "texture": "#1" + }, + "south": { + "uv": [ + 2.5, + 10.5, + 2, + 11.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5.5, + 6, + 6.5, + 8 + ], + "rotation": 270, + "texture": "#1" + }, + "up": { + "uv": [ + 8, + 7.5, + 8.5, + 9.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 6, + 8, + 6.5, + 10 + ], + "rotation": 180, + "texture": "#1" + } + } + }, + { + "from": [ + 7.75, + 0.76924, + 11.74672 + ], + "to": [ + 8.25, + 0.86924, + 13.99672 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 0.76924, + 14.74672 + ] + }, + "faces": { + "north": { + "uv": [ + 11.5, + 0.5, + 12, + 1 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10.5, + 1, + 11.5, + 1.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 1, + 11.5, + 1.5, + 12 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 10.5, + 3, + 11.5, + 3.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 11, + 4.5, + 10.5, + 3.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 5, + 10.5, + 4.5, + 11.5 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.75, + 0.76924, + 11.14672 + ], + "to": [ + 8.25, + 2.11924, + 11.74672 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 0.76924, + 14.74672 + ] + }, + "faces": { + "north": { + "uv": [ + 11.5, + 1, + 12, + 1.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.5, + 11.5, + 2, + 12 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 11.5, + 1.5, + 12, + 2 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2, + 11.5, + 2.5, + 12 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 12, + 2.5, + 11.5, + 2 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3, + 11.5, + 2.5, + 12 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.75, + 0.76924, + 13.89672 + ], + "to": [ + 8.25, + 2.11924, + 14.49672 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 0.76924, + 17.49672 + ] + }, + "faces": { + "north": { + "uv": [ + 11.5, + 1, + 12, + 1.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 1.5, + 11.5, + 2, + 12 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 11.5, + 1.5, + 12, + 2 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 2, + 11.5, + 2.5, + 12 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 12, + 2.5, + 11.5, + 2 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 3, + 11.5, + 2.5, + 12 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.75, + 1.06924, + 12.54672 + ], + "to": [ + 8.25, + 2.11924, + 12.89672 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 1.59424, + 12.82172 + ] + }, + "faces": { + "north": { + "uv": [ + 11.5, + 2.5, + 12, + 3 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 3, + 11.5, + 3.5, + 12 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 11.5, + 3, + 12, + 3.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 3.5, + 11.5, + 4, + 12 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 12, + 4, + 11.5, + 3.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 4.5, + 11.5, + 4, + 12 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.5, + 1.75, + 3.75 + ], + "to": [ + 8.5, + 2, + 5.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 7.75 + ] + }, + "faces": { + "north": { + "uv": [ + 11.5, + 4, + 12, + 4.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 10.5, + 4.5, + 11.5, + 5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 4.5, + 11.5, + 5, + 12 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 5, + 10.5, + 6, + 11 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 11, + 6, + 10.5, + 5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 11, + 6, + 10.5, + 7 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.7, + 2.95, + -13.25 + ], + "to": [ + 8.3, + 3.55, + 1.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.75, + 4 + ] + }, + "faces": { + "north": { + "uv": [ + 11.5, + 6, + 12, + 6.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 0, + 4, + 7.5, + 4.5 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 6.5, + 11.5, + 7, + 12 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 4, + 2, + 11.5, + 2.5 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 0.5, + 12, + 0, + 4.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 1, + 4.5, + 0.5, + 12 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.9, + 3.55, + -13 + ], + "to": [ + 8.1, + 4.85, + -12.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.75, + 4 + ] + }, + "faces": { + "north": { + "uv": [ + 11.5, + 6.5, + 12, + 7 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7, + 11.5, + 7.5, + 12 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 11.5, + 7, + 12, + 7.5 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7.5, + 11.5, + 8, + 12 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 12, + 8, + 11.5, + 7.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8.5, + 11.5, + 8, + 12 + ], + "texture": "#1" + } + } + }, + { + "from": [ + 7.7, + 3.95, + -5 + ], + "to": [ + 8.3, + 4.55, + 1 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.75, + 4 + ] + }, + "faces": { + "north": { + "uv": [ + 11.5, + 8, + 12, + 8.5 + ], + "texture": "#1" + }, + "east": { + "uv": [ + 7, + 1.5, + 10, + 2 + ], + "texture": "#1" + }, + "south": { + "uv": [ + 8.5, + 11.5, + 9, + 12 + ], + "texture": "#1" + }, + "west": { + "uv": [ + 7, + 2.5, + 10, + 3 + ], + "texture": "#1" + }, + "up": { + "uv": [ + 7.5, + 9.5, + 7, + 6.5 + ], + "texture": "#1" + }, + "down": { + "uv": [ + 8, + 6.5, + 7.5, + 9.5 + ], + "texture": "#1" + } + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [ + -1.5, + 4.25, + -2.75 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + }, + "thirdperson_lefthand": { + "translation": [ + -1.5, + 4.25, + -2.75 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + }, + "ground": { + "translation": [ + 0, + 9, + 0 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + }, + "head": { + "translation": [ + 0, + 18.75, + 0 + ] + }, + "fixed": { + "rotation": [ + 90, + -45, + 90 + ], + "translation": [ + -4, + 1.5, + 0 + ], + "scale": [ + 0.75, + 0.75, + 0.75 + ] + } + }, + "groups": [ + { + "name": "group", + "origin": [ + 8, + 3.25, + 7.75 + ], + "color": 0, + "children": [ + 0, + 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 + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/sks_base.json b/src/main/resources/assets/superbwarfare/models/item/sks_base.json new file mode 100644 index 000000000..e46fcb904 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/sks_base.json @@ -0,0 +1,6 @@ +{ + "parent": "superbwarfare:displaysettings/sks.item", + "textures": { + "layer0": "superbwarfare:item/sks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/sks_icon.json b/src/main/resources/assets/superbwarfare/models/item/sks_icon.json new file mode 100644 index 000000000..883d22611 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/sks_icon.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/sks_icon" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/sniper_ammo_box.json b/src/main/resources/assets/superbwarfare/models/item/sniper_ammo_box.json new file mode 100644 index 000000000..22263bbd1 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/sniper_ammo_box.json @@ -0,0 +1,7 @@ +{ + "parent": "superbwarfare:custom/sniperammobox", + "textures": { + "0": "superbwarfare:block/sniperammobox", + "particle": "superbwarfare:item/hk4163d" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/subsistence.json b/src/main/resources/assets/superbwarfare/models/item/subsistence.json new file mode 100644 index 000000000..a3e3ad1bb --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/subsistence.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/perk/subsistence" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/svd.json b/src/main/resources/assets/superbwarfare/models/item/svd.json new file mode 100644 index 000000000..f83f4fb15 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/svd.json @@ -0,0 +1,27 @@ +{ + "loader": "forge:separate_transforms", + "gui_light": "front", + "base": { + "parent": "superbwarfare:item/svd_base" + }, + "perspectives": { + "gui": { + "parent": "superbwarfare:item/svd_icon" + }, + "thirdperson_righthand": { + "parent": "superbwarfare:item/svd3d" + }, + "thirdperson_lefthand": { + "parent": "superbwarfare:item/svd3d" + }, + "ground": { + "parent": "superbwarfare:item/svd3d" + }, + "fixed": { + "parent": "superbwarfare:item/svd3d" + }, + "head": { + "parent": "superbwarfare:item/svd3d" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/svd3d.json b/src/main/resources/assets/superbwarfare/models/item/svd3d.json new file mode 100644 index 000000000..c7d585dc2 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/svd3d.json @@ -0,0 +1,2272 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 32, + 32 + ], + "textures": { + "0": "superbwarfare:item/ak473d", + "particle": "superbwarfare:item/ak473d" + }, + "elements": [ + { + "from": [ + 7.7, + 2.74237, + -7.20836 + ], + "to": [ + 8.3, + 3.34237, + -5.70836 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 8, + 3.04237, + -6.83336 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 4.5, + 7.5, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 8.5, + 10, + 9 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 6.5, + 8.5, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 9, + 10, + 9.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 1, + 9.5, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 1, + 9.5, + 2 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 2.25, + -4 + ], + "to": [ + 8.5, + 4.25, + 6.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 7.75 + ] + }, + "faces": { + "north": { + "uv": [ + 2, + 9.5, + 2.5, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 4, + 3, + 5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 2, + 10, + 3 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 2, + 7, + 3 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 9.5, + 2, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 6.5, + 2.5, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 2, + 6.5 + ], + "to": [ + 8.5, + 4.25, + 14.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 7.75 + ] + }, + "faces": { + "north": { + "uv": [ + 2.5, + 9.5, + 3, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 2, + 4, + 3 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 3, + 10, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 3, + 4, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 8, + 3.5, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 5, + 6, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.4, + 2.7, + 18.75 + ], + "to": [ + 8.6, + 3.35, + 22.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 7.75 + ] + }, + "faces": { + "north": { + "uv": [ + 2.5, + 9.5, + 3, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 2, + 4, + 3 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 3, + 10, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 3, + 4, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 8, + 3.5, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 5, + 6, + 9 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 4.25, + 6.5 + ], + "to": [ + 8.5, + 4.5, + 9.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 7.75 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 4, + 9, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 1.5, + 6.5, + 2 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 5.5, + 10.5, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 6, + 9.5, + 6.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 9.5, + 7.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 8, + 8, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 5, + 6.55 + ], + "to": [ + 8.5, + 6, + 14.55 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 7.75 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 4, + 9, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 1.5, + 6.5, + 2 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 5.5, + 10.5, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 6, + 9.5, + 6.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 9.5, + 7.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 8, + 8, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.3, + 2.6, + 9.05 + ], + "to": [ + 7.5, + 6, + 9.95 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 7.75 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 4, + 9, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 1.5, + 6.5, + 2 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 5.5, + 10.5, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 6, + 9.5, + 6.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 9.5, + 7.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 8, + 8, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.3, + 2.6, + 11.3 + ], + "to": [ + 7.5, + 6, + 12.2 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 7.75 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 4, + 9, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 1.5, + 6.5, + 2 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 5.5, + 10.5, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 6, + 9.5, + 6.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 9.5, + 7.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 8, + 8, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.7, + -0.65, + 6.7 + ], + "to": [ + 8.3, + 2.75, + 9.7 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 3.25, + 7.75 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 9.5, + 5.5, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 6.5, + 6, + 7.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 9.5, + 6, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 6, + 8, + 7 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0.5, + 10, + 0, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 8.5, + 0.5, + 10 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.50391, + -1, + 13.1 + ], + "to": [ + 8.49609, + 2.5, + 14.6 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 0.5, + 13.75 + ] + }, + "faces": { + "north": { + "uv": [ + 5, + 7.5, + 5.5, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 6.5, + 1, + 8.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 7.5, + 6, + 9.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 0, + 7.5, + 2 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 10.5, + 6.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 9.5, + 7, + 10.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + -1, + 12.85 + ], + "to": [ + 8.5, + -0.25, + 13.1 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 0.5, + 13.75 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 7, + 10.5, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 7.5, + 10.5, + 8 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 8.5, + 10.5, + 9 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 9, + 10.5, + 9.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.5, + 10, + 10, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 10, + 10, + 10.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.75, + 0.76924, + 10.74672 + ], + "to": [ + 8.25, + 0.86924, + 12.99672 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 0.76924, + 13.74672 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 0, + 11, + 0.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 4, + 10.5, + 4.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 0.5, + 11, + 1 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 6, + 10.5, + 6.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 8, + 9.5, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 9.5, + 7.5, + 10.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.75, + 0.76924, + 10.14672 + ], + "to": [ + 8.25, + 2.11924, + 10.74672 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 0.76924, + 13.74672 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 1, + 11, + 1.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 1.5, + 11, + 2 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 10.5, + 2.5, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 2, + 11, + 2.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 11, + 2.5, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 2.5, + 10.5, + 3 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.75, + 1.06924, + 11.54672 + ], + "to": [ + 8.25, + 2.11924, + 11.89672 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 1.59424, + 11.82172 + ] + }, + "faces": { + "north": { + "uv": [ + 3, + 10.5, + 3.5, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 3, + 11, + 3.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 10.5, + 4, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 3.5, + 11, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 11, + 4, + 10.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11, + 4, + 10.5, + 4.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 2, + 3.75 + ], + "to": [ + 8.5, + 2.25, + 6.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 7.75 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 4.5, + 11, + 5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 4.5, + 10, + 5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 10.5, + 5.5, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 6.5, + 10.5, + 7 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 10.5, + 6, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 7, + 9, + 8.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + -0.37392, + 12.58471 + ], + "to": [ + 8.5, + 1.62608, + 14.08471 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 8, + 0.62608, + 16.70971 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 9.5, + 8.5, + 10.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 7, + 8.5, + 8 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 9.5, + 9, + 10.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 0, + 9, + 1 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 10.5, + 9, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10, + 9.5, + 9.5, + 10.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.49609, + 0.77044, + 14.21513 + ], + "to": [ + 8.50391, + 2.12044, + 15.71513 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 1.12044, + 18.34013 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 10, + 0.5, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 5, + 1 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 0, + 10.5, + 1 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 1, + 5, + 2 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 9, + 3, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 3, + 4, + 8 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.49609, + -1.11164, + 13.00506 + ], + "to": [ + 8.50391, + 0.23836, + 13.80506 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 8, + -0.76164, + 16.93006 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 10, + 0.5, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 5, + 1 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 0, + 10.5, + 1 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 1, + 5, + 2 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 9, + 3, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 3, + 4, + 8 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.50391, + -0.56054, + 14.35932 + ], + "to": [ + 8.51173, + -0.06054, + 19.10932 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8.00782, + 0.43946, + 20.23432 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 10, + 0.5, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 5, + 1 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 0, + 10.5, + 1 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 1, + 5, + 2 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 9, + 3, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 3, + 4, + 8 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.50391, + -2.84686, + 18.85346 + ], + "to": [ + 8.51173, + -2.34686, + 20.85346 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8.00782, + -1.84686, + 24.72846 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 10, + 0.5, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 5, + 1 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 0, + 10.5, + 1 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 1, + 5, + 2 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 9, + 3, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 3, + 4, + 8 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.50391, + -1.32591, + 20.75708 + ], + "to": [ + 8.51173, + -0.82591, + 23.45708 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8.00782, + -1.07591, + 21.95708 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 10, + 0.5, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 5, + 1 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 0, + 10.5, + 1 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 1, + 5, + 2 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 9, + 3, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 3, + 4, + 8 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 1.93141, + 15.64906 + ], + "to": [ + 8.5, + 3.08141, + 22.39906 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 1.53141, + 21.27406 + ] + }, + "faces": { + "north": { + "uv": [ + 0.5, + 10, + 1, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 3, + 7, + 4 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 10, + 1.5, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 4, + 7, + 5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 4.5, + 7, + 2 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 7, + 6.5, + 9.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + -0.91859, + 22.39906 + ], + "to": [ + 8.5, + 3.08141, + 23.38343 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 1.53141, + 21.27406 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 1, + 8.5, + 3 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 3, + 8.5, + 5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 8, + 4, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 8, + 4.5, + 10 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 5.5, + 10.5, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 10.5, + 5.5, + 11 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.7, + -0.61859, + 19.64906 + ], + "to": [ + 8.3, + 1.98141, + 20.63343 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 1.53141, + 21.27406 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 1, + 8.5, + 3 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 3, + 8.5, + 5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 8, + 4, + 10 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 8, + 4.5, + 10 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 5.5, + 10.5, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 10.5, + 5.5, + 11 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + -1.50219, + 23.3764 + ], + "to": [ + 8.5, + 3.08141, + 24.14906 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 1.53141, + 21.27406 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 7, + 7.5, + 9.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 0, + 8, + 2.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 2.5, + 8, + 5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 7.5, + 5, + 10 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 6, + 10.5, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.5, + 10.5, + 6, + 11 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.7, + 2.45, + -16 + ], + "to": [ + 8.3, + 3.05, + -4 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 1.75 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 6, + 11, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 5, + 10, + 5.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 10.5, + 7, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 5.5, + 10, + 6 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 10, + 1, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 6.5, + 1.5, + 10 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.9, + 3.05, + -15.75 + ], + "to": [ + 8.1, + 4.85, + -15 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 1.75 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 1, + 10.5, + 2 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 10, + 2, + 11 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 2, + 10.5, + 3 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 3, + 10.5, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 7, + 10.5, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 10.5, + 7, + 11 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.7, + 3.45, + -6.25 + ], + "to": [ + 8.3, + 4.05, + -4 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 3.25, + 2.75 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 7, + 11, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 8, + 10.5, + 8.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 10.5, + 8, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 10, + 4.5, + 10.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 11, + 4.5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 4.5, + 10, + 5.5 + ], + "texture": "#0" + } + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [ + -1.5, + 4.25, + -2.75 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + }, + "thirdperson_lefthand": { + "translation": [ + -1.5, + 4.25, + -2.75 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + }, + "ground": { + "translation": [ + 0, + 9, + 0 + ], + "scale": [ + 0.7, + 0.7, + 0.7 + ] + }, + "head": { + "translation": [ + 0, + 18.75, + 0 + ] + }, + "fixed": { + "rotation": [ + 90, + -45, + 90 + ], + "translation": [ + -2.5, + 4.25, + 0 + ], + "scale": [ + 0.75, + 0.75, + 0.75 + ] + } + }, + "groups": [ + { + "name": "group", + "origin": [ + 8, + 3.25, + 7.75 + ], + "color": 0, + "children": [ + 0, + 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 + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/svd_base.json b/src/main/resources/assets/superbwarfare/models/item/svd_base.json new file mode 100644 index 000000000..60f99989e --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/svd_base.json @@ -0,0 +1,6 @@ +{ + "parent": "superbwarfare:displaysettings/svd.item", + "textures": { + "layer0": "superbwarfare:item/svd" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/svd_icon.json b/src/main/resources/assets/superbwarfare/models/item/svd_icon.json new file mode 100644 index 000000000..7c72c5c63 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/svd_icon.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/svdicon" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/taser.json b/src/main/resources/assets/superbwarfare/models/item/taser.json new file mode 100644 index 000000000..9cfcde07c --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/taser.json @@ -0,0 +1,27 @@ +{ + "loader": "forge:separate_transforms", + "gui_light": "front", + "base": { + "parent": "superbwarfare:item/taser_base" + }, + "perspectives": { + "gui": { + "parent": "superbwarfare:item/taser3d" + }, + "thirdperson_righthand": { + "parent": "superbwarfare:item/taser3d" + }, + "thirdperson_lefthand": { + "parent": "superbwarfare:item/taser3d" + }, + "ground": { + "parent": "superbwarfare:item/taser3d" + }, + "fixed": { + "parent": "superbwarfare:item/taser3d" + }, + "head": { + "parent": "superbwarfare:item/taser3d" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/taser3d.json b/src/main/resources/assets/superbwarfare/models/item/taser3d.json new file mode 100644 index 000000000..44b28f22c --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/taser3d.json @@ -0,0 +1,3934 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 32, + 32 + ], + "textures": { + "0": "superbwarfare:item/tasergun" + }, + "elements": [ + { + "from": [ + 7.35, + 7.45, + 4.5 + ], + "to": [ + 8.65, + 9.15, + 7.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 8.3, + 5.75 + ] + }, + "faces": { + "north": { + "uv": [ + 4.5, + 3, + 5.125, + 3.875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 0, + 3.5, + 0.875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 4, + 5.125, + 4.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 1, + 3.5, + 1.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0.625, + 5, + 0, + 3.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.125, + 0, + 3.5, + 1.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.55, + 7.55, + 2.9 + ], + "to": [ + 8.45, + 9.05, + 3 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 8.3, + 5.75 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 5.5, + 4.5, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 5.5, + 9.625, + 6.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 6, + 0.5, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 9.5, + 6.125, + 10.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 10.125, + 5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 5, + 10, + 5.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.35, + 7.45, + 2.95 + ], + "to": [ + 8.65, + 9.15, + 4.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 8.3, + 5.75 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 5, + 0.625, + 5.875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 4, + 1.75, + 4.875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 5, + 1.625, + 5.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 4, + 2.75, + 4.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.625, + 6.25, + 3, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.125, + 3, + 5.5, + 3.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 7.15, + 4.25 + ], + "to": [ + 8.5, + 9.55, + 4.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8.05, + 8.3, + 5.75 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 2, + 4.5, + 3.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 8, + 6.125, + 9.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 4, + 3.5, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 6, + 8.125, + 7.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 10.125, + 5.5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.5, + 5.5, + 10, + 5.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 9.09825, + 3.88986 + ], + "to": [ + 8.5, + 9.49825, + 4.33986 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 9.29825, + 4.16486 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 6.5, + 9, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 6, + 10.25, + 6.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 7, + 9, + 7.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 10, + 6.75, + 10.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9, + 7.75, + 8.5, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 8.5, + 8, + 8.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 7.20175, + 3.88986 + ], + "to": [ + 8.5, + 7.60175, + 4.33986 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 7.40175, + 4.16486 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 8, + 9, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 6.5, + 10.25, + 6.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 8.5, + 9, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 10, + 7.25, + 10.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0.5, + 9.25, + 0, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 9, + 0.5, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 7.0257, + 3.16269 + ], + "to": [ + 8.5, + 7.4257, + 3.61269 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 7.4757, + 4.18769 + ] + }, + "faces": { + "north": { + "uv": [ + 1, + 9, + 1.5, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 7, + 10.25, + 7.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 9, + 2, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 10, + 7.75, + 10.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 9.25, + 2, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 9, + 2.5, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 8.92605, + 3.12411 + ], + "to": [ + 8.5, + 9.32605, + 3.57411 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 9.12605, + 3.39911 + ] + }, + "faces": { + "north": { + "uv": [ + 3, + 9, + 3.5, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 7.5, + 10.25, + 7.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3.5, + 9, + 4, + 9.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 10, + 8.25, + 10.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 4.25, + 9, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 9, + 4.5, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 9.07779, + 3.48425 + ], + "to": [ + 8.5, + 9.37779, + 3.93425 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 9.17779, + 3.05925 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 8, + 10.5, + 8.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 8.5, + 10.75, + 8.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 10, + 9, + 10.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 10.5, + 9.25, + 10.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 4.75, + 9, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 9, + 5, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 7.28, + 3.48425 + ], + "to": [ + 8.5, + 7.51, + 3.93425 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 9.17221, + 2.85925 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 8.5, + 10.5, + 8.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 9, + 10.75, + 9.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 10, + 9.5, + 10.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 10.5, + 9.75, + 10.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 5.25, + 9, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 9, + 5.5, + 9.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 7.98995, + 4.93076 + ], + "to": [ + 8.75, + 8.78995, + 5.73076 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 8, + 9.28995, + 4.83076 + ] + }, + "faces": { + "north": { + "uv": [ + 6.5, + 4, + 7.25, + 4.375 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 8.5, + 4.875, + 8.875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 6.5, + 5.25, + 6.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 8.5, + 5.375, + 8.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 4.875, + 6.5, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 5, + 6.5, + 5.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.75, + 7.45, + 9.3 + ], + "to": [ + 8.25, + 9.15, + 10.5 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 8.3, + 5.75 + ] + }, + "faces": { + "north": { + "uv": [ + 1, + 7.5, + 1.25, + 8.375 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 5, + 2.625, + 5.875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 7.5, + 1.75, + 8.375 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 5, + 5.125, + 5.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 8.625, + 6.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 8, + 7, + 8.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.55, + 6.25, + 9.5 + ], + "to": [ + 8.45, + 7.25, + 10.2 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 8.3, + 9.9 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 7, + 0.5, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 1.5, + 7.875, + 2 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0.5, + 7, + 1, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2, + 7.5, + 2.375, + 8 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 2.375, + 7.5, + 2 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 7.5, + 2.5, + 7.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.55, + 5.3, + 9.6 + ], + "to": [ + 8.45, + 6, + 10.3 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 8.3, + 9.9 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 2.5, + 8, + 2.875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 5, + 8.875, + 5.375 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3, + 7.5, + 3.5, + 7.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 8.5, + 5.875, + 8.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 3.375, + 7.5, + 3 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 7.5, + 3.5, + 7.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.55, + 5.622, + 9.6647 + ], + "to": [ + 8.45, + 6.422, + 10.3647 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 5.922, + 10.0147 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 3.5, + 8, + 3.875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 5.5, + 8.875, + 5.875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 7.5, + 4.5, + 7.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 6, + 8.875, + 6.375 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 4.375, + 7.5, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 4.5, + 7.5, + 4.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.55, + 4.972, + 9.7647 + ], + "to": [ + 8.45, + 5.472, + 10.4647 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 4.972, + 10.1147 + ] + }, + "faces": { + "north": { + "uv": [ + 9, + 5.5, + 9.5, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.5, + 9.5, + 6.875, + 9.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 6, + 9.5, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 6.5, + 9.875, + 6.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 5.375, + 7.5, + 5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 7.5, + 5.5, + 7.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.75, + 7.06449, + 9.12441 + ], + "to": [ + 8.25, + 8.26449, + 9.82441 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 7.66449, + 9.47441 + ] + }, + "faces": { + "north": { + "uv": [ + 7.5, + 8, + 7.75, + 8.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 7, + 4.875, + 7.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 7.5, + 8.25, + 8.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 7, + 5.375, + 7.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.25, + 9.875, + 7, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.75, + 7, + 9.5, + 7.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 4.7, + 9.8 + ], + "to": [ + 8.5, + 7.15, + 11.7 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 6.925, + 10.5 + ] + }, + "faces": { + "north": { + "uv": [ + 3.5, + 4, + 4, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 2, + 3, + 3.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 4, + 4.5, + 5.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 2, + 4, + 3.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 1, + 5.5, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 2, + 5.5, + 3 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.6, + 7.15, + 9.8 + ], + "to": [ + 8.4, + 8.7, + 11.4 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 6.975, + 10.5 + ] + }, + "faces": { + "north": { + "uv": [ + 5.5, + 6.5, + 5.875, + 7.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 0, + 5.25, + 0.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 5.5, + 6.875, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.5, + 2, + 5.25, + 2.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.375, + 7.25, + 6, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.875, + 6.5, + 6.5, + 7.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.6, + 8.7, + 9.8 + ], + "to": [ + 8.6, + 9.65, + 11 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 6.925, + 10.5 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 0.5, + 7.5, + 1 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 6, + 5.125, + 6.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 7, + 1.5, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 6, + 6.125, + 6.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 7.125, + 1.5, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 6.5, + 2, + 7.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.4, + 9.3, + 9.8 + ], + "to": [ + 8.6, + 9.65, + 11 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 6.925, + 10.5 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 3.5, + 10.625, + 3.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 10, + 4.625, + 10.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 4, + 10.625, + 4.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 4.5, + 10.625, + 4.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.125, + 4.625, + 5.5, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.125, + 5, + 5.5, + 5.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.4, + 8.7, + 11 + ], + "to": [ + 8.6, + 9.65, + 11.8 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 6.925, + 10.5 + ] + }, + "faces": { + "north": { + "uv": [ + 6.5, + 2, + 7.125, + 2.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6, + 7.5, + 6.375, + 8 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 2.5, + 7.125, + 3 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 7.5, + 6.875, + 8 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.625, + 5.875, + 7, + 5.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.625, + 6, + 7, + 6.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.4, + 8.74114, + 11.60465 + ], + "to": [ + 8.6, + 9.61114, + 12.00465 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 9.11614, + 11.80465 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 6.5, + 7.625, + 6.875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 9.5, + 7.75, + 9.875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 7, + 7.625, + 7.375 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 7.5, + 9.75, + 7.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.125, + 0.75, + 8.5, + 0.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.625, + 8.5, + 1, + 8.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 8.84114, + 11.60465 + ], + "to": [ + 8.5, + 9.51114, + 12.01465 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 9.11614, + 11.90465 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 7.5, + 7.5, + 7.875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 9.5, + 8.25, + 9.875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 7.5, + 8, + 7.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 8, + 9.75, + 8.375 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 9.25, + 6.5, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 6.5, + 9, + 6.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 4.71522, + 11.62654 + ], + "to": [ + 8.5, + 6.21522, + 12.17654 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 6.74022, + 10.57654 + ] + }, + "faces": { + "north": { + "uv": [ + 0.5, + 6, + 1, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 8, + 0.25, + 8.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 6, + 1.5, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.5, + 8, + 0.75, + 8.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 9.25, + 7, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 7, + 9, + 7.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 6.03006, + 11.24565 + ], + "to": [ + 8.5, + 7.13006, + 11.79565 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 7.08006, + 11.52065 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 1.5, + 7.5, + 2 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 9, + 7.75, + 9.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 7, + 3, + 7.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 7.5, + 9.25, + 8 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.5, + 9.25, + 8, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.5, + 8, + 9, + 8.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 7.36308, + 11.21009 + ], + "to": [ + 8.5, + 7.91308, + 11.81009 + ], + "rotation": { + "angle": 45, + "axis": "x", + "origin": [ + 8, + 7.63808, + 10.96009 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 9, + 9, + 9.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 9, + 10.25, + 9.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 8.5, + 9.5, + 8.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 10, + 9.75, + 10.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 9.5, + 9.25, + 9, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.5, + 9.5, + 0, + 9.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.6, + 7.74917, + 10.674 + ], + "to": [ + 8.4, + 8.84917, + 11.124 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 7.24917, + 11.349 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 1, + 8.375, + 1.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 0, + 9.75, + 0.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 1.5, + 8.375, + 2 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.5, + 9.5, + 0.75, + 10 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8.875, + 9.75, + 8.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.875, + 8.5, + 9.5, + 8.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 4.4, + 10 + ], + "to": [ + 8.5, + 4.7, + 10.7 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 6.975, + 10.5 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 9.5, + 10.5, + 9.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 6, + 10.875, + 6.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10, + 10, + 10.5, + 10.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 10.5, + 6.875, + 10.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.5, + 8.375, + 2, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 2, + 8, + 2.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 4.5, + 10.6 + ], + "to": [ + 8.5, + 4.8, + 11.3 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 6.975, + 10.5 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 10.5, + 0.5, + 10.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 6.5, + 10.875, + 6.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 10.5, + 0, + 11, + 0.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 10.5, + 7.375, + 10.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3, + 8.375, + 2.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 2.5, + 8, + 2.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 4.58649, + 9.99165 + ], + "to": [ + 8.5, + 5.03649, + 10.69165 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 4.38649, + 10.74165 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 0.5, + 10, + 0.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 9.5, + 9.375, + 9.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 9.5, + 1.5, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9.5, + 9, + 9.875, + 9.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 8.375, + 3, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 3, + 8, + 3.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 4.80224, + 11.31945 + ], + "to": [ + 8.5, + 5.25224, + 12.01945 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 4.60224, + 12.06945 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 1, + 10, + 1.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9.5, + 9.5, + 9.875, + 9.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 9.5, + 2, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 10, + 0.375, + 10.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 8.375, + 3.5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 3.5, + 8, + 3.875 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 4.70224, + 10.71945 + ], + "to": [ + 8.5, + 5.15224, + 11.41945 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 4.50224, + 11.46945 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 1.5, + 10, + 1.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 0, + 10.375, + 0.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 9.5, + 2.5, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0.5, + 10, + 0.875, + 10.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.5, + 8.375, + 4, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 4, + 8, + 4.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.85, + 8.35, + 8.8 + ], + "to": [ + 8.15, + 9.15, + 9.3 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 8.3, + 5.75 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 7, + 10.625, + 7.375 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 0.5, + 10.25, + 0.875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 10.5, + 7.625, + 10.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 10, + 1.25, + 10.375 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.625, + 9.75, + 10.5, + 9.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.125, + 10.5, + 10, + 10.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.35, + 8.95, + 10.6 + ], + "to": [ + 8.65, + 9.35, + 11 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 8, + 9.15, + 10.8 + ] + }, + "faces": { + "north": { + "uv": [ + 8.5, + 1, + 9.125, + 1.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.5, + 10.5, + 0.75, + 10.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.5, + 1.5, + 9.125, + 1.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10.5, + 0.5, + 10.75, + 0.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.625, + 8.75, + 2, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 9.125, + 2, + 8.5, + 2.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 9.05, + 9.9 + ], + "to": [ + 8.75, + 9.25, + 11 + ], + "rotation": { + "angle": -45, + "axis": "x", + "origin": [ + 8, + 9.15, + 10.8 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 1, + 10.75, + 1.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 10.5, + 1.5, + 10.625 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1.5, + 10, + 2.25, + 10.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1.5, + 10.5, + 2, + 10.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.75, + 1, + 6, + 0.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.25, + 6, + 1.5, + 6.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.85, + 7.67612, + 8.66596 + ], + "to": [ + 8.15, + 8.47612, + 9.16596 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 8.07612, + 8.91596 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 7.5, + 10.625, + 7.875 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10, + 1.5, + 10.25, + 1.875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 10.5, + 8.125, + 10.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 2, + 10.25, + 2.375 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.625, + 10.25, + 10.5, + 10 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 10.625, + 10.5, + 10.5, + 10.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 9.15, + 4.5 + ], + "to": [ + 8.5, + 9.55, + 10.75 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 4, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 2, + 10, + 2.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 3.5, + 4.125, + 3.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 9.5, + 3, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 1.5, + 6.625, + 1.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0.5, + 3.125, + 0, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 0, + 0.5, + 3.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.7, + 9.35, + 6.7 + ], + "to": [ + 8.3, + 9.6, + 7.25 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 9.675, + 6.925 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 11, + 0.25, + 11.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 11, + 0, + 11.25, + 0.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0.5, + 11, + 0.75, + 11.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 0.5, + 11.25, + 0.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10.75, + 1.75, + 10.5, + 1.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.25, + 10.5, + 2, + 10.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.7, + 9.33087, + 7.25381 + ], + "to": [ + 8.3, + 9.58087, + 7.40381 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 9.65587, + 6.87881 + ] + }, + "faces": { + "north": { + "uv": [ + 1, + 11, + 1.25, + 11.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 11, + 3.125, + 11.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 11, + 1, + 11.25, + 1.125 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 3, + 11.125, + 3.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 11.125, + 1.5, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.25, + 1.5, + 11, + 1.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 7.15, + 4.5 + ], + "to": [ + 8.5, + 7.45, + 10.75 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 4, + 8 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 2, + 11, + 2.125 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.5, + 1, + 7.625, + 1.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2.5, + 10.5, + 3, + 10.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 0, + 9.125, + 0.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.5, + 3.125, + 1, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 0, + 1.5, + 3.125 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 6.48828, + 4.67669 + ], + "to": [ + 8.5, + 7.03828, + 5.57669 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 7.26328, + 6.25169 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 2.5, + 10, + 2.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 9.5, + 3.5, + 9.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9.5, + 3, + 10, + 3.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.5, + 9.5, + 4, + 9.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 3.5, + 7, + 3 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.5, + 3.5, + 7, + 4 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 6.80558, + 5.33149 + ], + "to": [ + 8.5, + 7.35558, + 5.83149 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 7.08058, + 5.38149 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 3.5, + 10, + 3.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 2.5, + 10.75, + 2.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 9.5, + 4.5, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 10.5, + 3.25, + 10.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 4.25, + 9.5, + 4 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 9.5, + 4.5, + 9.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 6.40737, + 6.68348 + ], + "to": [ + 8.5, + 7.15737, + 7.08348 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 6.68237, + 5.13348 + ] + }, + "faces": { + "north": { + "uv": [ + 4.5, + 8, + 5, + 8.375 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2.5, + 10, + 2.75, + 10.375 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 4.5, + 8.5, + 4.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 2.5, + 10.25, + 2.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 4.75, + 9.5, + 4.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5.5, + 9.5, + 5, + 9.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 6.86659, + 7.04213 + ], + "to": [ + 8.5, + 7.21659, + 8.44213 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 6.64159, + 4.24213 + ] + }, + "faces": { + "north": { + "uv": [ + 3.5, + 10.5, + 4, + 10.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 10, + 3.75, + 10.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 10.5, + 4.5, + 10.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 10, + 3, + 10.75, + 3.125 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 2.75, + 6, + 2 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 6, + 2.5, + 6.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 6.55103, + 6.90572 + ], + "to": [ + 8.5, + 7.10103, + 8.10572 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 6.92603, + 7.35572 + ] + }, + "faces": { + "north": { + "uv": [ + 9.5, + 5, + 10, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 2.5, + 9.125, + 2.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 9.5, + 6, + 9.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 8.5, + 3.625, + 8.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 7.125, + 3, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7, + 3, + 6.5, + 3.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 6.24488, + 8.41661 + ], + "to": [ + 8.5, + 6.59488, + 9.16661 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 6.61988, + 6.86661 + ] + }, + "faces": { + "north": { + "uv": [ + 4.5, + 10.5, + 5, + 10.625 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 10.5, + 8, + 10.875, + 8.125 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 10.5, + 5.5, + 10.625 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 10.5, + 8.875, + 10.625 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.5, + 8.375, + 5, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.5, + 5, + 8, + 5.375 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.75, + 6.45, + 5.38348 + ], + "to": [ + 8.25, + 6.85, + 6.68348 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 6.68237, + 5.13348 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 5, + 10.75, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8.5, + 3, + 9.125, + 3.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 10.5, + 5.75, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8.5, + 3.5, + 9.125, + 3.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4.25, + 9.125, + 4, + 8.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 4, + 8.5, + 4.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.75, + 6.45, + 5.13348 + ], + "to": [ + 8.25, + 6.85, + 5.38348 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 6.68237, + 5.13348 + ] + }, + "faces": { + "north": { + "uv": [ + 10.5, + 5.5, + 10.75, + 5.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 2, + 11, + 2.125, + 11.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6, + 10.5, + 6.25, + 10.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 11, + 2, + 11.125, + 2.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.75, + 11.125, + 2.5, + 11 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 11.25, + 2.5, + 11, + 2.625 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 6.90126, + 5.81246 + ], + "to": [ + 8.5, + 7.75126, + 6.96246 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 7.5, + 7.35559, + 5.58149 + ] + }, + "faces": { + "north": { + "uv": [ + 5.5, + 8, + 6, + 8.375 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 7.5, + 0.625, + 7.875 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 5.5, + 8.5, + 5.875 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 0.5, + 8.125, + 0.875 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 7.125, + 3.5, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 6.5, + 4, + 7.125 + ], + "texture": "#0" + } + } + } + ], + "gui_light": "front", + "display": { + "thirdperson_righthand": { + "translation": [ + 0, + -0.25, + 0 + ] + }, + "thirdperson_lefthand": { + "translation": [ + 0, + -0.25, + 0 + ] + }, + "firstperson_righthand": { + "translation": [ + -5.75, + 4.25, + 2 + ] + }, + "firstperson_lefthand": { + "translation": [ + -5.75, + 4.25, + 2 + ] + }, + "gui": { + "rotation": [ + 165.69, + -39.63, + 178.66 + ], + "translation": [ + -0.5, + 1, + 0 + ], + "scale": [ + 1.9, + 1.9, + 1.9 + ] + }, + "head": { + "translation": [ + 0, + 10.25, + -1.25 + ] + }, + "fixed": { + "rotation": [ + 90, + -45, + 90 + ], + "translation": [ + 0, + 0.5, + 0 + ], + "scale": [ + 1.5, + 1.5, + 1.5 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/taser_base.json b/src/main/resources/assets/superbwarfare/models/item/taser_base.json new file mode 100644 index 000000000..13c7cef0c --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/taser_base.json @@ -0,0 +1,6 @@ +{ + "parent": "superbwarfare:displaysettings/taser.item", + "textures": { + "layer0": "superbwarfare:item/tasergun" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/taser_electrode.json b/src/main/resources/assets/superbwarfare/models/item/taser_electrode.json new file mode 100644 index 000000000..2cc8afb34 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/taser_electrode.json @@ -0,0 +1,7 @@ +{ + "parent": "superbwarfare:custom/taser_electrode", + "textures": { + "0": "superbwarfare:block/tasergun", + "particle": "superbwarfare:item/tasergun" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/trachelium.json b/src/main/resources/assets/superbwarfare/models/item/trachelium.json new file mode 100644 index 000000000..c281dab4e --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/trachelium.json @@ -0,0 +1,27 @@ +{ + "loader": "forge:separate_transforms", + "gui_light": "front", + "base": { + "parent": "superbwarfare:item/trachelium_base" + }, + "perspectives": { + "gui": { + "parent": "superbwarfare:item/trachelium_icon" + }, + "thirdperson_righthand": { + "parent": "superbwarfare:item/trachelium3d" + }, + "thirdperson_lefthand": { + "parent": "superbwarfare:item/trachelium3d" + }, + "ground": { + "parent": "superbwarfare:item/trachelium3d" + }, + "fixed": { + "parent": "superbwarfare:item/trachelium3d" + }, + "head": { + "parent": "superbwarfare:item/trachelium3d" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/trachelium3d.json b/src/main/resources/assets/superbwarfare/models/item/trachelium3d.json new file mode 100644 index 000000000..0b5ba3479 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/trachelium3d.json @@ -0,0 +1,464 @@ +{ + "credit": "Made with Blockbench", + "textures": { + "0": "superbwarfare:item/trachelium3d", + "particle": "superbwarfare:item/trachelium3d" + }, + "elements": [ + { + "from": [ + 7.5, + 4, + 2 + ], + "to": [ + 8.5, + 5, + 8 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 4.5, + 6 + ] + }, + "faces": { + "north": { + "uv": [ + 10, + 0, + 11, + 1 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3, + 0, + 9, + 1 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 1, + 10, + 2, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3, + 1, + 9, + 2 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 4, + 8, + 3, + 2 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 5, + 2, + 4, + 8 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 2.75, + 8 + ], + "to": [ + 8.5, + 5.25, + 11.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 4.5, + 6 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 8, + 5, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0, + 0, + 3, + 3 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 8, + 6, + 11 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 0, + 3, + 3, + 6 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7, + 11, + 6, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 8, + 7, + 11 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + 2.75, + 11.25 + ], + "to": [ + 8.5, + 4.25, + 12.25 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 4.5, + 6 + ] + }, + "faces": { + "north": { + "uv": [ + 2, + 6, + 3, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 9, + 3, + 10, + 5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 5, + 10, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 9, + 7, + 10, + 9 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 11, + 2, + 10, + 1 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 10, + 2, + 11 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7, + 3, + 8.5 + ], + "to": [ + 9, + 5, + 10.75 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 4.5, + 6 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 6, + 2, + 8 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7, + 2, + 9, + 4 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 4, + 9, + 6 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7, + 6, + 9, + 8 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2, + 10, + 0, + 8 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 8, + 2, + 10 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.5, + -0.25, + 10.5 + ], + "to": [ + 8.5, + 2.75, + 12.75 + ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ + 8, + 4.5, + 6 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 8, + 9, + 11 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 2, + 7, + 5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 9, + 0, + 10, + 3 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5, + 5, + 7, + 8 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 10, + 11, + 9, + 9 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 10, + 0, + 12 + ], + "texture": "#0" + } + } + } + ], + "display": { + "thirdperson_righthand": { + "translation": [ + 0, + 5.75, + -1.5 + ] + }, + "thirdperson_lefthand": { + "translation": [ + 0, + 5.75, + -1.5 + ], + "scale": [ + 0, + 0, + 0 + ] + }, + "ground": { + "translation": [ + 0, + 5.75, + 0 + ] + }, + "head": { + "translation": [ + 0, + 15.5, + 0 + ] + }, + "fixed": { + "rotation": [ + 0, + -90, + 0 + ], + "translation": [ + -0.75, + 8, + 0 + ], + "scale": [ + 1.5, + 1.5, + 1.5 + ] + } + }, + "groups": [ + { + "name": "trachelium3d", + "origin": [ + 8, + 4.5, + 6 + ], + "color": 0, + "children": [ + 0, + 1, + 2, + 3, + 4 + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/trachelium_base.json b/src/main/resources/assets/superbwarfare/models/item/trachelium_base.json new file mode 100644 index 000000000..a57eefb35 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/trachelium_base.json @@ -0,0 +1,6 @@ +{ + "parent": "superbwarfare:displaysettings/trachelium.item", + "textures": { + "layer0": "superbwarfare:item/trachelium_texture" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/trachelium_icon.json b/src/main/resources/assets/superbwarfare/models/item/trachelium_icon.json new file mode 100644 index 000000000..27f0c3416 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/trachelium_icon.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/trachelium_icon" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/turbo_charger.json b/src/main/resources/assets/superbwarfare/models/item/turbo_charger.json new file mode 100644 index 000000000..388e492af --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/turbo_charger.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/perk/turbo_charger" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/vector.json b/src/main/resources/assets/superbwarfare/models/item/vector.json new file mode 100644 index 000000000..52d85b486 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/vector.json @@ -0,0 +1,27 @@ +{ + "loader": "forge:separate_transforms", + "gui_light": "front", + "base": { + "parent": "superbwarfare:item/vector_base" + }, + "perspectives": { + "gui": { + "parent": "superbwarfare:item/vector_icon" + }, + "thirdperson_righthand": { + "parent": "superbwarfare:item/vector3d" + }, + "thirdperson_lefthand": { + "parent": "superbwarfare:item/vector3d" + }, + "ground": { + "parent": "superbwarfare:item/vector3d" + }, + "fixed": { + "parent": "superbwarfare:item/vector3d" + }, + "head": { + "parent": "superbwarfare:item/vector3d" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/vector3d.json b/src/main/resources/assets/superbwarfare/models/item/vector3d.json new file mode 100644 index 000000000..8a584a69b --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/vector3d.json @@ -0,0 +1,2149 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [ + 64, + 64 + ], + "textures": { + "0": "superbwarfare:item/vector3d", + "particle": "superbwarfare:item/vector3d" + }, + "elements": [ + { + "from": [ + 7, + 3, + 10 + ], + "to": [ + 9, + 8, + 12 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 3, + 11 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 5, + 4.5, + 6.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5, + 4.25, + 5.5, + 5.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4.5, + 5, + 5, + 6.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.25, + 2.75, + 5.75, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 6.75, + 7, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 7.25, + 4, + 7.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + -4, + 10.25 + ], + "to": [ + 8.75, + 8, + 12.25 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 3, + 11 + ] + }, + "faces": { + "north": { + "uv": [ + 1, + 1.5, + 1.5, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1.5, + 1.5, + 2, + 4.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 2, + 1.5, + 2.5, + 4.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 2.5, + 1.5, + 3, + 4.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 7.75, + 4.5, + 7.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8, + 1.5, + 7.5, + 2 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7, + 3, + 13 + ], + "to": [ + 9, + 8, + 15 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 3, + 14 + ] + }, + "faces": { + "north": { + "uv": [ + 3, + 5.5, + 3.5, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 4, + 6, + 5.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 5.5, + 5.5, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 5.25, + 6, + 6.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 2.5, + 7.5, + 2 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 7.5, + 3.5, + 8 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.75, + 8, + 20.5 + ], + "to": [ + 9.25, + 10.5, + 31.4 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 6.1, + 23.9 + ] + }, + "faces": { + "north": { + "uv": [ + 3, + 5.5, + 3.5, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 4, + 6, + 5.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 5.5, + 5.5, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 5.25, + 6, + 6.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 2.5, + 7.5, + 2 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 7.5, + 3.5, + 8 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.75, + 3.25, + 29.5 + ], + "to": [ + 9.25, + 8, + 31.4 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 5.625, + 30.45 + ] + }, + "faces": { + "north": { + "uv": [ + 3, + 5.5, + 3.5, + 6.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 4, + 6, + 5.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5, + 5.5, + 5.5, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 5.25, + 6, + 6.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 2.5, + 7.5, + 2 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 7.5, + 3.5, + 8 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.75, + 5.09046, + 22.54434 + ], + "to": [ + 9.25, + 8.48656, + 30.04434 + ], + "rotation": { + "angle": 22.5, + "axis": "x", + "origin": [ + 8, + 5.03656, + 27.66934 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 2.5, + 7.5, + 2 + ], + "rotation": 180, + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 4, + 6, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 7.5, + 3.5, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 5.25, + 6, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 5.5, + 5.5, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 5.5, + 3.5, + 6.75 + ], + "rotation": 180, + "texture": "#0" + } + } + }, + { + "from": [ + 6.75, + 7.04761, + 21.70508 + ], + "to": [ + 9.25, + 8.45933, + 23.56446 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 6.99371, + 28.08008 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 2.5, + 7.5, + 2 + ], + "rotation": 180, + "texture": "#0" + }, + "east": { + "uv": [ + 5.5, + 4, + 6, + 5.25 + ], + "rotation": 90, + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 7.5, + 3.5, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 5.5, + 5.25, + 6, + 6.5 + ], + "rotation": 270, + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 5.5, + 5.5, + 6.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 5.5, + 3.5, + 6.75 + ], + "rotation": 180, + "texture": "#0" + } + } + }, + { + "from": [ + 7, + 2.5, + 17 + ], + "to": [ + 9, + 8.25, + 19 + ], + "rotation": { + "angle": -22.5, + "axis": "x", + "origin": [ + 8, + 3, + 14 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 5.75, + 0.5, + 7 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 0.5, + 5.75, + 1, + 7 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.75, + 2.75, + 6.25, + 4 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6, + 4, + 6.5, + 5.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 8, + 4.25, + 7.5, + 3.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6, + 7.5, + 5.5, + 8 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7, + 2.61732, + 10.07612 + ], + "to": [ + 9, + 7.61732, + 13.07612 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 2.61732, + 11.07612 + ] + }, + "faces": { + "north": { + "uv": [ + 6, + 5.25, + 6.5, + 6.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 3.25, + 4.25, + 4.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.25, + 0, + 6.75, + 1.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 1, + 4.75, + 2.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0.5, + 7.75, + 0, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 7, + 0.5, + 7.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7, + 7.11732, + 4.32612 + ], + "to": [ + 9, + 8.36732, + 13.07612 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 2.61732, + 11.07612 + ] + }, + "faces": { + "north": { + "uv": [ + 7, + 1.5, + 7.5, + 2.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 1, + 0, + 3.25, + 0.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 3.75, + 7.5, + 4.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 1, + 0.75, + 3.25, + 1.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 3.75, + 3, + 1.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 0.5, + 3.5, + 0, + 5.75 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 10.36732, + 4.32612 + ], + "to": [ + 8.75, + 10.61732, + 18.32612 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 2.61732, + 11.07612 + ] + }, + "faces": { + "north": { + "uv": [ + 3.5, + 8, + 4, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4, + 2.25, + 7.5, + 2.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 8, + 6, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4, + 2.5, + 7.5, + 2.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 0.5, + 3.5, + 0, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1, + 0, + 0.5, + 3.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7, + 10.46732, + 10.32612 + ], + "to": [ + 9, + 10.91732, + 14.32612 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 2.61732, + 11.07612 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 7.25, + 8.5, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.25, + 0.75, + 8.25, + 1 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 8, + 8, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 2.5, + 8.5, + 2.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6, + 1, + 5.5, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.5, + 6.25, + 4, + 7.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7, + 12.26732, + 10.32612 + ], + "to": [ + 9, + 12.41732, + 10.92612 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 4.51732, + 11.07612 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 7.5, + 8.5, + 7.75 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 4.25, + 8.5, + 4.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 7.75, + 8.5, + 8 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 5.5, + 8.5, + 5.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 7.25, + 4.5, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 6.5, + 3.5, + 7.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7, + 10.91732, + 10.32612 + ], + "to": [ + 7.15, + 12.26732, + 10.92612 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 1.91732, + 11.07612 + ] + }, + "faces": { + "north": { + "uv": [ + 3.25, + 1, + 3.5, + 1.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 5.75, + 8.5, + 6 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 3.25, + 1.25, + 3.5, + 1.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 6, + 8.5, + 6.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.25, + 1, + 6, + 0 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 6.25, + 7.5, + 6, + 8.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.85, + 10.91732, + 10.32612 + ], + "to": [ + 9, + 12.26732, + 10.92612 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 1.91732, + 11.07612 + ] + }, + "faces": { + "north": { + "uv": [ + 4, + 2.75, + 4.25, + 3 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.5, + 6.25, + 8.5, + 6.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 4, + 3, + 4.25, + 3.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 7.5, + 6.5, + 8.5, + 6.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 8.5, + 6.25, + 7.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 7, + 7.5, + 8 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7, + 8.36732, + 4.32612 + ], + "to": [ + 9, + 10.36732, + 18.57612 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 2.61732, + 11.07612 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 7.75, + 0.5, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 4.5, + 5, + 5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 0, + 8.25, + 0.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 1, + 6.25, + 1.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 4.25, + 4.75, + 2.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 5, + 3.5, + 6.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 6.8, + 7.11732, + -6.17388 + ], + "to": [ + 9.2, + 10.36732, + 4.07612 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 2.61732, + 11.07612 + ] + }, + "faces": { + "north": { + "uv": [ + 0, + 7.75, + 0.5, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.5, + 4.5, + 5, + 5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.75, + 0, + 8.25, + 0.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 1, + 6.25, + 1.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5.25, + 4.25, + 4.75, + 2.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 5, + 3.5, + 6.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7, + 8.36732, + 18.57612 + ], + "to": [ + 9, + 10.11732, + 25.32612 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 2.61732, + 11.07612 + ] + }, + "faces": { + "north": { + "uv": [ + 8, + 8, + 8.5, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.75, + 1, + 8.5, + 1.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 0, + 8.25, + 0.5, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.5, + 6.75, + 8.25, + 7 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 3.5, + 5.5, + 3, + 3.75 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4.75, + 2.75, + 4.25, + 4.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7, + 7.11732, + -16 + ], + "to": [ + 9, + 9.36732, + 4.07612 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 2.61732, + 11.07612 + ] + }, + "faces": { + "north": { + "uv": [ + 6.5, + 7.75, + 7, + 8.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 3.25, + 0, + 5.5, + 0.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 7.75, + 7.5, + 8.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 3.25, + 0.5, + 5.5, + 1 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1, + 5.75, + 0.5, + 3.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 4, + 1, + 3.5, + 3.25 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.35355, + 9.37087, + -16 + ], + "to": [ + 8.10355, + 9.72087, + 4.07612 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8.35355, + 3.22087, + 11.07612 + ] + }, + "faces": { + "north": { + "uv": [ + 4.75, + 4.25, + 5, + 4.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 1.5, + 7, + 1.75 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.25, + 4, + 5.5, + 4.25 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 4.75, + 1.75, + 7, + 2 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.25, + 8.5, + 1, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 1.5, + 6.25, + 1.25, + 8.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.03033, + 8.94054, + -16 + ], + "to": [ + 7.53033, + 9.44054, + 4.07612 + ], + "rotation": { + "angle": -45, + "axis": "z", + "origin": [ + 7.53033, + 9.19054, + -0.54888 + ] + }, + "faces": { + "north": { + "uv": [ + 6.25, + 3.75, + 6.5, + 4 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 4.75, + 2, + 7, + 2.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7, + 8.25, + 7.25, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 1.25, + 8.5, + 1.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 1.75, + 8.5, + 1.5, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2, + 6.25, + 1.75, + 8.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 8.46967, + 8.94054, + -16 + ], + "to": [ + 8.96967, + 9.44054, + 4.07612 + ], + "rotation": { + "angle": 45, + "axis": "z", + "origin": [ + 8.46967, + 9.19054, + -0.54888 + ] + }, + "faces": { + "north": { + "uv": [ + 7.25, + 8.25, + 7.5, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 2.75, + 8.5, + 3 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 7.5, + 8.25, + 7.75, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 3, + 8.5, + 3.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.25, + 8.5, + 2, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 2.5, + 6.25, + 2.25, + 8.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.89645, + 9.37087, + -16 + ], + "to": [ + 8.64645, + 9.72087, + 4.07612 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 7.64645, + 3.22087, + 11.07612 + ] + }, + "faces": { + "north": { + "uv": [ + 7.75, + 8.25, + 8, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 6.25, + 3.25, + 8.5, + 3.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8, + 8.25, + 8.25, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 6.25, + 3.5, + 8.5, + 3.75 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 2.75, + 8.5, + 2.5, + 6.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 3, + 6.25, + 2.75, + 8.5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 3.11732, + 5.57612 + ], + "to": [ + 8.75, + 7.11732, + 6.82612 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 2.61732, + 11.07612 + ] + }, + "faces": { + "north": { + "uv": [ + 5.5, + 6.5, + 6, + 7.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 7, + 8, + 8 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 6.5, + 5.75, + 7, + 6.75 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 1.5, + 8.25, + 2.5 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 5, + 8.5, + 4.5, + 8.25 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 8.75, + 4.75, + 8.25, + 5 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7.25, + 7.24232, + 1.95112 + ], + "to": [ + 8.75, + 8.49232, + 5.95112 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + 5.11732, + 6.20112 + ] + }, + "faces": { + "north": { + "uv": [ + 8.25, + 5, + 8.75, + 5.25 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 7.75, + 5.25, + 8.75, + 5.5 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 5.5, + 8.25, + 6, + 8.5 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 3.75, + 9, + 4 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 6.5, + 7.5, + 6, + 6.5 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.25, + 0, + 6.75, + 1 + ], + "texture": "#0" + } + } + }, + { + "from": [ + 7, + 3.68611, + 14.21298 + ], + "to": [ + 9, + 4.18611, + 16.96298 + ], + "rotation": { + "angle": 0, + "axis": "x", + "origin": [ + 8, + -0.81389, + 8.96298 + ] + }, + "faces": { + "north": { + "uv": [ + 6.5, + 8.25, + 7, + 8.5 + ], + "texture": "#0" + }, + "east": { + "uv": [ + 8, + 4, + 8.75, + 4.25 + ], + "texture": "#0" + }, + "south": { + "uv": [ + 8.25, + 6.75, + 8.75, + 7 + ], + "texture": "#0" + }, + "west": { + "uv": [ + 8, + 7, + 8.75, + 7.25 + ], + "texture": "#0" + }, + "up": { + "uv": [ + 7.5, + 7.75, + 7, + 7 + ], + "texture": "#0" + }, + "down": { + "uv": [ + 7.75, + 0, + 7.25, + 0.75 + ], + "texture": "#0" + } + } + } + ], + "gui_light": "front", + "display": { + "thirdperson_righthand": { + "translation": [ + -0.75, + 0.5, + -3.75 + ], + "scale": [ + 0.6, + 0.6, + 0.6 + ] + }, + "thirdperson_lefthand": { + "translation": [ + -0.75, + 0.5, + -0.25 + ], + "scale": [ + 0.6, + 0.6, + 0.6 + ] + }, + "firstperson_lefthand": { + "scale": [ + 0, + 0, + 0 + ] + }, + "ground": { + "translation": [ + 0, + 3.25, + 0 + ], + "scale": [ + 0.5, + 0.5, + 0.5 + ] + }, + "gui": { + "rotation": [ + 0, + 90, + 0 + ], + "translation": [ + 0.5, + -0.25, + -1.5 + ], + "scale": [ + 1.1, + 1.1, + 1.1 + ] + }, + "head": { + "translation": [ + 0, + 11.75, + 0 + ] + }, + "fixed": { + "rotation": [ + 0, + 90, + 0 + ], + "translation": [ + -2.25, + 2.5, + -1.5 + ], + "scale": [ + 1.1, + 1.1, + 1.1 + ] + } + }, + "groups": [ + { + "name": "group", + "origin": [ + 8, + 8, + 8 + ], + "color": 0, + "children": [ + 0, + 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 + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/vector_base.json b/src/main/resources/assets/superbwarfare/models/item/vector_base.json new file mode 100644 index 000000000..cf31be152 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/vector_base.json @@ -0,0 +1,6 @@ +{ + "parent": "superbwarfare:displaysettings/vector.item", + "textures": { + "layer0": "superbwarfare:item/vector" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/vector_icon.json b/src/main/resources/assets/superbwarfare/models/item/vector_icon.json new file mode 100644 index 000000000..9e3f7f57e --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/vector_icon.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/vector_icon" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/volt_overload.json b/src/main/resources/assets/superbwarfare/models/item/volt_overload.json new file mode 100644 index 000000000..a98980d14 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/volt_overload.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/perk/volt_overload" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/models/item/vorpal_weapon.json b/src/main/resources/assets/superbwarfare/models/item/vorpal_weapon.json new file mode 100644 index 000000000..65df62008 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/models/item/vorpal_weapon.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "superbwarfare:item/perk/vorpal_weapon" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/particles/bullet_hole.json b/src/main/resources/assets/superbwarfare/particles/bullet_hole.json new file mode 100644 index 000000000..14eefd54f --- /dev/null +++ b/src/main/resources/assets/superbwarfare/particles/bullet_hole.json @@ -0,0 +1,5 @@ +{ + "textures": [ + "superbwarfare:bullet_hole" + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/particles/custom_cloud.json b/src/main/resources/assets/superbwarfare/particles/custom_cloud.json new file mode 100644 index 000000000..271261099 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/particles/custom_cloud.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "minecraft:generic_7", + "minecraft:generic_6", + "minecraft:generic_5", + "minecraft:generic_4", + "minecraft:generic_3", + "minecraft:generic_2", + "minecraft:generic_1", + "minecraft:generic_0" + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/particles/fire_star.json b/src/main/resources/assets/superbwarfare/particles/fire_star.json new file mode 100644 index 000000000..40d808ec2 --- /dev/null +++ b/src/main/resources/assets/superbwarfare/particles/fire_star.json @@ -0,0 +1,12 @@ +{ + "textures": [ + "superbwarfare:fire_star_1", + "superbwarfare:fire_star_2", + "superbwarfare:fire_star_3", + "superbwarfare:fire_star_4", + "superbwarfare:fire_star_5", + "superbwarfare:fire_star_6", + "superbwarfare:fire_star_7", + "superbwarfare:fire_star_8" + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/sounds.json b/src/main/resources/assets/superbwarfare/sounds.json new file mode 100644 index 000000000..4bab1a45c --- /dev/null +++ b/src/main/resources/assets/superbwarfare/sounds.json @@ -0,0 +1,2951 @@ +{ + "taser_fire_1p": { + "sounds": [ + { + "name": "superbwarfare:taser/taser_fire_1p", + "stream": false + } + ] + }, + "taser_fire_3p": { + "sounds": [ + { + "name": "superbwarfare:taser/taser_fire_3p", + "stream": false + } + ] + }, + "taser_reload_empty": { + "sounds": [ + { + "name": "superbwarfare:taser/taser_reload", + "stream": false + } + ] + }, + "trachelium_fire_1p": { + "sounds": [ + { + "name": "superbwarfare:trachelium/trachelium_fire_1p", + "stream": false + } + ] + }, + "trachelium_fire_3p": { + "sounds": [ + { + "name": "superbwarfare:trachelium/trachelium_fire_3p", + "stream": false + } + ] + }, + "trachelium_far": { + "sounds": [ + { + "name": "superbwarfare:trachelium/trachelium_far", + "stream": false + } + ] + }, + "trachelium_veryfar": { + "sounds": [ + { + "name": "superbwarfare:trachelium/trachelium_veryfar", + "stream": false + } + ] + }, + "trachelium_fire_1p_s": { + "sounds": [ + { + "name": "superbwarfare:trachelium/trachelium_fire_1p_s", + "stream": false + } + ] + }, + "trachelium_fire_3p_s": { + "sounds": [ + { + "name": "superbwarfare:trachelium/trachelium_fire_3p_s", + "stream": false + } + ] + }, + "trachelium_far_s": { + "sounds": [ + { + "name": "superbwarfare:trachelium/trachelium_far_s", + "stream": false + } + ] + }, + "trachelium_reload_empty": { + "sounds": [ + { + "name": "superbwarfare:trachelium/trachelium_reload", + "stream": false + } + ] + }, + "trachelium_bolt": { + "sounds": [ + { + "name": "superbwarfare:trachelium/trachelium_shift", + "stream": false + } + ] + }, + "hunting_rifle_fire_1p": { + "sounds": [ + { + "name": "superbwarfare:hunting_rifle/hunting_rifle_fire_1p", + "stream": false + } + ] + }, + "hunting_rifle_fire_3p": { + "sounds": [ + { + "name": "superbwarfare:hunting_rifle/hunting_rifle_fire_3p", + "stream": false + } + ] + }, + "hunting_rifle_far": { + "sounds": [ + { + "name": "superbwarfare:hunting_rifle/hunting_rifle_far", + "stream": false + } + ] + }, + "hunting_rifle_veryfar": { + "sounds": [ + { + "name": "superbwarfare:hunting_rifle/hunting_rifle_veryfar", + "stream": false + } + ] + }, + "hunting_rifle_reload_empty": { + "sounds": [ + { + "name": "superbwarfare:hunting_rifle/hunting_rifle_reload", + "stream": false + } + ] + }, + "m_79_fire_1p": { + "sounds": [ + { + "name": "superbwarfare:m_79/m_79_fire_1p", + "stream": false + } + ] + }, + "m_79_fire_3p": { + "sounds": [ + { + "name": "superbwarfare:m_79/m_79_fire_3p", + "stream": false + } + ] + }, + "m_79_far": { + "sounds": [ + { + "name": "superbwarfare:m_79/m_79_far", + "stream": false + } + ] + }, + "m_79_veryfar": { + "sounds": [ + { + "name": "superbwarfare:m_79/m_79_veryfar", + "stream": false + } + ] + }, + "m_79_reload_empty": { + "sounds": [ + { + "name": "superbwarfare:m_79/m_79_reload", + "stream": false + } + ] + }, + "sks_fire_1p": { + "sounds": [ + { + "name": "superbwarfare:sks/sks_fire_1p", + "stream": false + } + ] + }, + "sks_fire_3p": { + "sounds": [ + { + "name": "superbwarfare:sks/sks_fire_3p", + "stream": false + } + ] + }, + "sks_reload_normal": { + "sounds": [ + { + "name": "superbwarfare:sks/sks_reload_normal", + "stream": false + } + ] + }, + "sks_reload_empty": { + "sounds": [ + { + "name": "superbwarfare:sks/sks_reload_empty", + "stream": false + } + ] + }, + "sks_far": { + "sounds": [ + { + "name": "superbwarfare:sks/sks_far", + "stream": false + } + ] + }, + "sks_veryfar": { + "sounds": [ + { + "name": "superbwarfare:sks/sks_veryfar", + "stream": false + } + ] + }, + "homemade_shotgun_fire_1p": { + "sounds": [ + { + "name": "superbwarfare:homemade_shotgun/homemade_shotgun_fire_1p", + "stream": false + } + ] + }, + "homemade_shotgun_fire_3p": { + "sounds": [ + { + "name": "superbwarfare:homemade_shotgun/homemade_shotgun_fire_3p", + "stream": false + } + ] + }, + "homemade_shotgun_far": { + "sounds": [ + { + "name": "superbwarfare:homemade_shotgun/homemade_shotgun_far", + "stream": false + } + ] + }, + "homemade_shotgun_veryfar": { + "sounds": [ + { + "name": "superbwarfare:homemade_shotgun/homemade_shotgun_veryfar", + "stream": false + } + ] + }, + "homemade_shotgun_reload_normal": { + "sounds": [ + { + "name": "superbwarfare:homemade_shotgun/homemade_shotgun_reload_normal", + "stream": false + } + ] + }, + "homemade_shotgun_reload_empty": { + "sounds": [ + { + "name": "superbwarfare:homemade_shotgun/homemade_shotgun_reload_empty", + "stream": false + } + ] + }, + "ak_47_fire_1p": { + "sounds": [ + { + "name": "superbwarfare:ak_47/ak_47_fire_1p", + "stream": false + } + ] + }, + "ak_47_fire_1p_s": { + "sounds": [ + { + "name": "superbwarfare:ak_47/ak_47_fire_1p_s", + "stream": false + } + ] + }, + "ak_47_fire_3p": { + "sounds": [ + { + "name": "superbwarfare:ak_47/ak_47_fire_3p", + "stream": false + } + ] + }, + "ak_47_fire_3p_s": { + "sounds": [ + { + "name": "superbwarfare:ak_47/ak_47_fire_3p_s", + "stream": false + } + ] + }, + "ak_47_far": { + "sounds": [ + { + "name": "superbwarfare:ak_47/ak_47_far", + "stream": false + } + ] + }, + "ak_47_veryfar": { + "sounds": [ + { + "name": "superbwarfare:ak_47/ak_47_veryfar", + "stream": false + } + ] + }, + "ak_47_reload_normal": { + "sounds": [ + { + "name": "superbwarfare:ak_47/ak_47_reload_normal", + "stream": false + } + ] + }, + "ak_47_reload_empty": { + "sounds": [ + { + "name": "superbwarfare:ak_47/ak_47_reload_empty", + "stream": false + } + ] + }, + "devotion_fire_1p": { + "sounds": [ + { + "name": "superbwarfare:devotion/devotion_fire_1p", + "stream": false + } + ] + }, + "devotion_fire_3p": { + "sounds": [ + { + "name": "superbwarfare:devotion/devotion_fire_3p", + "stream": false + } + ] + }, + "devotion_far": { + "sounds": [ + { + "name": "superbwarfare:devotion/devotion_far", + "stream": false + } + ] + }, + "devotion_veryfar": { + "sounds": [ + { + "name": "superbwarfare:devotion/devotion_veryfar", + "stream": false + } + ] + }, + "devotion_reload_normal": { + "sounds": [ + { + "name": "superbwarfare:devotion/devotion_reload_normal", + "stream": false + } + ] + }, + "devotion_reload_empty": { + "sounds": [ + { + "name": "superbwarfare:devotion/devotion_reload_empty", + "stream": false + } + ] + }, + "rpg_fire_1p": { + "sounds": [ + { + "name": "superbwarfare:rpg/rpg_fire_1p", + "stream": false + } + ] + }, + "rpg_fire_3p": { + "sounds": [ + { + "name": "superbwarfare:rpg/rpg_fire_3p", + "stream": false + } + ] + }, + "rpg_far": { + "sounds": [ + { + "name": "superbwarfare:rpg/rpg_far", + "stream": false + } + ] + }, + "rpg_veryfar": { + "sounds": [ + { + "name": "superbwarfare:rpg/rpg_veryfar", + "stream": false + } + ] + }, + "rpg_reload_empty": { + "sounds": [ + { + "name": "superbwarfare:rpg/rpg_reload", + "stream": false + } + ] + }, + "m_4_fire_1p": { + "sounds": [ + { + "name": "superbwarfare:m_4/m_4_fire_1p", + "stream": false + } + ] + }, + "m_4_fire_1p_s": { + "sounds": [ + { + "name": "superbwarfare:m_4/m_4_fire_1p_s", + "stream": false + } + ] + }, + "m_4_fire_3p": { + "sounds": [ + { + "name": "superbwarfare:m_4/m_4_fire_3p", + "stream": false + } + ] + }, + "m_4_fire_3p_s": { + "sounds": [ + { + "name": "superbwarfare:m_4/m_4_fire_3p_s", + "stream": false + } + ] + }, + "m_4_far": { + "sounds": [ + { + "name": "superbwarfare:m_4/m_4_far", + "stream": false + } + ] + }, + "m_4_veryfar": { + "sounds": [ + { + "name": "superbwarfare:m_4/m_4_veryfar", + "stream": false + } + ] + }, + "m_4_reload_normal": { + "sounds": [ + { + "name": "superbwarfare:m_4/m_4_reload_normal", + "stream": false + } + ] + }, + "m_4_reload_empty": { + "sounds": [ + { + "name": "superbwarfare:m_4/m_4_reload_empty", + "stream": false + } + ] + }, + "aa_12_fire_1p": { + "sounds": [ + { + "name": "superbwarfare:aa_12/aa_12_fire_1p", + "stream": false + } + ] + }, + "aa_12_fire_3p": { + "sounds": [ + { + "name": "superbwarfare:aa_12/aa_12_fire_3p", + "stream": false + } + ] + }, + "aa_12_far": { + "sounds": [ + { + "name": "superbwarfare:aa_12/aa_12_far", + "stream": false + } + ] + }, + "aa_12_veryfar": { + "sounds": [ + { + "name": "superbwarfare:aa_12/aa_12_veryfar", + "stream": false + } + ] + }, + "aa_12_reload_normal": { + "sounds": [ + { + "name": "superbwarfare:aa_12/aa_12_reload_normal", + "stream": false + } + ] + }, + "aa_12_reload_empty": { + "sounds": [ + { + "name": "superbwarfare:aa_12/aa_12_reload_empty", + "stream": false + } + ] + }, + "bocek_zoom_fire_1p": { + "sounds": [ + { + "name": "superbwarfare:bocek/bocek_zoom_fire_1p", + "stream": false + } + ] + }, + "bocek_zoom_fire_3p": { + "sounds": [ + { + "name": "superbwarfare:bocek/bocek_zoom_fire_3p", + "stream": false + } + ] + }, + "bocek_shatter_cap_fire_1p": { + "sounds": [ + { + "name": "superbwarfare:bocek/bocek_shatter_cap_fire_1p", + "stream": false + } + ] + }, + "bocek_shatter_cap_fire_3p": { + "sounds": [ + { + "name": "superbwarfare:bocek/bocek_shatter_cap_fire_3p", + "stream": false + } + ] + }, + "bocek_pull_1p": { + "sounds": [ + { + "name": "superbwarfare:bocek/bocek_pull_1p", + "stream": false + } + ] + }, + "bocek_pull_3p": { + "sounds": [ + { + "name": "superbwarfare:bocek/bocek_pull_3p", + "stream": false + } + ] + }, + "hk_416_fire_1p": { + "sounds": [ + { + "name": "superbwarfare:hk_416/hk_416_fire_1p", + "stream": false + } + ] + }, + "hk_416_fire_1p_s": { + "sounds": [ + { + "name": "superbwarfare:hk_416/hk_416_fire_1p_s", + "stream": false + } + ] + }, + "hk_416_fire_3p": { + "sounds": [ + { + "name": "superbwarfare:hk_416/hk_416_fire_3p", + "stream": false + } + ] + }, + "hk_416_fire_3p_s": { + "sounds": [ + { + "name": "superbwarfare:hk_416/hk_416_fire_3p_s", + "stream": false + } + ] + }, + "hk_416_far": { + "sounds": [ + { + "name": "superbwarfare:hk_416/hk_416_far", + "stream": false + } + ] + }, + "hk_416_veryfar": { + "sounds": [ + { + "name": "superbwarfare:hk_416/hk_416_veryfar", + "stream": false + } + ] + }, + "hk_416_reload_normal": { + "sounds": [ + { + "name": "superbwarfare:hk_416/hk_416_reload_normal", + "stream": false + } + ] + }, + "hk_416_reload_empty": { + "sounds": [ + { + "name": "superbwarfare:hk_416/hk_416_reload_empty", + "stream": false + } + ] + }, + "rpk_fire_1p": { + "sounds": [ + { + "name": "superbwarfare:rpk/rpk_fire_1p", + "stream": false + } + ] + }, + "rpk_fire_3p": { + "sounds": [ + { + "name": "superbwarfare:rpk/rpk_fire_3p", + "stream": false + } + ] + }, + "rpk_far": { + "sounds": [ + { + "name": "superbwarfare:rpk/rpk_far", + "stream": false + } + ] + }, + "rpk_veryfar": { + "sounds": [ + { + "name": "superbwarfare:rpk/rpk_veryfar", + "stream": false + } + ] + }, + "rpk_reload_normal": { + "sounds": [ + { + "name": "superbwarfare:rpk/rpk_reload_normal", + "stream": false + } + ] + }, + "rpk_reload_empty": { + "sounds": [ + { + "name": "superbwarfare:rpk/rpk_reload_empty", + "stream": false + } + ] + }, + "ntw_20_fire_1p": { + "sounds": [ + { + "name": "superbwarfare:ntw_20/ntw_20_fire_1p", + "stream": false + } + ] + }, + "ntw_20_fire_3p": { + "sounds": [ + { + "name": "superbwarfare:ntw_20/ntw_20_fire_3p", + "stream": false + } + ] + }, + "ntw_20_far": { + "sounds": [ + { + "name": "superbwarfare:ntw_20/ntw_20_far", + "stream": false + } + ] + }, + "ntw_20_veryfar": { + "sounds": [ + { + "name": "superbwarfare:ntw_20/ntw_20_veryfar", + "stream": false + } + ] + }, + "ntw_20_reload_normal": { + "sounds": [ + { + "name": "superbwarfare:ntw_20/ntw_20_reload_normal", + "stream": false + } + ] + }, + "ntw_20_reload_empty": { + "sounds": [ + { + "name": "superbwarfare:ntw_20/ntw_20_reload_empty", + "stream": false + } + ] + }, + "ntw_20_bolt": { + "sounds": [ + { + "name": "superbwarfare:ntw_20/ntw_20_bolt", + "stream": false + } + ] + }, + "vector_fire_1p": { + "sounds": [ + { + "name": "superbwarfare:vector/vector_fire_1p", + "stream": false + } + ] + }, + "vector_fire_3p": { + "sounds": [ + { + "name": "superbwarfare:vector/vector_fire_3p", + "stream": false + } + ] + }, + "vector_far": { + "sounds": [ + { + "name": "superbwarfare:vector/vector_far", + "stream": false + } + ] + }, + "vector_veryfar": { + "sounds": [ + { + "name": "superbwarfare:vector/vector_veryfar", + "stream": false + } + ] + }, + "vector_fire_1p_s": { + "sounds": [ + { + "name": "superbwarfare:vector/vector_fire_1p_s", + "stream": false + } + ] + }, + "vector_fire_3p_s": { + "sounds": [ + { + "name": "superbwarfare:vector/vector_fire_3p_s", + "stream": false + } + ] + }, + "vector_far_s": { + "sounds": [ + { + "name": "superbwarfare:vector/vector_far_s", + "stream": false + } + ] + }, + "vector_reload_normal": { + "sounds": [ + { + "name": "superbwarfare:vector/vector_reload_normal", + "stream": false + } + ] + }, + "vector_reload_empty": { + "sounds": [ + { + "name": "superbwarfare:vector/vector_reload_empty", + "stream": false + } + ] + }, + "minigun_fire_1p": { + "sounds": [ + { + "name": "superbwarfare:minigun/minigun_fire_1p", + "stream": false + } + ] + }, + "minigun_fire_3p": { + "sounds": [ + { + "name": "superbwarfare:minigun/minigun_fire_3p", + "stream": false + } + ] + }, + "minigun_far": { + "sounds": [ + { + "name": "superbwarfare:minigun/minigun_far", + "stream": false + } + ] + }, + "minigun_veryfar": { + "sounds": [ + { + "name": "superbwarfare:minigun/minigun_veryfar", + "stream": false + } + ] + }, + "minigun_rot": { + "sounds": [ + { + "name": "superbwarfare:minigun/minigun_rot", + "stream": false + } + ] + }, + "minigun_overheat": { + "sounds": [ + { + "name": "superbwarfare:minigun/minigun_overheat", + "stream": false + } + ] + }, + "mk_14_fire_1p": { + "sounds": [ + { + "name": "superbwarfare:mk_14/mk_14_fire_1p", + "stream": false + } + ] + }, + "mk_14_fire_3p": { + "sounds": [ + { + "name": "superbwarfare:mk_14/mk_14_fire_3p", + "stream": false + } + ] + }, + "mk_14_far": { + "sounds": [ + { + "name": "superbwarfare:mk_14/mk_14_far", + "stream": false + } + ] + }, + "mk_14_veryfar": { + "sounds": [ + { + "name": "superbwarfare:mk_14/mk_14_veryfar", + "stream": false + } + ] + }, + "mk_14_fire_1p_s": { + "sounds": [ + { + "name": "superbwarfare:mk_14/mk_14_fire_1p_s", + "stream": false + } + ] + }, + "mk_14_fire_3p_s": { + "sounds": [ + { + "name": "superbwarfare:mk_14/mk_14_fire_3p_s", + "stream": false + } + ] + }, + "mk_14_far_s": { + "sounds": [ + { + "name": "superbwarfare:mk_14/mk_14_far_s", + "stream": false + } + ] + }, + "mk_14_reload_normal": { + "sounds": [ + { + "name": "superbwarfare:mk_14/mk_14_reload_normal", + "stream": false + } + ] + }, + "mk_14_reload_empty": { + "sounds": [ + { + "name": "superbwarfare:mk_14/mk_14_reload_empty", + "stream": false + } + ] + }, + "sentinel_fire_1p": { + "sounds": [ + { + "name": "superbwarfare:sentinel/sentinel_fire_1p", + "stream": false + } + ] + }, + "sentinel_fire_3p": { + "sounds": [ + { + "name": "superbwarfare:sentinel/sentinel_fire_3p", + "stream": false + } + ] + }, + "sentinel_charge_fire_1p": { + "sounds": [ + { + "name": "superbwarfare:sentinel/sentinel_charge_fire_1p", + "stream": false + } + ] + }, + "sentinel_charge_fire_3p": { + "sounds": [ + { + "name": "superbwarfare:sentinel/sentinel_charge_fire_3p", + "stream": false + } + ] + }, + "sentinel_far": { + "sounds": [ + { + "name": "superbwarfare:sentinel/sentinel_far", + "stream": false + } + ] + }, + "sentinel_veryfar": { + "sounds": [ + { + "name": "superbwarfare:sentinel/sentinel_veryfar", + "stream": false + } + ] + }, + "sentinel_charge_far": { + "sounds": [ + { + "name": "superbwarfare:sentinel/sentinel_charge_far", + "stream": false + } + ] + }, + "sentinel_charge_veryfar": { + "sounds": [ + { + "name": "superbwarfare:sentinel/sentinel_charge_veryfar", + "stream": false + } + ] + }, + "sentinel_reload_normal": { + "sounds": [ + { + "name": "superbwarfare:sentinel/sentinel_reload_normal", + "stream": false + } + ] + }, + "sentinel_reload_empty": { + "sounds": [ + { + "name": "superbwarfare:sentinel/sentinel_reload_empty", + "stream": false + } + ] + }, + "sentinel_charge": { + "sounds": [ + { + "name": "superbwarfare:sentinel/sentinel_charge", + "stream": false + } + ] + }, + "sentinel_bolt": { + "sounds": [ + { + "name": "superbwarfare:sentinel/sentinel_bolt", + "stream": false + } + ] + }, + "m_60_fire_1p": { + "sounds": [ + { + "name": "superbwarfare:m_60/m_60_fire_1p", + "stream": false + } + ] + }, + "m_60_fire_3p": { + "sounds": [ + { + "name": "superbwarfare:m_60/m_60_fire_3p", + "stream": false + } + ] + }, + "m_60_far": { + "sounds": [ + { + "name": "superbwarfare:m_60/m_60_far", + "stream": false + } + ] + }, + "m_60_veryfar": { + "sounds": [ + { + "name": "superbwarfare:m_60/m_60_veryfar", + "stream": false + } + ] + }, + "m_60_reload_normal": { + "sounds": [ + { + "name": "superbwarfare:m_60/m_60_reload_normal", + "stream": false + } + ] + }, + "m_60_reload_empty": { + "sounds": [ + { + "name": "superbwarfare:m_60/m_60_reload_empty", + "stream": false + } + ] + }, + "svd_fire_1p": { + "sounds": [ + { + "name": "superbwarfare:svd/svd_fire_1p", + "stream": false + } + ] + }, + "svd_fire_3p": { + "sounds": [ + { + "name": "superbwarfare:svd/svd_fire_3p", + "stream": false + } + ] + }, + "svd_far": { + "sounds": [ + { + "name": "superbwarfare:svd/svd_far", + "stream": false + } + ] + }, + "svd_veryfar": { + "sounds": [ + { + "name": "superbwarfare:svd/svd_veryfar", + "stream": false + } + ] + }, + "svd_fire_1p_s": { + "sounds": [ + { + "name": "superbwarfare:svd/svd_fire_1p_s", + "stream": false + } + ] + }, + "svd_fire_3p_s": { + "sounds": [ + { + "name": "superbwarfare:svd/svd_fire_3p_s", + "stream": false + } + ] + }, + "svd_far_s": { + "sounds": [ + { + "name": "superbwarfare:svd/svd_far_s", + "stream": false + } + ] + }, + "svd_reload_normal": { + "sounds": [ + { + "name": "superbwarfare:svd/svd_reload_normal", + "stream": false + } + ] + }, + "svd_reload_empty": { + "sounds": [ + { + "name": "superbwarfare:svd/svd_reload_empty", + "stream": false + } + ] + }, + "m_98b_fire_1p": { + "sounds": [ + { + "name": "superbwarfare:m_98b/m_98b_fire_1p", + "stream": false + } + ] + }, + "m_98b_fire_3p": { + "sounds": [ + { + "name": "superbwarfare:m_98b/m_98b_fire_3p", + "stream": false + } + ] + }, + "m_98b_far": { + "sounds": [ + { + "name": "superbwarfare:m_98b/m_98b_far", + "stream": false + } + ] + }, + "m_98b_veryfar": { + "sounds": [ + { + "name": "superbwarfare:m_98b/m_98b_veryfar", + "stream": false + } + ] + }, + "m_98b_reload_normal": { + "sounds": [ + { + "name": "superbwarfare:m_98b/m_98b_reload_normal", + "stream": false + } + ] + }, + "m_98b_reload_empty": { + "sounds": [ + { + "name": "superbwarfare:m_98b/m_98b_reload_empty", + "stream": false + } + ] + }, + "m_98b_bolt": { + "sounds": [ + { + "name": "superbwarfare:m_98b/m_98b_bolt", + "stream": false + } + ] + }, + "marlin_fire_1p": { + "sounds": [ + { + "name": "superbwarfare:marlin/marlin_fire_1p", + "stream": false + } + ] + }, + "marlin_fire_3p": { + "sounds": [ + { + "name": "superbwarfare:marlin/marlin_fire_3p", + "stream": false + } + ] + }, + "marlin_far": { + "sounds": [ + { + "name": "superbwarfare:marlin/marlin_far", + "stream": false + } + ] + }, + "marlin_veryfar": { + "sounds": [ + { + "name": "superbwarfare:marlin/marlin_veryfar", + "stream": false + } + ] + }, + "marlin_loop": { + "sounds": [ + { + "name": "superbwarfare:marlin/marlin_loop", + "stream": false + } + ] + }, + "marlin_prepare": { + "sounds": [ + { + "name": "superbwarfare:marlin/marlin_start", + "stream": false + } + ] + }, + "marlin_end": { + "sounds": [ + { + "name": "superbwarfare:marlin/marlin_end", + "stream": false + } + ] + }, + "marlin_bolt": { + "sounds": [ + { + "name": "superbwarfare:marlin/marlin_end", + "stream": false + } + ] + }, + "m_870_fire_1p": { + "sounds": [ + { + "name": "superbwarfare:m_870/m_870_fire_1p", + "stream": false + } + ] + }, + "m_870_fire_3p": { + "sounds": [ + { + "name": "superbwarfare:m_870/m_870_fire_3p", + "stream": false + } + ] + }, + "m_870_far": { + "sounds": [ + { + "name": "superbwarfare:m_870/m_870_far", + "stream": false + } + ] + }, + "m_870_veryfar": { + "sounds": [ + { + "name": "superbwarfare:m_870/m_870_veryfar", + "stream": false + } + ] + }, + "m_870_prepare_load": { + "sounds": [ + { + "name": "superbwarfare:m_870/m_870_preparealt", + "stream": false + } + ] + }, + "m_870_loop": { + "sounds": [ + { + "name": "superbwarfare:m_870/m_870_reload_loop", + "stream": false + } + ] + }, + "m_870_bolt": { + "sounds": [ + { + "name": "superbwarfare:m_870/m_870_bolt", + "stream": false + } + ] + }, + "glock_17_fire_1p": { + "sounds": [ + { + "name": "superbwarfare:glock_17/glock_fire_1p", + "stream": false + } + ] + }, + "glock_17_fire_3p": { + "sounds": [ + { + "name": "superbwarfare:glock_17/glock_fire_3p", + "stream": false + } + ] + }, + "glock_17_far": { + "sounds": [ + { + "name": "superbwarfare:glock_17/glock_far", + "stream": false + } + ] + }, + "glock_17_veryfar": { + "sounds": [ + { + "name": "superbwarfare:glock_17/glock_veryfar", + "stream": false + } + ] + }, + "glock_17_reload_normal": { + "sounds": [ + { + "name": "superbwarfare:glock_17/glock_reload_normal", + "stream": false + } + ] + }, + "glock_17_reload_empty": { + "sounds": [ + { + "name": "superbwarfare:glock_17/glock_reload_empty", + "stream": false + } + ] + }, + "mp_443_fire_1p": { + "sounds": [ + { + "name": "superbwarfare:mp443/mp443_fire_1p", + "stream": false + } + ] + }, + "mp_443_fire_3p": { + "sounds": [ + { + "name": "superbwarfare:mp443/mp443_fire_3p", + "stream": false + } + ] + }, + "m_1911_fire_1p": { + "sounds": [ + { + "name": "superbwarfare:m1911/m1911_fire_1p", + "stream": false + } + ] + }, + "m_1911_fire_3p": { + "sounds": [ + { + "name": "superbwarfare:m1911/m1911_fire_3p", + "stream": false + } + ] + }, + "m_1911_far": { + "sounds": [ + { + "name": "superbwarfare:m1911/m1911_far", + "stream": false + } + ] + }, + "m_1911_veryfar": { + "sounds": [ + { + "name": "superbwarfare:m1911/m1911_veryfar", + "stream": false + } + ] + }, + "qbz_95_fire_1p": { + "sounds": [ + { + "name": "superbwarfare:qbz95/qbz95_fire1p", + "stream": false + } + ] + }, + "qbz_95_fire_1p_s": { + "sounds": [ + { + "name": "superbwarfare:qbz95/qbz95_fire1p_s", + "stream": false + } + ] + }, + "qbz_95_fire_3p": { + "sounds": [ + { + "name": "superbwarfare:qbz95/qbz95_fire3p", + "stream": false + } + ] + }, + "qbz_95_fire_3p_s": { + "sounds": [ + { + "name": "superbwarfare:qbz95/qbz95_fire3p_s", + "stream": false + } + ] + }, + "qbz_95_far": { + "sounds": [ + { + "name": "superbwarfare:qbz95/qbz95_far", + "stream": false + } + ] + }, + "qbz_95_veryfar": { + "sounds": [ + { + "name": "superbwarfare:qbz95/qbz95_veryfar", + "stream": false + } + ] + }, + "qbz_95_reload_normal": { + "sounds": [ + { + "name": "superbwarfare:qbz95/qbz95_reload_normal", + "stream": false + } + ] + }, + "qbz_95_reload_empty": { + "sounds": [ + { + "name": "superbwarfare:qbz95/qbz95_reload_empty", + "stream": false + } + ] + }, + "k_98_fire_1p": { + "sounds": [ + { + "name": "superbwarfare:k_98/k_98_fire_1p", + "stream": false + } + ] + }, + "k_98_fire_3p": { + "sounds": [ + { + "name": "superbwarfare:k_98/k_98_fire_3p", + "stream": false + } + ] + }, + "k_98_far": { + "sounds": [ + { + "name": "superbwarfare:k_98/k_98_far", + "stream": false + } + ] + }, + "k_98_veryfar": { + "sounds": [ + { + "name": "superbwarfare:k_98/k_98_veryfar", + "stream": false + } + ] + }, + "k_98_reload_empty": { + "sounds": [ + { + "name": "superbwarfare:k_98/k_98_reload_empty", + "stream": false + } + ] + }, + "k_98_bolt": { + "sounds": [ + { + "name": "superbwarfare:k_98/k_98_bolt", + "stream": false + } + ] + }, + "k_98_loop": { + "sounds": [ + { + "name": "superbwarfare:k_98/k_98_loop", + "stream": false + } + ] + }, + "k_98_prepare": { + "sounds": [ + { + "name": "superbwarfare:k_98/k_98_prepare", + "stream": false + } + ] + }, + "k_98_end": { + "sounds": [ + { + "name": "superbwarfare:k_98/k_98_finish", + "stream": false + } + ] + }, + "mosin_nagant_fire_1p": { + "sounds": [ + { + "name": "superbwarfare:mosin_nagant/mosin_nagant_fire_1p", + "stream": false + } + ] + }, + "mosin_nagant_fire_3p": { + "sounds": [ + { + "name": "superbwarfare:mosin_nagant/mosin_nagant_fire_3p", + "stream": false + } + ] + }, + "mosin_nagant_far": { + "sounds": [ + { + "name": "superbwarfare:mosin_nagant/mosin_nagant_far", + "stream": false + } + ] + }, + "mosin_nagant_veryfar": { + "sounds": [ + { + "name": "superbwarfare:mosin_nagant/mosin_nagant_veryfar", + "stream": false + } + ] + }, + "mosin_nagant_bolt": { + "sounds": [ + { + "name": "superbwarfare:k_98/k_98_bolt", + "stream": false + } + ] + }, + "mosin_nagant_loop": { + "sounds": [ + { + "name": "superbwarfare:k_98/k_98_loop", + "stream": false + } + ] + }, + "mosin_nagant_prepare": { + "sounds": [ + { + "name": "superbwarfare:k_98/k_98_prepare", + "stream": false + } + ] + }, + "mosin_nagant_prepare_empty": { + "sounds": [ + { + "name": "superbwarfare:k_98/k_98_prepare_empty", + "stream": false + } + ] + }, + "mosin_nagant_end": { + "sounds": [ + { + "name": "superbwarfare:k_98/k_98_finish", + "stream": false + } + ] + }, + "javelin_fire_1p": { + "sounds": [ + { + "name": "superbwarfare:javelin/javelin_fire_1p", + "stream": false + } + ] + }, + "javelin_fire_3p": { + "sounds": [ + { + "name": "superbwarfare:javelin/javelin_fire_3p", + "stream": false + } + ] + }, + "javelin_far": { + "sounds": [ + { + "name": "superbwarfare:javelin/javelin_far", + "stream": false + } + ] + }, + "javelin_reload_empty": { + "sounds": [ + { + "name": "superbwarfare:javelin/javelin_reload", + "stream": false + } + ] + }, + "javelin_lock": { + "sounds": [ + { + "name": "superbwarfare:javelin/javelin_lock", + "stream": false + } + ] + }, + "javelin_lockon": { + "sounds": [ + { + "name": "superbwarfare:javelin/javelin_lockon", + "stream": false + } + ] + }, + "ak_12_fire_1p": { + "sounds": [ + { + "name": "superbwarfare:ak_12/ak_12_fire_1p", + "stream": false + } + ] + }, + "ak_12_fire_3p": { + "sounds": [ + { + "name": "superbwarfare:ak_12/ak_12_fire_3p", + "stream": false + } + ] + }, + "ak_12_fire_1p_s": { + "sounds": [ + { + "name": "superbwarfare:ak_12/ak_12_fire_1p_s", + "stream": false + } + ] + }, + "ak_12_fire_3p_s": { + "sounds": [ + { + "name": "superbwarfare:ak_12/ak_12_fire_3p_s", + "stream": false + } + ] + }, + "ak_12_far": { + "sounds": [ + { + "name": "superbwarfare:ak_12/ak_12_far", + "stream": false + } + ] + }, + "ak_12_veryfar": { + "sounds": [ + { + "name": "superbwarfare:ak_12/ak_12_veryfar", + "stream": false + } + ] + }, + "ak_12_far_s": { + "sounds": [ + { + "name": "superbwarfare:ak_12/ak_12_far_s", + "stream": false + } + ] + }, + "ak_12_veryfar_s": { + "sounds": [ + { + "name": "superbwarfare:ak_12/ak_12_veryfar_s", + "stream": false + } + ] + }, + "ak_12_reload_normal": { + "sounds": [ + { + "name": "superbwarfare:ak_12/ak_12_reload_normal", + "stream": false + } + ] + }, + "ak_12_reload_empty": { + "sounds": [ + { + "name": "superbwarfare:ak_12/ak_12_reload_empty", + "stream": false + } + ] + }, + "bullet_supply": { + "sounds": [ + { + "name": "superbwarfare:bullet_supply", + "stream": false + } + ] + }, + "shock": { + "sounds": [ + { + "name": "superbwarfare:shock", + "stream": false + } + ] + }, + "electric": { + "sounds": [ + { + "name": "superbwarfare:electric", + "stream": false + } + ] + }, + "triggerclick": { + "sounds": [ + { + "name": "superbwarfare:trigger_click", + "stream": false + } + ] + }, + "hit": { + "sounds": [ + { + "name": "superbwarfare:bullet/metal_01", + "stream": false + }, + { + "name": "superbwarfare:bullet/metal_02", + "stream": false + }, + { + "name": "superbwarfare:bullet/metal_03", + "stream": false + }, + { + "name": "superbwarfare:bullet/metal_04", + "stream": false + }, + { + "name": "superbwarfare:bullet/metal_05", + "stream": false + } + ] + }, + "targetdown": { + "sounds": [ + { + "name": "superbwarfare:targetdown", + "stream": false + } + ] + }, + "indication": { + "sounds": [ + { + "name": "superbwarfare:indication", + "stream": false + } + ] + }, + "indication_vehicle": { + "sounds": [ + { + "name": "superbwarfare:indication_vehicle", + "stream": false + } + ] + }, + "jump": { + "sounds": [ + { + "name": "superbwarfare:jump", + "stream": false + } + ] + }, + "doublejump": { + "sounds": [ + { + "name": "superbwarfare:doublejump", + "stream": false + } + ] + }, + "explosion_close": { + "sounds": [ + { + "name": "superbwarfare:explosion/explosion_close", + "stream": false + }, + { + "name": "superbwarfare:explosion/explosion_close2", + "stream": false + }, + { + "name": "superbwarfare:explosion/explosion_close3", + "stream": false + } + ] + }, + "explosion_far": { + "sounds": [ + { + "name": "superbwarfare:explosion/explosion_far", + "stream": false + }, + { + "name": "superbwarfare:explosion/explosion_far2", + "stream": false + }, + { + "name": "superbwarfare:explosion/explosion_far3", + "stream": false + } + ] + }, + "explosion_very_far": { + "sounds": [ + { + "name": "superbwarfare:explosion/explosion_very_far", + "stream": false + }, + { + "name": "superbwarfare:explosion/explosion_very_far2", + "stream": false + } + ] + }, + "explosion_water": { + "sounds": [ + { + "name": "superbwarfare:explosion/explosion_water", + "stream": false + }, + { + "name": "superbwarfare:explosion/explosion_water2", + "stream": false + }, + { + "name": "superbwarfare:explosion/explosion_water3", + "stream": false + } + ] + }, + "ouch": { + "sounds": [ + { + "name": "superbwarfare:ouch", + "stream": false + } + ] + }, + "step": { + "sounds": [ + { + "name": "superbwarfare:step1", + "stream": false + }, + { + "name": "superbwarfare:step2", + "stream": false + }, + { + "name": "superbwarfare:step3", + "stream": false + }, + { + "name": "superbwarfare:step4", + "stream": false + } + ] + }, + "growl": { + "sounds": [ + { + "name": "superbwarfare:growl", + "stream": false + } + ] + }, + "idle": { + "sounds": [ + { + "name": "superbwarfare:heng", + "stream": false + }, + { + "name": "superbwarfare:hengheng", + "stream": false + }, + { + "name": "superbwarfare:yarimasune", + "stream": false + } + ] + }, + "land": { + "sounds": [ + { + "name": "superbwarfare:bullet/bullet1", + "stream": false + }, + { + "name": "superbwarfare:bullet/bullet2", + "stream": false + }, + { + "name": "superbwarfare:bullet/bullet3", + "stream": false + }, + { + "name": "superbwarfare:bullet/bullet4", + "stream": false + }, + { + "name": "superbwarfare:bullet/bullet5", + "stream": false + }, + { + "name": "superbwarfare:bullet/bullet6", + "stream": false + }, + { + "name": "superbwarfare:bullet/bullet7", + "stream": false + }, + { + "name": "superbwarfare:bullet/bullet8", + "stream": false + }, + { + "name": "superbwarfare:bullet/bullet9", + "stream": false + }, + { + "name": "superbwarfare:bullet/bullet10", + "stream": false + }, + { + "name": "superbwarfare:bullet/bullet11", + "stream": false + }, + { + "name": "superbwarfare:bullet/bullet12", + "stream": false + }, + { + "name": "superbwarfare:bullet/bullet13", + "stream": false + }, + { + "name": "superbwarfare:bullet/bullet14", + "stream": false + }, + { + "name": "superbwarfare:bullet/bullet15", + "stream": false + }, + { + "name": "superbwarfare:bullet/bullet16", + "stream": false + } + ] + }, + "headshot": { + "sounds": [ + { + "name": "superbwarfare:headshot", + "stream": false + } + ] + }, + "mortar_fire": { + "sounds": [ + { + "name": "superbwarfare:mortar_fire", + "stream": false + } + ] + }, + "mortar_distant": { + "sounds": [ + { + "name": "superbwarfare:mortar_distant", + "stream": false + } + ] + }, + "mortar_load": { + "sounds": [ + { + "name": "superbwarfare:mortar_load", + "stream": false + } + ] + }, + "firerate": { + "sounds": [ + { + "name": "superbwarfare:firerate", + "stream": false + } + ] + }, + "adjust_fov": { + "sounds": [ + { + "name": "superbwarfare:adjust_fov", + "stream": false + } + ] + }, + "mk_42_fire_1p": { + "sounds": [ + { + "name": "superbwarfare:mk_42/mk_42_fire_1p_1", + "stream": false + }, + { + "name": "superbwarfare:mk_42/mk_42_fire_1p_2", + "stream": false + }, + { + "name": "superbwarfare:mk_42/mk_42_fire_1p_3", + "stream": false + }, + { + "name": "superbwarfare:mk_42/mk_42_fire_1p_4", + "stream": false + } + ] + }, + "mk_42_far": { + "sounds": [ + { + "name": "superbwarfare:mk_42/mk_42_far", + "stream": false + } + ] + }, + "mk_42_veryfar": { + "sounds": [ + { + "name": "superbwarfare:mk_42/mk_42_veryfar", + "stream": false + } + ] + }, + "mk_42_fire_3p": { + "sounds": [ + { + "name": "superbwarfare:mk_42/mk_42_fire_3p", + "stream": false + } + ] + }, + "cannon_reload": { + "sounds": [ + { + "name": "superbwarfare:cannon/cannon_reload_01", + "stream": false + }, + { + "name": "superbwarfare:cannon/cannon_reload_02", + "stream": false + }, + { + "name": "superbwarfare:cannon/cannon_reload_03", + "stream": false + } + ] + }, + "cannon_zoom_in": { + "sounds": [ + { + "name": "superbwarfare:cannon/cannon_zoom_in", + "stream": false + } + ] + }, + "cannon_zoom_out": { + "sounds": [ + { + "name": "superbwarfare:cannon/cannon_zoom_out", + "stream": false + } + ] + }, + "drone_sound": { + "sounds": [ + { + "name": "superbwarfare:drone_sound", + "stream": false + } + ] + }, + "grenade_throw": { + "sounds": [ + { + "name": "superbwarfare:grenade_throw", + "stream": false + } + ] + }, + "grenade_pull": { + "sounds": [ + { + "name": "superbwarfare:grenade_pull", + "stream": false + } + ] + }, + "heng": { + "sounds": [ + { + "name": "superbwarfare:heng", + "stream": false + } + ] + }, + "edit_mode": { + "sounds": [ + { + "name": "superbwarfare:edit_mode", + "stream": false + } + ] + }, + "edit": { + "sounds": [ + { + "name": "superbwarfare:edit", + "stream": false + } + ] + }, + "shell_casing_normal": { + "sounds": [ + { + "name": "superbwarfare:shells/shell_casing_normal_1", + "stream": false + }, + { + "name": "superbwarfare:shells/shell_casing_normal_2", + "stream": false + }, + { + "name": "superbwarfare:shells/shell_casing_normal_3", + "stream": false + }, + { + "name": "superbwarfare:shells/shell_casing_normal_4", + "stream": false + }, + { + "name": "superbwarfare:shells/shell_casing_normal_5", + "stream": false + } + ] + }, + "shell_casing_shotgun": { + "sounds": [ + { + "name": "superbwarfare:shells/shell_casing_shotgun_1", + "stream": false + }, + { + "name": "superbwarfare:shells/shell_casing_shotgun_2", + "stream": false + }, + { + "name": "superbwarfare:shells/shell_casing_shotgun_3", + "stream": false + }, + { + "name": "superbwarfare:shells/shell_casing_shotgun_4", + "stream": false + }, + { + "name": "superbwarfare:shells/shell_casing_shotgun_5", + "stream": false + } + ] + }, + "shell_casing_50cal": { + "sounds": [ + { + "name": "superbwarfare:shells/shell_casing_50cal_1", + "stream": false + }, + { + "name": "superbwarfare:shells/shell_casing_50cal_2", + "stream": false + }, + { + "name": "superbwarfare:shells/shell_casing_50cal_3", + "stream": false + }, + { + "name": "superbwarfare:shells/shell_casing_50cal_4", + "stream": false + }, + { + "name": "superbwarfare:shells/shell_casing_50cal_5", + "stream": false + } + ] + }, + "huge_explosion_close": { + "sounds": [ + { + "name": "superbwarfare:explosion/huge_explosion_close", + "stream": false + }, + { + "name": "superbwarfare:explosion/huge_explosion_close2", + "stream": false + } + ] + }, + "huge_explosion_far": { + "sounds": [ + { + "name": "superbwarfare:explosion/huge_explosion_far", + "stream": false + }, + { + "name": "superbwarfare:explosion/huge_explosion_far2", + "stream": false + }, + { + "name": "superbwarfare:explosion/huge_explosion_far3", + "stream": false + } + ] + }, + "huge_explosion_very_far": { + "sounds": [ + { + "name": "superbwarfare:explosion/huge_explosion_very_far", + "stream": false + }, + { + "name": "superbwarfare:explosion/huge_explosion_very_far2", + "stream": false + } + ] + }, + "open": { + "sounds": [ + { + "name": "superbwarfare:open", + "stream": false + } + ] + }, + "charge_rifle_fire_1p": { + "sounds": [ + { + "name": "superbwarfare:charge_rifle/charge_rifle_fire_1p", + "stream": false + } + ] + }, + "charge_rifle_fire_3p": { + "sounds": [ + { + "name": "superbwarfare:charge_rifle/charge_rifle_fire_3p", + "stream": false + } + ] + }, + "charge_rifle_fire_boom_1p": { + "sounds": [ + { + "name": "superbwarfare:charge_rifle/charge_rifle_fire_boom_1p", + "stream": false + } + ] + }, + "charge_rifle_fire_boom_3p": { + "sounds": [ + { + "name": "superbwarfare:charge_rifle/charge_rifle_fire_boom_3p", + "stream": false + } + ] + }, + "annihilator_fire_1p": { + "sounds": [ + { + "name": "superbwarfare:annihilator/annihilator_fire_1p", + "stream": false + } + ] + }, + "annihilator_fire_3p": { + "sounds": [ + { + "name": "superbwarfare:annihilator/annihilator_fire_3p", + "stream": false + } + ] + }, + "annihilator_far": { + "sounds": [ + { + "name": "superbwarfare:annihilator/annihilator_far", + "stream": false + } + ] + }, + "annihilator_veryfar": { + "sounds": [ + { + "name": "superbwarfare:annihilator/annihilator_veryfar", + "stream": false + } + ] + }, + "annihilator_reload": { + "sounds": [ + { + "name": "superbwarfare:annihilator/annihilator_reload", + "stream": false + } + ] + }, + "boat_engine": { + "sounds": [ + { + "name": "superbwarfare:speedboat/engine", + "stream": false + } + ] + }, + "vehicle_strike": { + "sounds": [ + { + "name": "superbwarfare:vehicle_strike", + "stream": false + } + ] + }, + "m2_fire_1p": { + "sounds": [ + { + "name": "superbwarfare:m2/m2_fire_1p", + "stream": false + } + ] + }, + "m2_fire_3p": { + "sounds": [ + { + "name": "superbwarfare:m2/m2_fire_3p", + "stream": false + } + ] + }, + "m2_far": { + "sounds": [ + { + "name": "superbwarfare:m2/m2_far", + "stream": false + } + ] + }, + "m2_veryfar": { + "sounds": [ + { + "name": "superbwarfare:m2/m2_veryfar", + "stream": false + } + ] + }, + "wheel_chair_engine": { + "sounds": [ + { + "name": "superbwarfare:wheel_chair/wheel_chair_engine", + "stream": false + } + ] + }, + "wheel_chair_jump": { + "sounds": [ + { + "name": "superbwarfare:wheel_chair/wheel_chair_jump", + "stream": false + } + ] + }, + "radar_search_start": { + "sounds": [ + { + "name": "superbwarfare:radar/radar_search_start" + } + ] + }, + "radar_search_idle": { + "sounds": [ + { + "name": "superbwarfare:radar/radar_search_idle" + } + ] + }, + "radar_search_end": { + "sounds": [ + { + "name": "superbwarfare:radar/radar_search_end" + } + ] + }, + "helicopter_engine_start": { + "sounds": [ + { + "name": "superbwarfare:helicopter/heli_engine_start" + } + ] + }, + "helicopter_engine": { + "sounds": [ + { + "name": "superbwarfare:helicopter/heli_engine" + } + ] + }, + "helicopter_engine_1p": { + "sounds": [ + { + "name": "superbwarfare:helicopter/heli_engine_1p" + } + ] + }, + "heli_cannon_fire_1p": { + "sounds": [ + { + "name": "superbwarfare:helicopter/heli_cannon_fire_1p", + "stream": false + } + ] + }, + "heli_cannon_fire_3p": { + "sounds": [ + { + "name": "superbwarfare:helicopter/heli_cannon_fire_3p", + "stream": false + } + ] + }, + "heli_cannon_far": { + "sounds": [ + { + "name": "superbwarfare:helicopter/heli_cannon_far", + "stream": false + } + ] + }, + "heli_cannon_veryfar": { + "sounds": [ + { + "name": "superbwarfare:helicopter/heli_cannon_veryfar", + "stream": false + } + ] + }, + "heli_rocket_fire_1p": { + "sounds": [ + { + "name": "superbwarfare:helicopter/heli_rocket_fire_1p", + "stream": false + } + ] + }, + "heli_rocket_fire_3p": { + "sounds": [ + { + "name": "superbwarfare:helicopter/heli_rocket_fire_3p", + "stream": false + } + ] + }, + "into_cannon": { + "sounds": [ + { + "name": "superbwarfare:into_cannon", + "stream": false + } + ] + }, + "into_missile": { + "sounds": [ + { + "name": "superbwarfare:into_missile", + "stream": false + } + ] + }, + "missile_reload": { + "sounds": [ + { + "name": "superbwarfare:missile_reload", + "stream": false + } + ] + }, + "low_health": { + "sounds": [ + { + "name": "superbwarfare:warning/low_health", + "stream": false + } + ] + }, + "no_health": { + "sounds": [ + { + "name": "superbwarfare:warning/no_health", + "stream": false + } + ] + }, + "locking_warning": { + "sounds": [ + { + "name": "superbwarfare:warning/locking", + "stream": false + } + ] + }, + "locked_warning": { + "sounds": [ + { + "name": "superbwarfare:warning/locked", + "stream": false + } + ] + }, + "missile_warning": { + "sounds": [ + { + "name": "superbwarfare:warning/missile", + "stream": false + } + ] + }, + "decoy_reload": { + "sounds": [ + { + "name": "superbwarfare:helicopter/decoy_reload", + "stream": false + } + ] + }, + "decoy_fire": { + "sounds": [ + { + "name": "superbwarfare:helicopter/decoy_fire", + "stream": false + } + ] + }, + "secondary_cataclysm_fire_1p": { + "sounds": [ + { + "name": "superbwarfare:secondary_cataclysm/secondary_cataclysm_fire_1p", + "stream": false + } + ] + }, + "secondary_cataclysm_fire_3p": { + "sounds": [ + { + "name": "superbwarfare:secondary_cataclysm/secondary_cataclysm_fire_3p", + "stream": false + } + ] + }, + "secondary_cataclysm_far": { + "sounds": [ + { + "name": "superbwarfare:secondary_cataclysm/secondary_cataclysm_far", + "stream": false + } + ] + }, + "secondary_cataclysm_veryfar": { + "sounds": [ + { + "name": "superbwarfare:secondary_cataclysm/secondary_cataclysm_veryfar", + "stream": false + } + ] + }, + "secondary_cataclysm_loop": { + "sounds": [ + { + "name": "superbwarfare:secondary_cataclysm/secondary_cataclysm_loop", + "stream": false + } + ] + }, + "secondary_cataclysm_prepare_load": { + "sounds": [ + { + "name": "superbwarfare:secondary_cataclysm/secondary_cataclysm_start", + "stream": false + } + ] + }, + "secondary_cataclysm_end": { + "sounds": [ + { + "name": "superbwarfare:secondary_cataclysm/secondary_cataclysm_end", + "stream": false + } + ] + }, + "secondary_cataclysm_fire_1p_charge": { + "sounds": [ + { + "name": "superbwarfare:secondary_cataclysm/secondary_cataclysm_charge_fire_1p", + "stream": false + } + ] + }, + "secondary_cataclysm_fire_3p_charge": { + "sounds": [ + { + "name": "superbwarfare:secondary_cataclysm/secondary_cataclysm_charge_fire_3p", + "stream": false + } + ] + }, + "secondary_cataclysm_far_charge": { + "sounds": [ + { + "name": "superbwarfare:secondary_cataclysm/secondary_cataclysm_charge_far", + "stream": false + } + ] + }, + "secondary_cataclysm_veryfar_charge": { + "sounds": [ + { + "name": "superbwarfare:secondary_cataclysm/secondary_cataclysm_charge_veryfar", + "stream": false + } + ] + }, + "lunge_mine_growl": { + "sounds": [ + { + "name": "superbwarfare:lunge_mine_growl", + "stream": false + } + ] + }, + "lav_fire_1p": { + "sounds": [ + { + "name": "superbwarfare:lav/lav_fire_1p", + "stream": false + } + ] + }, + "lav_fire_3p": { + "sounds": [ + { + "name": "superbwarfare:lav/lav_fire_3p", + "stream": false + } + ] + }, + "lav_far": { + "sounds": [ + { + "name": "superbwarfare:lav/lav_far", + "stream": false + } + ] + }, + "lav_veryfar": { + "sounds": [ + { + "name": "superbwarfare:lav/lav_veryfar", + "stream": false + } + ] + }, + "lav_engine": { + "sounds": [ + { + "name": "superbwarfare:lav/lav_engine" + } + ] + }, + "lav_engine_1p": { + "sounds": [ + { + "name": "superbwarfare:lav/lav_engine_1p" + } + ] + }, + "coax_fire_1p": { + "sounds": [ + { + "name": "superbwarfare:lav/coax_fire_1p" + } + ] + }, + "bmp_fire_1p": { + "sounds": [ + { + "name": "superbwarfare:bmp/bmp_fire_1p", + "stream": false + } + ] + }, + "bmp_fire_3p": { + "sounds": [ + { + "name": "superbwarfare:bmp/bmp_fire_3p", + "stream": false + } + ] + }, + "bmp_engine": { + "sounds": [ + { + "name": "superbwarfare:bmp/bmp_engine" + } + ] + }, + "bmp_engine_1p": { + "sounds": [ + { + "name": "superbwarfare:bmp/bmp_engine_1p" + } + ] + }, + "bmp_missile_fire_1p": { + "sounds": [ + { + "name": "superbwarfare:bmp/bmp_missile_fire_1p", + "stream": false + } + ] + }, + "bmp_missile_fire_3p": { + "sounds": [ + { + "name": "superbwarfare:bmp/bmp_missile_fire_3p", + "stream": false + } + ] + }, + "bmp_missile_reload": { + "sounds": [ + { + "name": "superbwarfare:bmp/bmp_missile_reload", + "stream": false + } + ] + }, + "bmp_step": { + "sounds": [ + { + "name": "superbwarfare:bmp/bmp_step", + "stream": false + } + ] + }, + "wheel_step": { + "sounds": [ + { + "name": "superbwarfare:wheel_step", + "stream": false + } + ] + }, + "laser_tower_shoot": { + "sounds": [ + { + "name": "superbwarfare:laser_tower_shoot", + "stream": false + } + ] + }, + "yx_100_reload": { + "sounds": [ + { + "name": "superbwarfare:yx100/yx100_reload", + "stream": false + } + ] + }, + "yx_100_fire_1p": { + "sounds": [ + { + "name": "superbwarfare:yx100/yx100_fire_1p", + "stream": false + } + ] + }, + "yx_100_fire_3p": { + "sounds": [ + { + "name": "superbwarfare:yx100/yx100_fire_3p", + "stream": false + } + ] + }, + "yx_100_far": { + "sounds": [ + { + "name": "superbwarfare:yx100/yx100_far", + "stream": false + } + ] + }, + "yx_100_veryfar": { + "sounds": [ + { + "name": "superbwarfare:yx100/yx100_veryfar", + "stream": false + } + ] + }, + "turret_turn": { + "sounds": [ + { + "name": "superbwarfare:turret_turn", + "stream": false + } + ] + }, + "c4_beep": { + "sounds": [ + { + "name": "superbwarfare:c4/c4_beep", + "stream": false + } + ] + }, + "c4_final": { + "sounds": [ + { + "name": "superbwarfare:c4/c4_final", + "stream": false + } + ] + }, + "c4_throw": { + "sounds": [ + { + "name": "superbwarfare:c4/c4_throw", + "stream": false + } + ] + }, + "c4_detonator_click": { + "sounds": [ + { + "name": "superbwarfare:c4/c4_detonator_click", + "stream": false + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/superbwarfare/sounds/aa_12/aa_12_far.ogg b/src/main/resources/assets/superbwarfare/sounds/aa_12/aa_12_far.ogg new file mode 100644 index 000000000..fc628dbc5 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/aa_12/aa_12_far.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/aa_12/aa_12_fire_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/aa_12/aa_12_fire_1p.ogg new file mode 100644 index 000000000..9f3ec8456 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/aa_12/aa_12_fire_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/aa_12/aa_12_fire_3p.ogg b/src/main/resources/assets/superbwarfare/sounds/aa_12/aa_12_fire_3p.ogg new file mode 100644 index 000000000..967b489d2 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/aa_12/aa_12_fire_3p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/aa_12/aa_12_reload_empty.ogg b/src/main/resources/assets/superbwarfare/sounds/aa_12/aa_12_reload_empty.ogg new file mode 100644 index 000000000..fcf88a7fd Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/aa_12/aa_12_reload_empty.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/aa_12/aa_12_reload_normal.ogg b/src/main/resources/assets/superbwarfare/sounds/aa_12/aa_12_reload_normal.ogg new file mode 100644 index 000000000..7aa9b2b4c Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/aa_12/aa_12_reload_normal.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/aa_12/aa_12_veryfar.ogg b/src/main/resources/assets/superbwarfare/sounds/aa_12/aa_12_veryfar.ogg new file mode 100644 index 000000000..f7ab75e7e Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/aa_12/aa_12_veryfar.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/adjust_fov.ogg b/src/main/resources/assets/superbwarfare/sounds/adjust_fov.ogg new file mode 100644 index 000000000..dc94024a8 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/adjust_fov.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/ak_12/ak_12_far.ogg b/src/main/resources/assets/superbwarfare/sounds/ak_12/ak_12_far.ogg new file mode 100644 index 000000000..0ce44ac44 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/ak_12/ak_12_far.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/ak_12/ak_12_far_s.ogg b/src/main/resources/assets/superbwarfare/sounds/ak_12/ak_12_far_s.ogg new file mode 100644 index 000000000..98dc2acb9 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/ak_12/ak_12_far_s.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/ak_12/ak_12_fire_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/ak_12/ak_12_fire_1p.ogg new file mode 100644 index 000000000..9d379c942 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/ak_12/ak_12_fire_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/ak_12/ak_12_fire_1p_s.ogg b/src/main/resources/assets/superbwarfare/sounds/ak_12/ak_12_fire_1p_s.ogg new file mode 100644 index 000000000..844fa3868 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/ak_12/ak_12_fire_1p_s.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/ak_12/ak_12_fire_3p.ogg b/src/main/resources/assets/superbwarfare/sounds/ak_12/ak_12_fire_3p.ogg new file mode 100644 index 000000000..509448ead Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/ak_12/ak_12_fire_3p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/ak_12/ak_12_fire_3p_s.ogg b/src/main/resources/assets/superbwarfare/sounds/ak_12/ak_12_fire_3p_s.ogg new file mode 100644 index 000000000..0e6d5ec6d Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/ak_12/ak_12_fire_3p_s.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/ak_12/ak_12_reload_empty.ogg b/src/main/resources/assets/superbwarfare/sounds/ak_12/ak_12_reload_empty.ogg new file mode 100644 index 000000000..4d2380069 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/ak_12/ak_12_reload_empty.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/ak_12/ak_12_reload_normal.ogg b/src/main/resources/assets/superbwarfare/sounds/ak_12/ak_12_reload_normal.ogg new file mode 100644 index 000000000..15f5f500e Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/ak_12/ak_12_reload_normal.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/ak_12/ak_12_veryfar.ogg b/src/main/resources/assets/superbwarfare/sounds/ak_12/ak_12_veryfar.ogg new file mode 100644 index 000000000..dc513c497 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/ak_12/ak_12_veryfar.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/ak_12/ak_12_veryfar_s.ogg b/src/main/resources/assets/superbwarfare/sounds/ak_12/ak_12_veryfar_s.ogg new file mode 100644 index 000000000..86271e1e9 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/ak_12/ak_12_veryfar_s.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/ak_47/ak_47_far.ogg b/src/main/resources/assets/superbwarfare/sounds/ak_47/ak_47_far.ogg new file mode 100644 index 000000000..93da90c8c Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/ak_47/ak_47_far.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/ak_47/ak_47_fire_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/ak_47/ak_47_fire_1p.ogg new file mode 100644 index 000000000..058d31d2c Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/ak_47/ak_47_fire_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/ak_47/ak_47_fire_1p_s.ogg b/src/main/resources/assets/superbwarfare/sounds/ak_47/ak_47_fire_1p_s.ogg new file mode 100644 index 000000000..fb933beb6 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/ak_47/ak_47_fire_1p_s.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/ak_47/ak_47_fire_3p.ogg b/src/main/resources/assets/superbwarfare/sounds/ak_47/ak_47_fire_3p.ogg new file mode 100644 index 000000000..d0ed19976 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/ak_47/ak_47_fire_3p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/ak_47/ak_47_fire_3p_s.ogg b/src/main/resources/assets/superbwarfare/sounds/ak_47/ak_47_fire_3p_s.ogg new file mode 100644 index 000000000..56d46a7e4 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/ak_47/ak_47_fire_3p_s.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/ak_47/ak_47_reload_empty.ogg b/src/main/resources/assets/superbwarfare/sounds/ak_47/ak_47_reload_empty.ogg new file mode 100644 index 000000000..25fe0935a Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/ak_47/ak_47_reload_empty.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/ak_47/ak_47_reload_normal.ogg b/src/main/resources/assets/superbwarfare/sounds/ak_47/ak_47_reload_normal.ogg new file mode 100644 index 000000000..5757a7336 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/ak_47/ak_47_reload_normal.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/ak_47/ak_47_veryfar.ogg b/src/main/resources/assets/superbwarfare/sounds/ak_47/ak_47_veryfar.ogg new file mode 100644 index 000000000..1326e6453 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/ak_47/ak_47_veryfar.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/annihilator/annihilator_far.ogg b/src/main/resources/assets/superbwarfare/sounds/annihilator/annihilator_far.ogg new file mode 100644 index 000000000..2f3ab5b3d Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/annihilator/annihilator_far.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/annihilator/annihilator_fire_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/annihilator/annihilator_fire_1p.ogg new file mode 100644 index 000000000..b53ccdca5 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/annihilator/annihilator_fire_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/annihilator/annihilator_fire_3p.ogg b/src/main/resources/assets/superbwarfare/sounds/annihilator/annihilator_fire_3p.ogg new file mode 100644 index 000000000..64dc49088 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/annihilator/annihilator_fire_3p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/annihilator/annihilator_reload.ogg b/src/main/resources/assets/superbwarfare/sounds/annihilator/annihilator_reload.ogg new file mode 100644 index 000000000..0e6268120 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/annihilator/annihilator_reload.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/annihilator/annihilator_veryfar.ogg b/src/main/resources/assets/superbwarfare/sounds/annihilator/annihilator_veryfar.ogg new file mode 100644 index 000000000..5812c24c3 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/annihilator/annihilator_veryfar.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/bmp/bmp_engine.ogg b/src/main/resources/assets/superbwarfare/sounds/bmp/bmp_engine.ogg new file mode 100644 index 000000000..4a57a4745 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/bmp/bmp_engine.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/bmp/bmp_engine_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/bmp/bmp_engine_1p.ogg new file mode 100644 index 000000000..a9d72e2f3 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/bmp/bmp_engine_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/bmp/bmp_fire_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/bmp/bmp_fire_1p.ogg new file mode 100644 index 000000000..d52dc724f Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/bmp/bmp_fire_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/bmp/bmp_fire_3p.ogg b/src/main/resources/assets/superbwarfare/sounds/bmp/bmp_fire_3p.ogg new file mode 100644 index 000000000..ef7364b83 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/bmp/bmp_fire_3p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/bmp/bmp_missile_fire_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/bmp/bmp_missile_fire_1p.ogg new file mode 100644 index 000000000..30cc12973 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/bmp/bmp_missile_fire_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/bmp/bmp_missile_fire_3p.ogg b/src/main/resources/assets/superbwarfare/sounds/bmp/bmp_missile_fire_3p.ogg new file mode 100644 index 000000000..944e9883f Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/bmp/bmp_missile_fire_3p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/bmp/bmp_missile_reload.ogg b/src/main/resources/assets/superbwarfare/sounds/bmp/bmp_missile_reload.ogg new file mode 100644 index 000000000..003eeee0f Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/bmp/bmp_missile_reload.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/bmp/bmp_step.ogg b/src/main/resources/assets/superbwarfare/sounds/bmp/bmp_step.ogg new file mode 100644 index 000000000..d037162ca Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/bmp/bmp_step.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/bocek/bocek_pull_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/bocek/bocek_pull_1p.ogg new file mode 100644 index 000000000..28ad35aa3 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/bocek/bocek_pull_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/bocek/bocek_pull_3p.ogg b/src/main/resources/assets/superbwarfare/sounds/bocek/bocek_pull_3p.ogg new file mode 100644 index 000000000..9c6c99bf6 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/bocek/bocek_pull_3p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/bocek/bocek_shatter_cap_fire_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/bocek/bocek_shatter_cap_fire_1p.ogg new file mode 100644 index 000000000..e4e0c9c87 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/bocek/bocek_shatter_cap_fire_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/bocek/bocek_shatter_cap_fire_3p.ogg b/src/main/resources/assets/superbwarfare/sounds/bocek/bocek_shatter_cap_fire_3p.ogg new file mode 100644 index 000000000..876a3e503 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/bocek/bocek_shatter_cap_fire_3p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/bocek/bocek_zoom_fire_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/bocek/bocek_zoom_fire_1p.ogg new file mode 100644 index 000000000..d1a9d2b38 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/bocek/bocek_zoom_fire_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/bocek/bocek_zoom_fire_3p.ogg b/src/main/resources/assets/superbwarfare/sounds/bocek/bocek_zoom_fire_3p.ogg new file mode 100644 index 000000000..ad863dfed Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/bocek/bocek_zoom_fire_3p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/bullet/bullet1.ogg b/src/main/resources/assets/superbwarfare/sounds/bullet/bullet1.ogg new file mode 100644 index 000000000..d034cdc72 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/bullet/bullet1.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/bullet/bullet10.ogg b/src/main/resources/assets/superbwarfare/sounds/bullet/bullet10.ogg new file mode 100644 index 000000000..309e9d73c Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/bullet/bullet10.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/bullet/bullet11.ogg b/src/main/resources/assets/superbwarfare/sounds/bullet/bullet11.ogg new file mode 100644 index 000000000..f8d871063 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/bullet/bullet11.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/bullet/bullet12.ogg b/src/main/resources/assets/superbwarfare/sounds/bullet/bullet12.ogg new file mode 100644 index 000000000..d0ba9a50e Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/bullet/bullet12.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/bullet/bullet13.ogg b/src/main/resources/assets/superbwarfare/sounds/bullet/bullet13.ogg new file mode 100644 index 000000000..a8f2898a7 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/bullet/bullet13.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/bullet/bullet14.ogg b/src/main/resources/assets/superbwarfare/sounds/bullet/bullet14.ogg new file mode 100644 index 000000000..4a522bda3 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/bullet/bullet14.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/bullet/bullet15.ogg b/src/main/resources/assets/superbwarfare/sounds/bullet/bullet15.ogg new file mode 100644 index 000000000..41a446483 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/bullet/bullet15.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/bullet/bullet16.ogg b/src/main/resources/assets/superbwarfare/sounds/bullet/bullet16.ogg new file mode 100644 index 000000000..ef5b0760b Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/bullet/bullet16.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/bullet/bullet2.ogg b/src/main/resources/assets/superbwarfare/sounds/bullet/bullet2.ogg new file mode 100644 index 000000000..8f771d271 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/bullet/bullet2.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/bullet/bullet3.ogg b/src/main/resources/assets/superbwarfare/sounds/bullet/bullet3.ogg new file mode 100644 index 000000000..75943205d Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/bullet/bullet3.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/bullet/bullet4.ogg b/src/main/resources/assets/superbwarfare/sounds/bullet/bullet4.ogg new file mode 100644 index 000000000..3c21c2519 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/bullet/bullet4.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/bullet/bullet5.ogg b/src/main/resources/assets/superbwarfare/sounds/bullet/bullet5.ogg new file mode 100644 index 000000000..1bd0c10b0 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/bullet/bullet5.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/bullet/bullet6.ogg b/src/main/resources/assets/superbwarfare/sounds/bullet/bullet6.ogg new file mode 100644 index 000000000..453759c2e Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/bullet/bullet6.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/bullet/bullet7.ogg b/src/main/resources/assets/superbwarfare/sounds/bullet/bullet7.ogg new file mode 100644 index 000000000..7116f8abf Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/bullet/bullet7.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/bullet/bullet8.ogg b/src/main/resources/assets/superbwarfare/sounds/bullet/bullet8.ogg new file mode 100644 index 000000000..2c1d2c930 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/bullet/bullet8.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/bullet/bullet9.ogg b/src/main/resources/assets/superbwarfare/sounds/bullet/bullet9.ogg new file mode 100644 index 000000000..e40305bc3 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/bullet/bullet9.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/bullet/metal_01.ogg b/src/main/resources/assets/superbwarfare/sounds/bullet/metal_01.ogg new file mode 100644 index 000000000..e6a8c5d68 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/bullet/metal_01.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/bullet/metal_02.ogg b/src/main/resources/assets/superbwarfare/sounds/bullet/metal_02.ogg new file mode 100644 index 000000000..92e154ea8 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/bullet/metal_02.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/bullet/metal_03.ogg b/src/main/resources/assets/superbwarfare/sounds/bullet/metal_03.ogg new file mode 100644 index 000000000..15839e4aa Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/bullet/metal_03.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/bullet/metal_04.ogg b/src/main/resources/assets/superbwarfare/sounds/bullet/metal_04.ogg new file mode 100644 index 000000000..575a13a94 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/bullet/metal_04.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/bullet/metal_05.ogg b/src/main/resources/assets/superbwarfare/sounds/bullet/metal_05.ogg new file mode 100644 index 000000000..e38f9b96a Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/bullet/metal_05.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/bullet_supply.ogg b/src/main/resources/assets/superbwarfare/sounds/bullet_supply.ogg new file mode 100644 index 000000000..453b298a2 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/bullet_supply.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/c4/c4_beep.ogg b/src/main/resources/assets/superbwarfare/sounds/c4/c4_beep.ogg new file mode 100644 index 000000000..4bcd75c51 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/c4/c4_beep.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/c4/c4_detonator_click.ogg b/src/main/resources/assets/superbwarfare/sounds/c4/c4_detonator_click.ogg new file mode 100644 index 000000000..95593df01 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/c4/c4_detonator_click.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/c4/c4_final.ogg b/src/main/resources/assets/superbwarfare/sounds/c4/c4_final.ogg new file mode 100644 index 000000000..033e702af Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/c4/c4_final.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/c4/c4_throw.ogg b/src/main/resources/assets/superbwarfare/sounds/c4/c4_throw.ogg new file mode 100644 index 000000000..a990ba038 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/c4/c4_throw.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/cannon/cannon_reload_01.ogg b/src/main/resources/assets/superbwarfare/sounds/cannon/cannon_reload_01.ogg new file mode 100644 index 000000000..004ad5c6f Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/cannon/cannon_reload_01.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/cannon/cannon_reload_02.ogg b/src/main/resources/assets/superbwarfare/sounds/cannon/cannon_reload_02.ogg new file mode 100644 index 000000000..704c97a8d Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/cannon/cannon_reload_02.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/cannon/cannon_reload_03.ogg b/src/main/resources/assets/superbwarfare/sounds/cannon/cannon_reload_03.ogg new file mode 100644 index 000000000..f435eda39 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/cannon/cannon_reload_03.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/cannon/cannon_zoom_in.ogg b/src/main/resources/assets/superbwarfare/sounds/cannon/cannon_zoom_in.ogg new file mode 100644 index 000000000..9a3b32ede Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/cannon/cannon_zoom_in.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/cannon/cannon_zoom_out.ogg b/src/main/resources/assets/superbwarfare/sounds/cannon/cannon_zoom_out.ogg new file mode 100644 index 000000000..63fde1563 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/cannon/cannon_zoom_out.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/charge_rifle/charge_rifle_fire_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/charge_rifle/charge_rifle_fire_1p.ogg new file mode 100644 index 000000000..884bc48a6 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/charge_rifle/charge_rifle_fire_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/charge_rifle/charge_rifle_fire_3p.ogg b/src/main/resources/assets/superbwarfare/sounds/charge_rifle/charge_rifle_fire_3p.ogg new file mode 100644 index 000000000..2eced8799 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/charge_rifle/charge_rifle_fire_3p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/charge_rifle/charge_rifle_fire_boom_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/charge_rifle/charge_rifle_fire_boom_1p.ogg new file mode 100644 index 000000000..4a94cc16e Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/charge_rifle/charge_rifle_fire_boom_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/charge_rifle/charge_rifle_fire_boom_3p.ogg b/src/main/resources/assets/superbwarfare/sounds/charge_rifle/charge_rifle_fire_boom_3p.ogg new file mode 100644 index 000000000..20a2c03b8 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/charge_rifle/charge_rifle_fire_boom_3p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/devotion/devotion_far.ogg b/src/main/resources/assets/superbwarfare/sounds/devotion/devotion_far.ogg new file mode 100644 index 000000000..42926fa1c Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/devotion/devotion_far.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/devotion/devotion_fire_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/devotion/devotion_fire_1p.ogg new file mode 100644 index 000000000..8b797cf97 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/devotion/devotion_fire_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/devotion/devotion_fire_3p.ogg b/src/main/resources/assets/superbwarfare/sounds/devotion/devotion_fire_3p.ogg new file mode 100644 index 000000000..969c0437a Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/devotion/devotion_fire_3p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/devotion/devotion_reload_empty.ogg b/src/main/resources/assets/superbwarfare/sounds/devotion/devotion_reload_empty.ogg new file mode 100644 index 000000000..bcff88a16 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/devotion/devotion_reload_empty.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/devotion/devotion_reload_normal.ogg b/src/main/resources/assets/superbwarfare/sounds/devotion/devotion_reload_normal.ogg new file mode 100644 index 000000000..dcef49563 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/devotion/devotion_reload_normal.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/devotion/devotion_veryfar.ogg b/src/main/resources/assets/superbwarfare/sounds/devotion/devotion_veryfar.ogg new file mode 100644 index 000000000..60e739f6c Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/devotion/devotion_veryfar.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/doublejump.ogg b/src/main/resources/assets/superbwarfare/sounds/doublejump.ogg new file mode 100644 index 000000000..78f3f8821 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/doublejump.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/drone_sound.ogg b/src/main/resources/assets/superbwarfare/sounds/drone_sound.ogg new file mode 100644 index 000000000..f68b56e42 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/drone_sound.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/edit.ogg b/src/main/resources/assets/superbwarfare/sounds/edit.ogg new file mode 100644 index 000000000..2bfe0d6a7 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/edit.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/edit_mode.ogg b/src/main/resources/assets/superbwarfare/sounds/edit_mode.ogg new file mode 100644 index 000000000..901428a33 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/edit_mode.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/electric.ogg b/src/main/resources/assets/superbwarfare/sounds/electric.ogg new file mode 100644 index 000000000..53a2befef Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/electric.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/explosion/explosion_close.ogg b/src/main/resources/assets/superbwarfare/sounds/explosion/explosion_close.ogg new file mode 100644 index 000000000..2757c5216 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/explosion/explosion_close.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/explosion/explosion_close2.ogg b/src/main/resources/assets/superbwarfare/sounds/explosion/explosion_close2.ogg new file mode 100644 index 000000000..124765b3a Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/explosion/explosion_close2.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/explosion/explosion_close3.ogg b/src/main/resources/assets/superbwarfare/sounds/explosion/explosion_close3.ogg new file mode 100644 index 000000000..80bff52c9 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/explosion/explosion_close3.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/explosion/explosion_far.ogg b/src/main/resources/assets/superbwarfare/sounds/explosion/explosion_far.ogg new file mode 100644 index 000000000..ff94e640f Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/explosion/explosion_far.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/explosion/explosion_far2.ogg b/src/main/resources/assets/superbwarfare/sounds/explosion/explosion_far2.ogg new file mode 100644 index 000000000..504927ee2 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/explosion/explosion_far2.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/explosion/explosion_far3.ogg b/src/main/resources/assets/superbwarfare/sounds/explosion/explosion_far3.ogg new file mode 100644 index 000000000..ab5f9d4ac Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/explosion/explosion_far3.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/explosion/explosion_very_far.ogg b/src/main/resources/assets/superbwarfare/sounds/explosion/explosion_very_far.ogg new file mode 100644 index 000000000..459346ccd Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/explosion/explosion_very_far.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/explosion/explosion_very_far2.ogg b/src/main/resources/assets/superbwarfare/sounds/explosion/explosion_very_far2.ogg new file mode 100644 index 000000000..2abae1bc7 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/explosion/explosion_very_far2.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/explosion/explosion_water.ogg b/src/main/resources/assets/superbwarfare/sounds/explosion/explosion_water.ogg new file mode 100644 index 000000000..6147a72a7 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/explosion/explosion_water.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/explosion/explosion_water2.ogg b/src/main/resources/assets/superbwarfare/sounds/explosion/explosion_water2.ogg new file mode 100644 index 000000000..f19219f65 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/explosion/explosion_water2.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/explosion/explosion_water3.ogg b/src/main/resources/assets/superbwarfare/sounds/explosion/explosion_water3.ogg new file mode 100644 index 000000000..1d7070f4c Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/explosion/explosion_water3.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/explosion/huge_explosion_close.ogg b/src/main/resources/assets/superbwarfare/sounds/explosion/huge_explosion_close.ogg new file mode 100644 index 000000000..60928b7ce Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/explosion/huge_explosion_close.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/explosion/huge_explosion_close2.ogg b/src/main/resources/assets/superbwarfare/sounds/explosion/huge_explosion_close2.ogg new file mode 100644 index 000000000..5560978c1 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/explosion/huge_explosion_close2.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/explosion/huge_explosion_far.ogg b/src/main/resources/assets/superbwarfare/sounds/explosion/huge_explosion_far.ogg new file mode 100644 index 000000000..1957a7865 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/explosion/huge_explosion_far.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/explosion/huge_explosion_far2.ogg b/src/main/resources/assets/superbwarfare/sounds/explosion/huge_explosion_far2.ogg new file mode 100644 index 000000000..5a62b7e2e Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/explosion/huge_explosion_far2.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/explosion/huge_explosion_far3.ogg b/src/main/resources/assets/superbwarfare/sounds/explosion/huge_explosion_far3.ogg new file mode 100644 index 000000000..a0b32d77e Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/explosion/huge_explosion_far3.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/explosion/huge_explosion_very_far.ogg b/src/main/resources/assets/superbwarfare/sounds/explosion/huge_explosion_very_far.ogg new file mode 100644 index 000000000..3f962aa67 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/explosion/huge_explosion_very_far.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/explosion/huge_explosion_very_far2.ogg b/src/main/resources/assets/superbwarfare/sounds/explosion/huge_explosion_very_far2.ogg new file mode 100644 index 000000000..20f69a754 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/explosion/huge_explosion_very_far2.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/firerate.ogg b/src/main/resources/assets/superbwarfare/sounds/firerate.ogg new file mode 100644 index 000000000..cb827a477 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/firerate.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/glock_17/glock_far.ogg b/src/main/resources/assets/superbwarfare/sounds/glock_17/glock_far.ogg new file mode 100644 index 000000000..c593264e4 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/glock_17/glock_far.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/glock_17/glock_fire_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/glock_17/glock_fire_1p.ogg new file mode 100644 index 000000000..d5ccbb5e8 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/glock_17/glock_fire_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/glock_17/glock_fire_3p.ogg b/src/main/resources/assets/superbwarfare/sounds/glock_17/glock_fire_3p.ogg new file mode 100644 index 000000000..fb2fed8e3 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/glock_17/glock_fire_3p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/glock_17/glock_reload_empty.ogg b/src/main/resources/assets/superbwarfare/sounds/glock_17/glock_reload_empty.ogg new file mode 100644 index 000000000..7fd8ca51e Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/glock_17/glock_reload_empty.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/glock_17/glock_reload_normal.ogg b/src/main/resources/assets/superbwarfare/sounds/glock_17/glock_reload_normal.ogg new file mode 100644 index 000000000..2a40f38b8 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/glock_17/glock_reload_normal.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/glock_17/glock_veryfar.ogg b/src/main/resources/assets/superbwarfare/sounds/glock_17/glock_veryfar.ogg new file mode 100644 index 000000000..12ffeca8a Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/glock_17/glock_veryfar.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/grenade_pull.ogg b/src/main/resources/assets/superbwarfare/sounds/grenade_pull.ogg new file mode 100644 index 000000000..211acad10 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/grenade_pull.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/grenade_throw.ogg b/src/main/resources/assets/superbwarfare/sounds/grenade_throw.ogg new file mode 100644 index 000000000..47b8c43ec Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/grenade_throw.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/growl.ogg b/src/main/resources/assets/superbwarfare/sounds/growl.ogg new file mode 100644 index 000000000..b0047d16f Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/growl.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/headshot.ogg b/src/main/resources/assets/superbwarfare/sounds/headshot.ogg new file mode 100644 index 000000000..5c73b3443 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/headshot.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/helicopter/decoy_fire.ogg b/src/main/resources/assets/superbwarfare/sounds/helicopter/decoy_fire.ogg new file mode 100644 index 000000000..c488ae3ee Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/helicopter/decoy_fire.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/helicopter/decoy_reload.ogg b/src/main/resources/assets/superbwarfare/sounds/helicopter/decoy_reload.ogg new file mode 100644 index 000000000..8569b2548 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/helicopter/decoy_reload.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/helicopter/heli_cannon_far.ogg b/src/main/resources/assets/superbwarfare/sounds/helicopter/heli_cannon_far.ogg new file mode 100644 index 000000000..89e93056f Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/helicopter/heli_cannon_far.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/helicopter/heli_cannon_fire_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/helicopter/heli_cannon_fire_1p.ogg new file mode 100644 index 000000000..178472ce8 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/helicopter/heli_cannon_fire_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/helicopter/heli_cannon_fire_3p.ogg b/src/main/resources/assets/superbwarfare/sounds/helicopter/heli_cannon_fire_3p.ogg new file mode 100644 index 000000000..22e142b0f Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/helicopter/heli_cannon_fire_3p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/helicopter/heli_cannon_veryfar.ogg b/src/main/resources/assets/superbwarfare/sounds/helicopter/heli_cannon_veryfar.ogg new file mode 100644 index 000000000..125c36f2b Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/helicopter/heli_cannon_veryfar.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/helicopter/heli_engine.ogg b/src/main/resources/assets/superbwarfare/sounds/helicopter/heli_engine.ogg new file mode 100644 index 000000000..47d8d8d54 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/helicopter/heli_engine.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/helicopter/heli_engine_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/helicopter/heli_engine_1p.ogg new file mode 100644 index 000000000..3a0a8eac7 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/helicopter/heli_engine_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/helicopter/heli_engine_start.ogg b/src/main/resources/assets/superbwarfare/sounds/helicopter/heli_engine_start.ogg new file mode 100644 index 000000000..ebca15552 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/helicopter/heli_engine_start.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/helicopter/heli_rocket_fire_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/helicopter/heli_rocket_fire_1p.ogg new file mode 100644 index 000000000..76d9e1b86 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/helicopter/heli_rocket_fire_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/helicopter/heli_rocket_fire_3p.ogg b/src/main/resources/assets/superbwarfare/sounds/helicopter/heli_rocket_fire_3p.ogg new file mode 100644 index 000000000..e6c4adba6 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/helicopter/heli_rocket_fire_3p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/heng.ogg b/src/main/resources/assets/superbwarfare/sounds/heng.ogg new file mode 100644 index 000000000..2f4128f86 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/heng.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/hengheng.ogg b/src/main/resources/assets/superbwarfare/sounds/hengheng.ogg new file mode 100644 index 000000000..2188ac274 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/hengheng.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/hk_416/hk_416_far.ogg b/src/main/resources/assets/superbwarfare/sounds/hk_416/hk_416_far.ogg new file mode 100644 index 000000000..d2b1f4755 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/hk_416/hk_416_far.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/hk_416/hk_416_fire_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/hk_416/hk_416_fire_1p.ogg new file mode 100644 index 000000000..81b6395ab Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/hk_416/hk_416_fire_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/hk_416/hk_416_fire_1p_s.ogg b/src/main/resources/assets/superbwarfare/sounds/hk_416/hk_416_fire_1p_s.ogg new file mode 100644 index 000000000..c661e9907 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/hk_416/hk_416_fire_1p_s.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/hk_416/hk_416_fire_3p.ogg b/src/main/resources/assets/superbwarfare/sounds/hk_416/hk_416_fire_3p.ogg new file mode 100644 index 000000000..ba5a7dafb Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/hk_416/hk_416_fire_3p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/hk_416/hk_416_fire_3p_s.ogg b/src/main/resources/assets/superbwarfare/sounds/hk_416/hk_416_fire_3p_s.ogg new file mode 100644 index 000000000..3a3f94c6b Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/hk_416/hk_416_fire_3p_s.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/hk_416/hk_416_reload_empty.ogg b/src/main/resources/assets/superbwarfare/sounds/hk_416/hk_416_reload_empty.ogg new file mode 100644 index 000000000..97168c3ba Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/hk_416/hk_416_reload_empty.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/hk_416/hk_416_reload_normal.ogg b/src/main/resources/assets/superbwarfare/sounds/hk_416/hk_416_reload_normal.ogg new file mode 100644 index 000000000..f0f016f59 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/hk_416/hk_416_reload_normal.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/hk_416/hk_416_veryfar.ogg b/src/main/resources/assets/superbwarfare/sounds/hk_416/hk_416_veryfar.ogg new file mode 100644 index 000000000..a51691332 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/hk_416/hk_416_veryfar.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/homemade_shotgun/homemade_shotgun_far.ogg b/src/main/resources/assets/superbwarfare/sounds/homemade_shotgun/homemade_shotgun_far.ogg new file mode 100644 index 000000000..4523cce7e Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/homemade_shotgun/homemade_shotgun_far.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/homemade_shotgun/homemade_shotgun_fire_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/homemade_shotgun/homemade_shotgun_fire_1p.ogg new file mode 100644 index 000000000..1e2f2ece4 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/homemade_shotgun/homemade_shotgun_fire_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/homemade_shotgun/homemade_shotgun_fire_3p.ogg b/src/main/resources/assets/superbwarfare/sounds/homemade_shotgun/homemade_shotgun_fire_3p.ogg new file mode 100644 index 000000000..4561c6fd1 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/homemade_shotgun/homemade_shotgun_fire_3p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/homemade_shotgun/homemade_shotgun_reload_empty.ogg b/src/main/resources/assets/superbwarfare/sounds/homemade_shotgun/homemade_shotgun_reload_empty.ogg new file mode 100644 index 000000000..10879db83 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/homemade_shotgun/homemade_shotgun_reload_empty.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/homemade_shotgun/homemade_shotgun_reload_normal.ogg b/src/main/resources/assets/superbwarfare/sounds/homemade_shotgun/homemade_shotgun_reload_normal.ogg new file mode 100644 index 000000000..0a7ca4df6 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/homemade_shotgun/homemade_shotgun_reload_normal.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/homemade_shotgun/homemade_shotgun_veryfar.ogg b/src/main/resources/assets/superbwarfare/sounds/homemade_shotgun/homemade_shotgun_veryfar.ogg new file mode 100644 index 000000000..f1e269661 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/homemade_shotgun/homemade_shotgun_veryfar.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/hunting_rifle/hunting_rifle_far.ogg b/src/main/resources/assets/superbwarfare/sounds/hunting_rifle/hunting_rifle_far.ogg new file mode 100644 index 000000000..7b534444c Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/hunting_rifle/hunting_rifle_far.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/hunting_rifle/hunting_rifle_fire_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/hunting_rifle/hunting_rifle_fire_1p.ogg new file mode 100644 index 000000000..834ba6c30 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/hunting_rifle/hunting_rifle_fire_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/hunting_rifle/hunting_rifle_fire_3p.ogg b/src/main/resources/assets/superbwarfare/sounds/hunting_rifle/hunting_rifle_fire_3p.ogg new file mode 100644 index 000000000..4a83df624 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/hunting_rifle/hunting_rifle_fire_3p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/hunting_rifle/hunting_rifle_reload.ogg b/src/main/resources/assets/superbwarfare/sounds/hunting_rifle/hunting_rifle_reload.ogg new file mode 100644 index 000000000..b1b8a9d47 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/hunting_rifle/hunting_rifle_reload.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/hunting_rifle/hunting_rifle_veryfar.ogg b/src/main/resources/assets/superbwarfare/sounds/hunting_rifle/hunting_rifle_veryfar.ogg new file mode 100644 index 000000000..63ccd48cc Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/hunting_rifle/hunting_rifle_veryfar.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/indication.ogg b/src/main/resources/assets/superbwarfare/sounds/indication.ogg new file mode 100644 index 000000000..0ac3da9d2 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/indication.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/indication_vehicle.ogg b/src/main/resources/assets/superbwarfare/sounds/indication_vehicle.ogg new file mode 100644 index 000000000..e71f8f95b Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/indication_vehicle.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/into_cannon.ogg b/src/main/resources/assets/superbwarfare/sounds/into_cannon.ogg new file mode 100644 index 000000000..a9c8acdfc Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/into_cannon.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/into_missile.ogg b/src/main/resources/assets/superbwarfare/sounds/into_missile.ogg new file mode 100644 index 000000000..1465cf7b7 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/into_missile.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/javelin/javelin_far.ogg b/src/main/resources/assets/superbwarfare/sounds/javelin/javelin_far.ogg new file mode 100644 index 000000000..86a6c86cd Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/javelin/javelin_far.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/javelin/javelin_fire_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/javelin/javelin_fire_1p.ogg new file mode 100644 index 000000000..2ae3b84ff Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/javelin/javelin_fire_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/javelin/javelin_fire_3p.ogg b/src/main/resources/assets/superbwarfare/sounds/javelin/javelin_fire_3p.ogg new file mode 100644 index 000000000..66f78fa4d Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/javelin/javelin_fire_3p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/javelin/javelin_lock.ogg b/src/main/resources/assets/superbwarfare/sounds/javelin/javelin_lock.ogg new file mode 100644 index 000000000..e93246486 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/javelin/javelin_lock.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/javelin/javelin_lockon.ogg b/src/main/resources/assets/superbwarfare/sounds/javelin/javelin_lockon.ogg new file mode 100644 index 000000000..b3520cc81 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/javelin/javelin_lockon.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/javelin/javelin_reload.ogg b/src/main/resources/assets/superbwarfare/sounds/javelin/javelin_reload.ogg new file mode 100644 index 000000000..cb3a1fbab Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/javelin/javelin_reload.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/jump.ogg b/src/main/resources/assets/superbwarfare/sounds/jump.ogg new file mode 100644 index 000000000..3bec960dc Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/jump.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/k_98/k_98_bolt.ogg b/src/main/resources/assets/superbwarfare/sounds/k_98/k_98_bolt.ogg new file mode 100644 index 000000000..b8d495e57 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/k_98/k_98_bolt.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/k_98/k_98_far.ogg b/src/main/resources/assets/superbwarfare/sounds/k_98/k_98_far.ogg new file mode 100644 index 000000000..b77b8e2ea Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/k_98/k_98_far.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/k_98/k_98_finish.ogg b/src/main/resources/assets/superbwarfare/sounds/k_98/k_98_finish.ogg new file mode 100644 index 000000000..be720152f Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/k_98/k_98_finish.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/k_98/k_98_fire_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/k_98/k_98_fire_1p.ogg new file mode 100644 index 000000000..4611906a4 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/k_98/k_98_fire_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/k_98/k_98_fire_3p.ogg b/src/main/resources/assets/superbwarfare/sounds/k_98/k_98_fire_3p.ogg new file mode 100644 index 000000000..72f4ec00f Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/k_98/k_98_fire_3p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/k_98/k_98_loop.ogg b/src/main/resources/assets/superbwarfare/sounds/k_98/k_98_loop.ogg new file mode 100644 index 000000000..c4ae1c47a Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/k_98/k_98_loop.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/k_98/k_98_prepare.ogg b/src/main/resources/assets/superbwarfare/sounds/k_98/k_98_prepare.ogg new file mode 100644 index 000000000..47e4078e0 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/k_98/k_98_prepare.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/k_98/k_98_prepare_empty.ogg b/src/main/resources/assets/superbwarfare/sounds/k_98/k_98_prepare_empty.ogg new file mode 100644 index 000000000..15a58246f Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/k_98/k_98_prepare_empty.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/k_98/k_98_reload_empty.ogg b/src/main/resources/assets/superbwarfare/sounds/k_98/k_98_reload_empty.ogg new file mode 100644 index 000000000..573558af9 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/k_98/k_98_reload_empty.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/k_98/k_98_veryfar.ogg b/src/main/resources/assets/superbwarfare/sounds/k_98/k_98_veryfar.ogg new file mode 100644 index 000000000..9d6711580 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/k_98/k_98_veryfar.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/laser_tower_shoot.ogg b/src/main/resources/assets/superbwarfare/sounds/laser_tower_shoot.ogg new file mode 100644 index 000000000..fe80f4849 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/laser_tower_shoot.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/lav/coax_fire_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/lav/coax_fire_1p.ogg new file mode 100644 index 000000000..2b7c0d6c9 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/lav/coax_fire_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/lav/lav_engine.ogg b/src/main/resources/assets/superbwarfare/sounds/lav/lav_engine.ogg new file mode 100644 index 000000000..5cbc0c66b Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/lav/lav_engine.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/lav/lav_engine_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/lav/lav_engine_1p.ogg new file mode 100644 index 000000000..41424def2 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/lav/lav_engine_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/lav/lav_far.ogg b/src/main/resources/assets/superbwarfare/sounds/lav/lav_far.ogg new file mode 100644 index 000000000..c56672e8b Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/lav/lav_far.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/lav/lav_fire_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/lav/lav_fire_1p.ogg new file mode 100644 index 000000000..239b7bab0 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/lav/lav_fire_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/lav/lav_fire_3p.ogg b/src/main/resources/assets/superbwarfare/sounds/lav/lav_fire_3p.ogg new file mode 100644 index 000000000..91f52ce3e Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/lav/lav_fire_3p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/lav/lav_veryfar.ogg b/src/main/resources/assets/superbwarfare/sounds/lav/lav_veryfar.ogg new file mode 100644 index 000000000..b4c869a51 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/lav/lav_veryfar.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/lunge_mine_growl.ogg b/src/main/resources/assets/superbwarfare/sounds/lunge_mine_growl.ogg new file mode 100644 index 000000000..ec3a9535b Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/lunge_mine_growl.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/m1911/m1911_far.ogg b/src/main/resources/assets/superbwarfare/sounds/m1911/m1911_far.ogg new file mode 100644 index 000000000..2c4211f2f Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/m1911/m1911_far.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/m1911/m1911_fire_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/m1911/m1911_fire_1p.ogg new file mode 100644 index 000000000..cd56396a5 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/m1911/m1911_fire_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/m1911/m1911_fire_3p.ogg b/src/main/resources/assets/superbwarfare/sounds/m1911/m1911_fire_3p.ogg new file mode 100644 index 000000000..3ab8d400e Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/m1911/m1911_fire_3p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/m1911/m1911_veryfar.ogg b/src/main/resources/assets/superbwarfare/sounds/m1911/m1911_veryfar.ogg new file mode 100644 index 000000000..f310ee27e Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/m1911/m1911_veryfar.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/m2/m2_far.ogg b/src/main/resources/assets/superbwarfare/sounds/m2/m2_far.ogg new file mode 100644 index 000000000..71b6011d2 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/m2/m2_far.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/m2/m2_fire_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/m2/m2_fire_1p.ogg new file mode 100644 index 000000000..b356d674c Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/m2/m2_fire_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/m2/m2_fire_3p.ogg b/src/main/resources/assets/superbwarfare/sounds/m2/m2_fire_3p.ogg new file mode 100644 index 000000000..17a01a3e4 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/m2/m2_fire_3p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/m2/m2_veryfar.ogg b/src/main/resources/assets/superbwarfare/sounds/m2/m2_veryfar.ogg new file mode 100644 index 000000000..e7e3d2cf2 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/m2/m2_veryfar.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/m_4/m_4_far.ogg b/src/main/resources/assets/superbwarfare/sounds/m_4/m_4_far.ogg new file mode 100644 index 000000000..5f3ff04a9 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/m_4/m_4_far.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/m_4/m_4_fire_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/m_4/m_4_fire_1p.ogg new file mode 100644 index 000000000..fd90a9ceb Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/m_4/m_4_fire_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/m_4/m_4_fire_1p_s.ogg b/src/main/resources/assets/superbwarfare/sounds/m_4/m_4_fire_1p_s.ogg new file mode 100644 index 000000000..3eb3d11b9 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/m_4/m_4_fire_1p_s.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/m_4/m_4_fire_3p.ogg b/src/main/resources/assets/superbwarfare/sounds/m_4/m_4_fire_3p.ogg new file mode 100644 index 000000000..fe47b8530 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/m_4/m_4_fire_3p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/m_4/m_4_fire_3p_s.ogg b/src/main/resources/assets/superbwarfare/sounds/m_4/m_4_fire_3p_s.ogg new file mode 100644 index 000000000..4f937ab95 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/m_4/m_4_fire_3p_s.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/m_4/m_4_reload_empty.ogg b/src/main/resources/assets/superbwarfare/sounds/m_4/m_4_reload_empty.ogg new file mode 100644 index 000000000..8faed567f Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/m_4/m_4_reload_empty.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/m_4/m_4_reload_normal.ogg b/src/main/resources/assets/superbwarfare/sounds/m_4/m_4_reload_normal.ogg new file mode 100644 index 000000000..642075092 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/m_4/m_4_reload_normal.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/m_4/m_4_veryfar.ogg b/src/main/resources/assets/superbwarfare/sounds/m_4/m_4_veryfar.ogg new file mode 100644 index 000000000..a12c6174b Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/m_4/m_4_veryfar.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/m_60/m_60_far.ogg b/src/main/resources/assets/superbwarfare/sounds/m_60/m_60_far.ogg new file mode 100644 index 000000000..6d37273b5 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/m_60/m_60_far.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/m_60/m_60_fire_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/m_60/m_60_fire_1p.ogg new file mode 100644 index 000000000..3edc5ace9 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/m_60/m_60_fire_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/m_60/m_60_fire_3p.ogg b/src/main/resources/assets/superbwarfare/sounds/m_60/m_60_fire_3p.ogg new file mode 100644 index 000000000..bd76a793b Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/m_60/m_60_fire_3p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/m_60/m_60_reload_empty.ogg b/src/main/resources/assets/superbwarfare/sounds/m_60/m_60_reload_empty.ogg new file mode 100644 index 000000000..2ec68565e Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/m_60/m_60_reload_empty.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/m_60/m_60_reload_normal.ogg b/src/main/resources/assets/superbwarfare/sounds/m_60/m_60_reload_normal.ogg new file mode 100644 index 000000000..d0337ea61 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/m_60/m_60_reload_normal.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/m_60/m_60_veryfar.ogg b/src/main/resources/assets/superbwarfare/sounds/m_60/m_60_veryfar.ogg new file mode 100644 index 000000000..44c041966 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/m_60/m_60_veryfar.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/m_79/m_79_far.ogg b/src/main/resources/assets/superbwarfare/sounds/m_79/m_79_far.ogg new file mode 100644 index 000000000..98c195dd3 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/m_79/m_79_far.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/m_79/m_79_fire_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/m_79/m_79_fire_1p.ogg new file mode 100644 index 000000000..ec2a19c88 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/m_79/m_79_fire_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/m_79/m_79_fire_3p.ogg b/src/main/resources/assets/superbwarfare/sounds/m_79/m_79_fire_3p.ogg new file mode 100644 index 000000000..f0ef000b7 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/m_79/m_79_fire_3p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/m_79/m_79_reload.ogg b/src/main/resources/assets/superbwarfare/sounds/m_79/m_79_reload.ogg new file mode 100644 index 000000000..1c5abe5e6 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/m_79/m_79_reload.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/m_79/m_79_veryfar.ogg b/src/main/resources/assets/superbwarfare/sounds/m_79/m_79_veryfar.ogg new file mode 100644 index 000000000..68ab86431 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/m_79/m_79_veryfar.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/m_870/m_870_bolt.ogg b/src/main/resources/assets/superbwarfare/sounds/m_870/m_870_bolt.ogg new file mode 100644 index 000000000..792ace075 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/m_870/m_870_bolt.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/m_870/m_870_far.ogg b/src/main/resources/assets/superbwarfare/sounds/m_870/m_870_far.ogg new file mode 100644 index 000000000..143cd05a6 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/m_870/m_870_far.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/m_870/m_870_fire_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/m_870/m_870_fire_1p.ogg new file mode 100644 index 000000000..bf1221f78 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/m_870/m_870_fire_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/m_870/m_870_fire_3p.ogg b/src/main/resources/assets/superbwarfare/sounds/m_870/m_870_fire_3p.ogg new file mode 100644 index 000000000..a0321d8d8 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/m_870/m_870_fire_3p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/m_870/m_870_preparealt.ogg b/src/main/resources/assets/superbwarfare/sounds/m_870/m_870_preparealt.ogg new file mode 100644 index 000000000..a247d5f80 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/m_870/m_870_preparealt.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/m_870/m_870_reload_loop.ogg b/src/main/resources/assets/superbwarfare/sounds/m_870/m_870_reload_loop.ogg new file mode 100644 index 000000000..896331c99 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/m_870/m_870_reload_loop.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/m_870/m_870_veryfar.ogg b/src/main/resources/assets/superbwarfare/sounds/m_870/m_870_veryfar.ogg new file mode 100644 index 000000000..4c6a1c707 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/m_870/m_870_veryfar.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/m_98b/m_98b_bolt.ogg b/src/main/resources/assets/superbwarfare/sounds/m_98b/m_98b_bolt.ogg new file mode 100644 index 000000000..4ddaaeac3 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/m_98b/m_98b_bolt.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/m_98b/m_98b_far.ogg b/src/main/resources/assets/superbwarfare/sounds/m_98b/m_98b_far.ogg new file mode 100644 index 000000000..5e770fddc Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/m_98b/m_98b_far.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/m_98b/m_98b_fire_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/m_98b/m_98b_fire_1p.ogg new file mode 100644 index 000000000..d541ab563 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/m_98b/m_98b_fire_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/m_98b/m_98b_fire_3p.ogg b/src/main/resources/assets/superbwarfare/sounds/m_98b/m_98b_fire_3p.ogg new file mode 100644 index 000000000..294eeff53 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/m_98b/m_98b_fire_3p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/m_98b/m_98b_reload_empty.ogg b/src/main/resources/assets/superbwarfare/sounds/m_98b/m_98b_reload_empty.ogg new file mode 100644 index 000000000..306f3565e Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/m_98b/m_98b_reload_empty.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/m_98b/m_98b_reload_normal.ogg b/src/main/resources/assets/superbwarfare/sounds/m_98b/m_98b_reload_normal.ogg new file mode 100644 index 000000000..6eb6f2f76 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/m_98b/m_98b_reload_normal.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/m_98b/m_98b_veryfar.ogg b/src/main/resources/assets/superbwarfare/sounds/m_98b/m_98b_veryfar.ogg new file mode 100644 index 000000000..7e696d625 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/m_98b/m_98b_veryfar.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/marlin/marlin_end.ogg b/src/main/resources/assets/superbwarfare/sounds/marlin/marlin_end.ogg new file mode 100644 index 000000000..2855863c0 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/marlin/marlin_end.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/marlin/marlin_far.ogg b/src/main/resources/assets/superbwarfare/sounds/marlin/marlin_far.ogg new file mode 100644 index 000000000..cd924e45f Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/marlin/marlin_far.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/marlin/marlin_fire_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/marlin/marlin_fire_1p.ogg new file mode 100644 index 000000000..78ff41a4c Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/marlin/marlin_fire_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/marlin/marlin_fire_3p.ogg b/src/main/resources/assets/superbwarfare/sounds/marlin/marlin_fire_3p.ogg new file mode 100644 index 000000000..bd1c6a27f Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/marlin/marlin_fire_3p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/marlin/marlin_loop.ogg b/src/main/resources/assets/superbwarfare/sounds/marlin/marlin_loop.ogg new file mode 100644 index 000000000..59d67a8f8 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/marlin/marlin_loop.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/marlin/marlin_start.ogg b/src/main/resources/assets/superbwarfare/sounds/marlin/marlin_start.ogg new file mode 100644 index 000000000..3673010a1 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/marlin/marlin_start.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/marlin/marlin_veryfar.ogg b/src/main/resources/assets/superbwarfare/sounds/marlin/marlin_veryfar.ogg new file mode 100644 index 000000000..9b89b4c87 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/marlin/marlin_veryfar.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/minigun/minigun_far.ogg b/src/main/resources/assets/superbwarfare/sounds/minigun/minigun_far.ogg new file mode 100644 index 000000000..496bea3ca Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/minigun/minigun_far.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/minigun/minigun_fire_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/minigun/minigun_fire_1p.ogg new file mode 100644 index 000000000..626bc1329 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/minigun/minigun_fire_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/minigun/minigun_fire_3p.ogg b/src/main/resources/assets/superbwarfare/sounds/minigun/minigun_fire_3p.ogg new file mode 100644 index 000000000..1b49761a3 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/minigun/minigun_fire_3p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/minigun/minigun_overheat.ogg b/src/main/resources/assets/superbwarfare/sounds/minigun/minigun_overheat.ogg new file mode 100644 index 000000000..62a81abf3 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/minigun/minigun_overheat.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/minigun/minigun_rot.ogg b/src/main/resources/assets/superbwarfare/sounds/minigun/minigun_rot.ogg new file mode 100644 index 000000000..743cc3186 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/minigun/minigun_rot.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/minigun/minigun_veryfar.ogg b/src/main/resources/assets/superbwarfare/sounds/minigun/minigun_veryfar.ogg new file mode 100644 index 000000000..a8fa9828d Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/minigun/minigun_veryfar.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/missile_reload.ogg b/src/main/resources/assets/superbwarfare/sounds/missile_reload.ogg new file mode 100644 index 000000000..fc4f1417a Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/missile_reload.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/mk_14/mk_14_far.ogg b/src/main/resources/assets/superbwarfare/sounds/mk_14/mk_14_far.ogg new file mode 100644 index 000000000..3df3ede3b Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/mk_14/mk_14_far.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/mk_14/mk_14_far_s.ogg b/src/main/resources/assets/superbwarfare/sounds/mk_14/mk_14_far_s.ogg new file mode 100644 index 000000000..39b7d41c8 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/mk_14/mk_14_far_s.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/mk_14/mk_14_fire_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/mk_14/mk_14_fire_1p.ogg new file mode 100644 index 000000000..8af0bbfd9 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/mk_14/mk_14_fire_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/mk_14/mk_14_fire_1p_s.ogg b/src/main/resources/assets/superbwarfare/sounds/mk_14/mk_14_fire_1p_s.ogg new file mode 100644 index 000000000..4d9b82258 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/mk_14/mk_14_fire_1p_s.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/mk_14/mk_14_fire_3p.ogg b/src/main/resources/assets/superbwarfare/sounds/mk_14/mk_14_fire_3p.ogg new file mode 100644 index 000000000..fe8c47810 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/mk_14/mk_14_fire_3p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/mk_14/mk_14_fire_3p_s.ogg b/src/main/resources/assets/superbwarfare/sounds/mk_14/mk_14_fire_3p_s.ogg new file mode 100644 index 000000000..d2bf4747b Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/mk_14/mk_14_fire_3p_s.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/mk_14/mk_14_reload_empty.ogg b/src/main/resources/assets/superbwarfare/sounds/mk_14/mk_14_reload_empty.ogg new file mode 100644 index 000000000..cc9161355 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/mk_14/mk_14_reload_empty.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/mk_14/mk_14_reload_normal.ogg b/src/main/resources/assets/superbwarfare/sounds/mk_14/mk_14_reload_normal.ogg new file mode 100644 index 000000000..65b4d016b Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/mk_14/mk_14_reload_normal.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/mk_14/mk_14_veryfar.ogg b/src/main/resources/assets/superbwarfare/sounds/mk_14/mk_14_veryfar.ogg new file mode 100644 index 000000000..69ecd6c05 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/mk_14/mk_14_veryfar.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/mk_42/mk_42_far.ogg b/src/main/resources/assets/superbwarfare/sounds/mk_42/mk_42_far.ogg new file mode 100644 index 000000000..bef33ee40 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/mk_42/mk_42_far.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/mk_42/mk_42_fire_1p_1.ogg b/src/main/resources/assets/superbwarfare/sounds/mk_42/mk_42_fire_1p_1.ogg new file mode 100644 index 000000000..e1e3ebbee Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/mk_42/mk_42_fire_1p_1.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/mk_42/mk_42_fire_1p_2.ogg b/src/main/resources/assets/superbwarfare/sounds/mk_42/mk_42_fire_1p_2.ogg new file mode 100644 index 000000000..029aec563 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/mk_42/mk_42_fire_1p_2.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/mk_42/mk_42_fire_1p_3.ogg b/src/main/resources/assets/superbwarfare/sounds/mk_42/mk_42_fire_1p_3.ogg new file mode 100644 index 000000000..d71a47210 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/mk_42/mk_42_fire_1p_3.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/mk_42/mk_42_fire_1p_4.ogg b/src/main/resources/assets/superbwarfare/sounds/mk_42/mk_42_fire_1p_4.ogg new file mode 100644 index 000000000..504456965 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/mk_42/mk_42_fire_1p_4.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/mk_42/mk_42_fire_3p.ogg b/src/main/resources/assets/superbwarfare/sounds/mk_42/mk_42_fire_3p.ogg new file mode 100644 index 000000000..c7758aefd Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/mk_42/mk_42_fire_3p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/mk_42/mk_42_veryfar.ogg b/src/main/resources/assets/superbwarfare/sounds/mk_42/mk_42_veryfar.ogg new file mode 100644 index 000000000..dc6492ba3 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/mk_42/mk_42_veryfar.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/mortar_distant.ogg b/src/main/resources/assets/superbwarfare/sounds/mortar_distant.ogg new file mode 100644 index 000000000..f768423a7 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/mortar_distant.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/mortar_fire.ogg b/src/main/resources/assets/superbwarfare/sounds/mortar_fire.ogg new file mode 100644 index 000000000..5d8973189 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/mortar_fire.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/mortar_load.ogg b/src/main/resources/assets/superbwarfare/sounds/mortar_load.ogg new file mode 100644 index 000000000..10bcd4ce2 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/mortar_load.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/mosin_nagant/mosin_nagant_far.ogg b/src/main/resources/assets/superbwarfare/sounds/mosin_nagant/mosin_nagant_far.ogg new file mode 100644 index 000000000..4739b8107 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/mosin_nagant/mosin_nagant_far.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/mosin_nagant/mosin_nagant_fire_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/mosin_nagant/mosin_nagant_fire_1p.ogg new file mode 100644 index 000000000..3a6fe81a8 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/mosin_nagant/mosin_nagant_fire_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/mosin_nagant/mosin_nagant_fire_3p.ogg b/src/main/resources/assets/superbwarfare/sounds/mosin_nagant/mosin_nagant_fire_3p.ogg new file mode 100644 index 000000000..3e8ba9bc5 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/mosin_nagant/mosin_nagant_fire_3p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/mosin_nagant/mosin_nagant_veryfar.ogg b/src/main/resources/assets/superbwarfare/sounds/mosin_nagant/mosin_nagant_veryfar.ogg new file mode 100644 index 000000000..ab966b2a6 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/mosin_nagant/mosin_nagant_veryfar.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/mp443/mp443_fire_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/mp443/mp443_fire_1p.ogg new file mode 100644 index 000000000..79c26c3f6 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/mp443/mp443_fire_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/mp443/mp443_fire_3p.ogg b/src/main/resources/assets/superbwarfare/sounds/mp443/mp443_fire_3p.ogg new file mode 100644 index 000000000..e717ffe9c Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/mp443/mp443_fire_3p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/mp443/mp443_silence.ogg b/src/main/resources/assets/superbwarfare/sounds/mp443/mp443_silence.ogg new file mode 100644 index 000000000..d1ad75818 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/mp443/mp443_silence.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/mp443/mp443_silence_3p.ogg b/src/main/resources/assets/superbwarfare/sounds/mp443/mp443_silence_3p.ogg new file mode 100644 index 000000000..c12aee748 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/mp443/mp443_silence_3p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/ntw_20/ntw_20_bolt.ogg b/src/main/resources/assets/superbwarfare/sounds/ntw_20/ntw_20_bolt.ogg new file mode 100644 index 000000000..5a6d3ff69 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/ntw_20/ntw_20_bolt.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/ntw_20/ntw_20_far.ogg b/src/main/resources/assets/superbwarfare/sounds/ntw_20/ntw_20_far.ogg new file mode 100644 index 000000000..94c91bfbc Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/ntw_20/ntw_20_far.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/ntw_20/ntw_20_fire_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/ntw_20/ntw_20_fire_1p.ogg new file mode 100644 index 000000000..43474eb37 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/ntw_20/ntw_20_fire_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/ntw_20/ntw_20_fire_3p.ogg b/src/main/resources/assets/superbwarfare/sounds/ntw_20/ntw_20_fire_3p.ogg new file mode 100644 index 000000000..2662379e3 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/ntw_20/ntw_20_fire_3p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/ntw_20/ntw_20_reload_empty.ogg b/src/main/resources/assets/superbwarfare/sounds/ntw_20/ntw_20_reload_empty.ogg new file mode 100644 index 000000000..31af739b2 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/ntw_20/ntw_20_reload_empty.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/ntw_20/ntw_20_reload_normal.ogg b/src/main/resources/assets/superbwarfare/sounds/ntw_20/ntw_20_reload_normal.ogg new file mode 100644 index 000000000..ca69a63c2 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/ntw_20/ntw_20_reload_normal.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/ntw_20/ntw_20_veryfar.ogg b/src/main/resources/assets/superbwarfare/sounds/ntw_20/ntw_20_veryfar.ogg new file mode 100644 index 000000000..4fad1e785 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/ntw_20/ntw_20_veryfar.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/open.ogg b/src/main/resources/assets/superbwarfare/sounds/open.ogg new file mode 100644 index 000000000..5fed2527c Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/open.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/ouch.ogg b/src/main/resources/assets/superbwarfare/sounds/ouch.ogg new file mode 100644 index 000000000..8a827a2b1 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/ouch.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/qbz95/qbz95_far.ogg b/src/main/resources/assets/superbwarfare/sounds/qbz95/qbz95_far.ogg new file mode 100644 index 000000000..c91594b1d Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/qbz95/qbz95_far.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/qbz95/qbz95_fire1p.ogg b/src/main/resources/assets/superbwarfare/sounds/qbz95/qbz95_fire1p.ogg new file mode 100644 index 000000000..d68057630 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/qbz95/qbz95_fire1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/qbz95/qbz95_fire1p_s.ogg b/src/main/resources/assets/superbwarfare/sounds/qbz95/qbz95_fire1p_s.ogg new file mode 100644 index 000000000..202d6fbf1 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/qbz95/qbz95_fire1p_s.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/qbz95/qbz95_fire3p.ogg b/src/main/resources/assets/superbwarfare/sounds/qbz95/qbz95_fire3p.ogg new file mode 100644 index 000000000..a7bad04f4 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/qbz95/qbz95_fire3p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/qbz95/qbz95_fire3p_s.ogg b/src/main/resources/assets/superbwarfare/sounds/qbz95/qbz95_fire3p_s.ogg new file mode 100644 index 000000000..e89a7031f Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/qbz95/qbz95_fire3p_s.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/qbz95/qbz95_reload_empty.ogg b/src/main/resources/assets/superbwarfare/sounds/qbz95/qbz95_reload_empty.ogg new file mode 100644 index 000000000..acde11fe6 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/qbz95/qbz95_reload_empty.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/qbz95/qbz95_reload_normal.ogg b/src/main/resources/assets/superbwarfare/sounds/qbz95/qbz95_reload_normal.ogg new file mode 100644 index 000000000..557b9c6e9 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/qbz95/qbz95_reload_normal.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/qbz95/qbz95_veryfar.ogg b/src/main/resources/assets/superbwarfare/sounds/qbz95/qbz95_veryfar.ogg new file mode 100644 index 000000000..0146fb26b Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/qbz95/qbz95_veryfar.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/radar/radar_search_end.ogg b/src/main/resources/assets/superbwarfare/sounds/radar/radar_search_end.ogg new file mode 100644 index 000000000..9e4d0e9a9 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/radar/radar_search_end.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/radar/radar_search_idle.ogg b/src/main/resources/assets/superbwarfare/sounds/radar/radar_search_idle.ogg new file mode 100644 index 000000000..07ec3788a Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/radar/radar_search_idle.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/radar/radar_search_start.ogg b/src/main/resources/assets/superbwarfare/sounds/radar/radar_search_start.ogg new file mode 100644 index 000000000..274b64845 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/radar/radar_search_start.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/rpg/rpg_far.ogg b/src/main/resources/assets/superbwarfare/sounds/rpg/rpg_far.ogg new file mode 100644 index 000000000..a9e679a7c Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/rpg/rpg_far.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/rpg/rpg_fire_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/rpg/rpg_fire_1p.ogg new file mode 100644 index 000000000..4a3ee0f34 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/rpg/rpg_fire_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/rpg/rpg_fire_3p.ogg b/src/main/resources/assets/superbwarfare/sounds/rpg/rpg_fire_3p.ogg new file mode 100644 index 000000000..da8ccc366 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/rpg/rpg_fire_3p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/rpg/rpg_reload.ogg b/src/main/resources/assets/superbwarfare/sounds/rpg/rpg_reload.ogg new file mode 100644 index 000000000..c708c8d7a Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/rpg/rpg_reload.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/rpg/rpg_veryfar.ogg b/src/main/resources/assets/superbwarfare/sounds/rpg/rpg_veryfar.ogg new file mode 100644 index 000000000..17a2a135c Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/rpg/rpg_veryfar.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/rpk/rpk_far.ogg b/src/main/resources/assets/superbwarfare/sounds/rpk/rpk_far.ogg new file mode 100644 index 000000000..e32b259ed Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/rpk/rpk_far.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/rpk/rpk_fire_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/rpk/rpk_fire_1p.ogg new file mode 100644 index 000000000..24067283b Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/rpk/rpk_fire_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/rpk/rpk_fire_3p.ogg b/src/main/resources/assets/superbwarfare/sounds/rpk/rpk_fire_3p.ogg new file mode 100644 index 000000000..b2353ee71 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/rpk/rpk_fire_3p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/rpk/rpk_reload_empty.ogg b/src/main/resources/assets/superbwarfare/sounds/rpk/rpk_reload_empty.ogg new file mode 100644 index 000000000..3913272a2 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/rpk/rpk_reload_empty.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/rpk/rpk_reload_normal.ogg b/src/main/resources/assets/superbwarfare/sounds/rpk/rpk_reload_normal.ogg new file mode 100644 index 000000000..cc8e8a6ec Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/rpk/rpk_reload_normal.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/rpk/rpk_veryfar.ogg b/src/main/resources/assets/superbwarfare/sounds/rpk/rpk_veryfar.ogg new file mode 100644 index 000000000..b8a650d63 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/rpk/rpk_veryfar.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/secondary_cataclysm/secondary_cataclysm_charge_far.ogg b/src/main/resources/assets/superbwarfare/sounds/secondary_cataclysm/secondary_cataclysm_charge_far.ogg new file mode 100644 index 000000000..eaba3bd4f Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/secondary_cataclysm/secondary_cataclysm_charge_far.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/secondary_cataclysm/secondary_cataclysm_charge_fire_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/secondary_cataclysm/secondary_cataclysm_charge_fire_1p.ogg new file mode 100644 index 000000000..4f829c062 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/secondary_cataclysm/secondary_cataclysm_charge_fire_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/secondary_cataclysm/secondary_cataclysm_charge_fire_3p.ogg b/src/main/resources/assets/superbwarfare/sounds/secondary_cataclysm/secondary_cataclysm_charge_fire_3p.ogg new file mode 100644 index 000000000..d377e29c8 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/secondary_cataclysm/secondary_cataclysm_charge_fire_3p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/secondary_cataclysm/secondary_cataclysm_charge_veryfar.ogg b/src/main/resources/assets/superbwarfare/sounds/secondary_cataclysm/secondary_cataclysm_charge_veryfar.ogg new file mode 100644 index 000000000..77d0f5a9e Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/secondary_cataclysm/secondary_cataclysm_charge_veryfar.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/secondary_cataclysm/secondary_cataclysm_end.ogg b/src/main/resources/assets/superbwarfare/sounds/secondary_cataclysm/secondary_cataclysm_end.ogg new file mode 100644 index 000000000..4b16dda80 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/secondary_cataclysm/secondary_cataclysm_end.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/secondary_cataclysm/secondary_cataclysm_far.ogg b/src/main/resources/assets/superbwarfare/sounds/secondary_cataclysm/secondary_cataclysm_far.ogg new file mode 100644 index 000000000..31e086932 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/secondary_cataclysm/secondary_cataclysm_far.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/secondary_cataclysm/secondary_cataclysm_fire_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/secondary_cataclysm/secondary_cataclysm_fire_1p.ogg new file mode 100644 index 000000000..2fa57a8d4 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/secondary_cataclysm/secondary_cataclysm_fire_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/secondary_cataclysm/secondary_cataclysm_fire_3p.ogg b/src/main/resources/assets/superbwarfare/sounds/secondary_cataclysm/secondary_cataclysm_fire_3p.ogg new file mode 100644 index 000000000..064eca5e5 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/secondary_cataclysm/secondary_cataclysm_fire_3p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/secondary_cataclysm/secondary_cataclysm_loop.ogg b/src/main/resources/assets/superbwarfare/sounds/secondary_cataclysm/secondary_cataclysm_loop.ogg new file mode 100644 index 000000000..006fd74a6 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/secondary_cataclysm/secondary_cataclysm_loop.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/secondary_cataclysm/secondary_cataclysm_start.ogg b/src/main/resources/assets/superbwarfare/sounds/secondary_cataclysm/secondary_cataclysm_start.ogg new file mode 100644 index 000000000..6b9b41a6d Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/secondary_cataclysm/secondary_cataclysm_start.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/secondary_cataclysm/secondary_cataclysm_veryfar.ogg b/src/main/resources/assets/superbwarfare/sounds/secondary_cataclysm/secondary_cataclysm_veryfar.ogg new file mode 100644 index 000000000..46a834942 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/secondary_cataclysm/secondary_cataclysm_veryfar.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/sentinel/sentinel_bolt.ogg b/src/main/resources/assets/superbwarfare/sounds/sentinel/sentinel_bolt.ogg new file mode 100644 index 000000000..aadefc70b Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/sentinel/sentinel_bolt.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/sentinel/sentinel_charge.ogg b/src/main/resources/assets/superbwarfare/sounds/sentinel/sentinel_charge.ogg new file mode 100644 index 000000000..b129fbefe Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/sentinel/sentinel_charge.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/sentinel/sentinel_charge_far.ogg b/src/main/resources/assets/superbwarfare/sounds/sentinel/sentinel_charge_far.ogg new file mode 100644 index 000000000..5c0881a85 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/sentinel/sentinel_charge_far.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/sentinel/sentinel_charge_fire_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/sentinel/sentinel_charge_fire_1p.ogg new file mode 100644 index 000000000..3a5f11ad0 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/sentinel/sentinel_charge_fire_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/sentinel/sentinel_charge_fire_3p.ogg b/src/main/resources/assets/superbwarfare/sounds/sentinel/sentinel_charge_fire_3p.ogg new file mode 100644 index 000000000..08fd3c1aa Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/sentinel/sentinel_charge_fire_3p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/sentinel/sentinel_charge_veryfar.ogg b/src/main/resources/assets/superbwarfare/sounds/sentinel/sentinel_charge_veryfar.ogg new file mode 100644 index 000000000..c91ff37fb Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/sentinel/sentinel_charge_veryfar.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/sentinel/sentinel_far.ogg b/src/main/resources/assets/superbwarfare/sounds/sentinel/sentinel_far.ogg new file mode 100644 index 000000000..418e7cf7f Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/sentinel/sentinel_far.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/sentinel/sentinel_fire_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/sentinel/sentinel_fire_1p.ogg new file mode 100644 index 000000000..175415eee Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/sentinel/sentinel_fire_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/sentinel/sentinel_fire_3p.ogg b/src/main/resources/assets/superbwarfare/sounds/sentinel/sentinel_fire_3p.ogg new file mode 100644 index 000000000..99c8cc060 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/sentinel/sentinel_fire_3p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/sentinel/sentinel_reload_empty.ogg b/src/main/resources/assets/superbwarfare/sounds/sentinel/sentinel_reload_empty.ogg new file mode 100644 index 000000000..3a605cf8f Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/sentinel/sentinel_reload_empty.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/sentinel/sentinel_reload_normal.ogg b/src/main/resources/assets/superbwarfare/sounds/sentinel/sentinel_reload_normal.ogg new file mode 100644 index 000000000..fbf2aafec Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/sentinel/sentinel_reload_normal.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/sentinel/sentinel_veryfar.ogg b/src/main/resources/assets/superbwarfare/sounds/sentinel/sentinel_veryfar.ogg new file mode 100644 index 000000000..1afff3df0 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/sentinel/sentinel_veryfar.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/shells/shell_casing_50cal_1.ogg b/src/main/resources/assets/superbwarfare/sounds/shells/shell_casing_50cal_1.ogg new file mode 100644 index 000000000..6d2d8c46e Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/shells/shell_casing_50cal_1.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/shells/shell_casing_50cal_2.ogg b/src/main/resources/assets/superbwarfare/sounds/shells/shell_casing_50cal_2.ogg new file mode 100644 index 000000000..f3c72583a Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/shells/shell_casing_50cal_2.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/shells/shell_casing_50cal_3.ogg b/src/main/resources/assets/superbwarfare/sounds/shells/shell_casing_50cal_3.ogg new file mode 100644 index 000000000..1dc35d735 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/shells/shell_casing_50cal_3.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/shells/shell_casing_50cal_4.ogg b/src/main/resources/assets/superbwarfare/sounds/shells/shell_casing_50cal_4.ogg new file mode 100644 index 000000000..65eb72b54 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/shells/shell_casing_50cal_4.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/shells/shell_casing_50cal_5.ogg b/src/main/resources/assets/superbwarfare/sounds/shells/shell_casing_50cal_5.ogg new file mode 100644 index 000000000..c19f3e86c Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/shells/shell_casing_50cal_5.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/shells/shell_casing_normal_1.ogg b/src/main/resources/assets/superbwarfare/sounds/shells/shell_casing_normal_1.ogg new file mode 100644 index 000000000..d02473a27 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/shells/shell_casing_normal_1.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/shells/shell_casing_normal_2.ogg b/src/main/resources/assets/superbwarfare/sounds/shells/shell_casing_normal_2.ogg new file mode 100644 index 000000000..3d14f90ab Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/shells/shell_casing_normal_2.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/shells/shell_casing_normal_3.ogg b/src/main/resources/assets/superbwarfare/sounds/shells/shell_casing_normal_3.ogg new file mode 100644 index 000000000..e5252d6d1 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/shells/shell_casing_normal_3.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/shells/shell_casing_normal_4.ogg b/src/main/resources/assets/superbwarfare/sounds/shells/shell_casing_normal_4.ogg new file mode 100644 index 000000000..1ad03ebae Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/shells/shell_casing_normal_4.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/shells/shell_casing_normal_5.ogg b/src/main/resources/assets/superbwarfare/sounds/shells/shell_casing_normal_5.ogg new file mode 100644 index 000000000..243dfcbc7 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/shells/shell_casing_normal_5.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/shells/shell_casing_shotgun_1.ogg b/src/main/resources/assets/superbwarfare/sounds/shells/shell_casing_shotgun_1.ogg new file mode 100644 index 000000000..a29b56710 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/shells/shell_casing_shotgun_1.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/shells/shell_casing_shotgun_2.ogg b/src/main/resources/assets/superbwarfare/sounds/shells/shell_casing_shotgun_2.ogg new file mode 100644 index 000000000..4e53a962b Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/shells/shell_casing_shotgun_2.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/shells/shell_casing_shotgun_3.ogg b/src/main/resources/assets/superbwarfare/sounds/shells/shell_casing_shotgun_3.ogg new file mode 100644 index 000000000..3fa4f6a4d Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/shells/shell_casing_shotgun_3.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/shells/shell_casing_shotgun_4.ogg b/src/main/resources/assets/superbwarfare/sounds/shells/shell_casing_shotgun_4.ogg new file mode 100644 index 000000000..52a412526 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/shells/shell_casing_shotgun_4.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/shells/shell_casing_shotgun_5.ogg b/src/main/resources/assets/superbwarfare/sounds/shells/shell_casing_shotgun_5.ogg new file mode 100644 index 000000000..3bb9c1f0d Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/shells/shell_casing_shotgun_5.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/shock.ogg b/src/main/resources/assets/superbwarfare/sounds/shock.ogg new file mode 100644 index 000000000..4f31a9b07 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/shock.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/sks/sks_far.ogg b/src/main/resources/assets/superbwarfare/sounds/sks/sks_far.ogg new file mode 100644 index 000000000..261b13473 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/sks/sks_far.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/sks/sks_fire_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/sks/sks_fire_1p.ogg new file mode 100644 index 000000000..3d1b76a16 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/sks/sks_fire_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/sks/sks_fire_3p.ogg b/src/main/resources/assets/superbwarfare/sounds/sks/sks_fire_3p.ogg new file mode 100644 index 000000000..ba7992e73 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/sks/sks_fire_3p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/sks/sks_reload_empty.ogg b/src/main/resources/assets/superbwarfare/sounds/sks/sks_reload_empty.ogg new file mode 100644 index 000000000..6d94d2b48 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/sks/sks_reload_empty.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/sks/sks_reload_normal.ogg b/src/main/resources/assets/superbwarfare/sounds/sks/sks_reload_normal.ogg new file mode 100644 index 000000000..2f6848430 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/sks/sks_reload_normal.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/sks/sks_veryfar.ogg b/src/main/resources/assets/superbwarfare/sounds/sks/sks_veryfar.ogg new file mode 100644 index 000000000..195457b38 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/sks/sks_veryfar.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/speedboat/engine.ogg b/src/main/resources/assets/superbwarfare/sounds/speedboat/engine.ogg new file mode 100644 index 000000000..b20383a23 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/speedboat/engine.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/step1.ogg b/src/main/resources/assets/superbwarfare/sounds/step1.ogg new file mode 100644 index 000000000..400acb700 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/step1.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/step2.ogg b/src/main/resources/assets/superbwarfare/sounds/step2.ogg new file mode 100644 index 000000000..ad3eeee9f Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/step2.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/step3.ogg b/src/main/resources/assets/superbwarfare/sounds/step3.ogg new file mode 100644 index 000000000..30404732b Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/step3.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/step4.ogg b/src/main/resources/assets/superbwarfare/sounds/step4.ogg new file mode 100644 index 000000000..dae510bb1 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/step4.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/svd/svd_far.ogg b/src/main/resources/assets/superbwarfare/sounds/svd/svd_far.ogg new file mode 100644 index 000000000..b7f719094 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/svd/svd_far.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/svd/svd_far_s.ogg b/src/main/resources/assets/superbwarfare/sounds/svd/svd_far_s.ogg new file mode 100644 index 000000000..4139f7ff0 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/svd/svd_far_s.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/svd/svd_fire_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/svd/svd_fire_1p.ogg new file mode 100644 index 000000000..7721a59d6 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/svd/svd_fire_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/svd/svd_fire_1p_s.ogg b/src/main/resources/assets/superbwarfare/sounds/svd/svd_fire_1p_s.ogg new file mode 100644 index 000000000..6f2522c4c Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/svd/svd_fire_1p_s.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/svd/svd_fire_3p.ogg b/src/main/resources/assets/superbwarfare/sounds/svd/svd_fire_3p.ogg new file mode 100644 index 000000000..61ff9b937 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/svd/svd_fire_3p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/svd/svd_fire_3p_s.ogg b/src/main/resources/assets/superbwarfare/sounds/svd/svd_fire_3p_s.ogg new file mode 100644 index 000000000..7da6f3f5c Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/svd/svd_fire_3p_s.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/svd/svd_reload_empty.ogg b/src/main/resources/assets/superbwarfare/sounds/svd/svd_reload_empty.ogg new file mode 100644 index 000000000..8aa979006 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/svd/svd_reload_empty.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/svd/svd_reload_normal.ogg b/src/main/resources/assets/superbwarfare/sounds/svd/svd_reload_normal.ogg new file mode 100644 index 000000000..dcad37338 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/svd/svd_reload_normal.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/svd/svd_veryfar.ogg b/src/main/resources/assets/superbwarfare/sounds/svd/svd_veryfar.ogg new file mode 100644 index 000000000..fed2ec794 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/svd/svd_veryfar.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/targetdown.ogg b/src/main/resources/assets/superbwarfare/sounds/targetdown.ogg new file mode 100644 index 000000000..cd1bcad2a Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/targetdown.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/taser/taser_fire_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/taser/taser_fire_1p.ogg new file mode 100644 index 000000000..f5f5faa7d Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/taser/taser_fire_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/taser/taser_fire_3p.ogg b/src/main/resources/assets/superbwarfare/sounds/taser/taser_fire_3p.ogg new file mode 100644 index 000000000..9b5937aaa Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/taser/taser_fire_3p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/taser/taser_reload.ogg b/src/main/resources/assets/superbwarfare/sounds/taser/taser_reload.ogg new file mode 100644 index 000000000..4536a3e77 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/taser/taser_reload.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/trachelium/trachelium_far.ogg b/src/main/resources/assets/superbwarfare/sounds/trachelium/trachelium_far.ogg new file mode 100644 index 000000000..8f30daaed Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/trachelium/trachelium_far.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/trachelium/trachelium_far_s.ogg b/src/main/resources/assets/superbwarfare/sounds/trachelium/trachelium_far_s.ogg new file mode 100644 index 000000000..e5965d186 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/trachelium/trachelium_far_s.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/trachelium/trachelium_fire_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/trachelium/trachelium_fire_1p.ogg new file mode 100644 index 000000000..637c4d88c Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/trachelium/trachelium_fire_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/trachelium/trachelium_fire_1p_s.ogg b/src/main/resources/assets/superbwarfare/sounds/trachelium/trachelium_fire_1p_s.ogg new file mode 100644 index 000000000..5459a27c0 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/trachelium/trachelium_fire_1p_s.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/trachelium/trachelium_fire_3p.ogg b/src/main/resources/assets/superbwarfare/sounds/trachelium/trachelium_fire_3p.ogg new file mode 100644 index 000000000..14ec3361c Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/trachelium/trachelium_fire_3p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/trachelium/trachelium_fire_3p_s.ogg b/src/main/resources/assets/superbwarfare/sounds/trachelium/trachelium_fire_3p_s.ogg new file mode 100644 index 000000000..551b825e2 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/trachelium/trachelium_fire_3p_s.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/trachelium/trachelium_reload.ogg b/src/main/resources/assets/superbwarfare/sounds/trachelium/trachelium_reload.ogg new file mode 100644 index 000000000..e39d61890 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/trachelium/trachelium_reload.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/trachelium/trachelium_shift.ogg b/src/main/resources/assets/superbwarfare/sounds/trachelium/trachelium_shift.ogg new file mode 100644 index 000000000..88b06313c Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/trachelium/trachelium_shift.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/trachelium/trachelium_veryfar.ogg b/src/main/resources/assets/superbwarfare/sounds/trachelium/trachelium_veryfar.ogg new file mode 100644 index 000000000..bfb1c6ba3 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/trachelium/trachelium_veryfar.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/trigger_click.ogg b/src/main/resources/assets/superbwarfare/sounds/trigger_click.ogg new file mode 100644 index 000000000..341666a86 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/trigger_click.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/turret_turn.ogg b/src/main/resources/assets/superbwarfare/sounds/turret_turn.ogg new file mode 100644 index 000000000..5ad23fa94 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/turret_turn.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/vector/vector_far.ogg b/src/main/resources/assets/superbwarfare/sounds/vector/vector_far.ogg new file mode 100644 index 000000000..d9c58f4c2 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/vector/vector_far.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/vector/vector_far_s.ogg b/src/main/resources/assets/superbwarfare/sounds/vector/vector_far_s.ogg new file mode 100644 index 000000000..e8a402a93 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/vector/vector_far_s.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/vector/vector_fire_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/vector/vector_fire_1p.ogg new file mode 100644 index 000000000..2e3d76aa0 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/vector/vector_fire_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/vector/vector_fire_1p_s.ogg b/src/main/resources/assets/superbwarfare/sounds/vector/vector_fire_1p_s.ogg new file mode 100644 index 000000000..fce3e0a7b Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/vector/vector_fire_1p_s.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/vector/vector_fire_3p.ogg b/src/main/resources/assets/superbwarfare/sounds/vector/vector_fire_3p.ogg new file mode 100644 index 000000000..e876a569b Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/vector/vector_fire_3p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/vector/vector_fire_3p_s.ogg b/src/main/resources/assets/superbwarfare/sounds/vector/vector_fire_3p_s.ogg new file mode 100644 index 000000000..c886bfa99 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/vector/vector_fire_3p_s.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/vector/vector_reload_empty.ogg b/src/main/resources/assets/superbwarfare/sounds/vector/vector_reload_empty.ogg new file mode 100644 index 000000000..a7bdb9535 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/vector/vector_reload_empty.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/vector/vector_reload_normal.ogg b/src/main/resources/assets/superbwarfare/sounds/vector/vector_reload_normal.ogg new file mode 100644 index 000000000..f31e74c50 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/vector/vector_reload_normal.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/vector/vector_veryfar.ogg b/src/main/resources/assets/superbwarfare/sounds/vector/vector_veryfar.ogg new file mode 100644 index 000000000..94c7b6908 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/vector/vector_veryfar.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/vehicle_strike.ogg b/src/main/resources/assets/superbwarfare/sounds/vehicle_strike.ogg new file mode 100644 index 000000000..1f9d61e33 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/vehicle_strike.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/warning/locked.ogg b/src/main/resources/assets/superbwarfare/sounds/warning/locked.ogg new file mode 100644 index 000000000..59ea2d7b9 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/warning/locked.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/warning/locking.ogg b/src/main/resources/assets/superbwarfare/sounds/warning/locking.ogg new file mode 100644 index 000000000..10b47350f Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/warning/locking.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/warning/low_health.ogg b/src/main/resources/assets/superbwarfare/sounds/warning/low_health.ogg new file mode 100644 index 000000000..c06c5182f Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/warning/low_health.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/warning/missile.ogg b/src/main/resources/assets/superbwarfare/sounds/warning/missile.ogg new file mode 100644 index 000000000..832563ddd Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/warning/missile.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/warning/no_health.ogg b/src/main/resources/assets/superbwarfare/sounds/warning/no_health.ogg new file mode 100644 index 000000000..b33928a7d Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/warning/no_health.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/wheel_chair/wheel_chair_engine.ogg b/src/main/resources/assets/superbwarfare/sounds/wheel_chair/wheel_chair_engine.ogg new file mode 100644 index 000000000..367ea6b5f Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/wheel_chair/wheel_chair_engine.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/wheel_chair/wheel_chair_jump.ogg b/src/main/resources/assets/superbwarfare/sounds/wheel_chair/wheel_chair_jump.ogg new file mode 100644 index 000000000..9d4a9ae86 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/wheel_chair/wheel_chair_jump.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/wheel_step.ogg b/src/main/resources/assets/superbwarfare/sounds/wheel_step.ogg new file mode 100644 index 000000000..c019bf31f Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/wheel_step.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/yarimasune.ogg b/src/main/resources/assets/superbwarfare/sounds/yarimasune.ogg new file mode 100644 index 000000000..80a8d01c4 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/yarimasune.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/yx100/yx100_far.ogg b/src/main/resources/assets/superbwarfare/sounds/yx100/yx100_far.ogg new file mode 100644 index 000000000..2a37c6712 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/yx100/yx100_far.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/yx100/yx100_fire_1p.ogg b/src/main/resources/assets/superbwarfare/sounds/yx100/yx100_fire_1p.ogg new file mode 100644 index 000000000..4f1accec4 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/yx100/yx100_fire_1p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/yx100/yx100_fire_3p.ogg b/src/main/resources/assets/superbwarfare/sounds/yx100/yx100_fire_3p.ogg new file mode 100644 index 000000000..3765b8f35 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/yx100/yx100_fire_3p.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/yx100/yx100_reload.ogg b/src/main/resources/assets/superbwarfare/sounds/yx100/yx100_reload.ogg new file mode 100644 index 000000000..004e05713 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/yx100/yx100_reload.ogg differ diff --git a/src/main/resources/assets/superbwarfare/sounds/yx100/yx100_veryfar.ogg b/src/main/resources/assets/superbwarfare/sounds/yx100/yx100_veryfar.ogg new file mode 100644 index 000000000..256e7a4c3 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/sounds/yx100/yx100_veryfar.ogg differ diff --git a/src/main/resources/assets/superbwarfare/textures/armor/ge_helmet_m_35.png b/src/main/resources/assets/superbwarfare/textures/armor/ge_helmet_m_35.png new file mode 100644 index 000000000..319200783 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/armor/ge_helmet_m_35.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/armor/ru_chest_6b43.png b/src/main/resources/assets/superbwarfare/textures/armor/ru_chest_6b43.png new file mode 100644 index 000000000..83affe159 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/armor/ru_chest_6b43.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/armor/ru_helmet_6b47.png b/src/main/resources/assets/superbwarfare/textures/armor/ru_helmet_6b47.png new file mode 100644 index 000000000..5b7cf2325 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/armor/ru_helmet_6b47.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/armor/us_chest_iotv.png b/src/main/resources/assets/superbwarfare/textures/armor/us_chest_iotv.png new file mode 100644 index 000000000..222eab623 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/armor/us_chest_iotv.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/armor/us_helmet_pastg.png b/src/main/resources/assets/superbwarfare/textures/armor/us_helmet_pastg.png new file mode 100644 index 000000000..88e89ba1a Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/armor/us_helmet_pastg.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/block/barbed_wire.png b/src/main/resources/assets/superbwarfare/textures/block/barbed_wire.png new file mode 100644 index 000000000..599f9a3f1 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/block/barbed_wire.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/block/c4.png b/src/main/resources/assets/superbwarfare/textures/block/c4.png new file mode 100644 index 000000000..5739bf11e Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/block/c4.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/block/cemented_carbide_block.png b/src/main/resources/assets/superbwarfare/textures/block/cemented_carbide_block.png new file mode 100644 index 000000000..308f69c8c Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/block/cemented_carbide_block.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/block/charging_station.png b/src/main/resources/assets/superbwarfare/textures/block/charging_station.png new file mode 100644 index 000000000..5b321cba3 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/block/charging_station.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/block/claymore.png b/src/main/resources/assets/superbwarfare/textures/block/claymore.png new file mode 100644 index 000000000..d74a16c9b Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/block/claymore.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/block/container.png b/src/main/resources/assets/superbwarfare/textures/block/container.png new file mode 100644 index 000000000..96af0fe6a Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/block/container.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/block/creative_charging_station.png b/src/main/resources/assets/superbwarfare/textures/block/creative_charging_station.png new file mode 100644 index 000000000..952ddc50a Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/block/creative_charging_station.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/block/creativeammobox.png b/src/main/resources/assets/superbwarfare/textures/block/creativeammobox.png new file mode 100644 index 000000000..6b2ad2e1d Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/block/creativeammobox.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/block/deepslate_galena_ore.png b/src/main/resources/assets/superbwarfare/textures/block/deepslate_galena_ore.png new file mode 100644 index 000000000..08c73b37b Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/block/deepslate_galena_ore.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/block/deepslate_scheelite_ore.png b/src/main/resources/assets/superbwarfare/textures/block/deepslate_scheelite_ore.png new file mode 100644 index 000000000..8af9f80f1 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/block/deepslate_scheelite_ore.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/block/deepslate_silver_ore.png b/src/main/resources/assets/superbwarfare/textures/block/deepslate_silver_ore.png new file mode 100644 index 000000000..eb41193df Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/block/deepslate_silver_ore.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/block/dragon_teeth.png b/src/main/resources/assets/superbwarfare/textures/block/dragon_teeth.png new file mode 100644 index 000000000..ce23feab1 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/block/dragon_teeth.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/block/fumo_25.png b/src/main/resources/assets/superbwarfare/textures/block/fumo_25.png new file mode 100644 index 000000000..57bdc9855 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/block/fumo_25.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/block/galena_ore.png b/src/main/resources/assets/superbwarfare/textures/block/galena_ore.png new file mode 100644 index 000000000..167339471 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/block/galena_ore.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/block/gungranade.png b/src/main/resources/assets/superbwarfare/textures/block/gungranade.png new file mode 100644 index 000000000..24a03d50f Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/block/gungranade.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/block/hammer.png b/src/main/resources/assets/superbwarfare/textures/block/hammer.png new file mode 100644 index 000000000..e274f6e30 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/block/hammer.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/block/handgunammobox.png b/src/main/resources/assets/superbwarfare/textures/block/handgunammobox.png new file mode 100644 index 000000000..4f7070346 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/block/handgunammobox.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/block/jump_pad.png b/src/main/resources/assets/superbwarfare/textures/block/jump_pad.png new file mode 100644 index 000000000..d9570bf00 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/block/jump_pad.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/block/lead_block.png b/src/main/resources/assets/superbwarfare/textures/block/lead_block.png new file mode 100644 index 000000000..1ab6ab4da Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/block/lead_block.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/block/reforging_table.png b/src/main/resources/assets/superbwarfare/textures/block/reforging_table.png new file mode 100644 index 000000000..c62a12219 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/block/reforging_table.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/block/rifleammobox.png b/src/main/resources/assets/superbwarfare/textures/block/rifleammobox.png new file mode 100644 index 000000000..e345b8500 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/block/rifleammobox.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/block/sand.png b/src/main/resources/assets/superbwarfare/textures/block/sand.png new file mode 100644 index 000000000..1c8cd8ce4 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/block/sand.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/block/sandbag.png b/src/main/resources/assets/superbwarfare/textures/block/sandbag.png new file mode 100644 index 000000000..aaeb1783f Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/block/sandbag.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/block/sandbagdi.png b/src/main/resources/assets/superbwarfare/textures/block/sandbagdi.png new file mode 100644 index 000000000..5b38322b1 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/block/sandbagdi.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/block/scheelite_ore.png b/src/main/resources/assets/superbwarfare/textures/block/scheelite_ore.png new file mode 100644 index 000000000..f2ad0d36f Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/block/scheelite_ore.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/block/shotgunammobox.png b/src/main/resources/assets/superbwarfare/textures/block/shotgunammobox.png new file mode 100644 index 000000000..0abd53921 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/block/shotgunammobox.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/block/silver_block.png b/src/main/resources/assets/superbwarfare/textures/block/silver_block.png new file mode 100644 index 000000000..d2e61423e Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/block/silver_block.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/block/silver_ore.png b/src/main/resources/assets/superbwarfare/textures/block/silver_ore.png new file mode 100644 index 000000000..9ae685193 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/block/silver_ore.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/block/sniperammobox.png b/src/main/resources/assets/superbwarfare/textures/block/sniperammobox.png new file mode 100644 index 000000000..fa6d8ba28 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/block/sniperammobox.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/block/steel_block.png b/src/main/resources/assets/superbwarfare/textures/block/steel_block.png new file mode 100644 index 000000000..661607a72 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/block/steel_block.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/block/tasergun.png b/src/main/resources/assets/superbwarfare/textures/block/tasergun.png new file mode 100644 index 000000000..0c5b272fb Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/block/tasergun.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/block/tungsten_block.png b/src/main/resources/assets/superbwarfare/textures/block/tungsten_block.png new file mode 100644 index 000000000..bc2f4de92 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/block/tungsten_block.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/ah_6.png b/src/main/resources/assets/superbwarfare/textures/entity/ah_6.png new file mode 100644 index 000000000..63789c739 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/ah_6.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/annihilator.png b/src/main/resources/assets/superbwarfare/textures/entity/annihilator.png new file mode 100644 index 000000000..8af711421 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/annihilator.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/annihilator_e.png b/src/main/resources/assets/superbwarfare/textures/entity/annihilator_e.png new file mode 100644 index 000000000..4c038f6ff Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/annihilator_e.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/annihilator_glow_e.png b/src/main/resources/assets/superbwarfare/textures/entity/annihilator_glow_e.png new file mode 100644 index 000000000..13c74739e Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/annihilator_glow_e.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/annihilator_led.png b/src/main/resources/assets/superbwarfare/textures/entity/annihilator_led.png new file mode 100644 index 000000000..4bafb59f8 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/annihilator_led.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/annihilator_power.png b/src/main/resources/assets/superbwarfare/textures/entity/annihilator_power.png new file mode 100644 index 000000000..74aa13f3e Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/annihilator_power.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/bmp2.png b/src/main/resources/assets/superbwarfare/textures/entity/bmp2.png new file mode 100644 index 000000000..376bac627 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/bmp2.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/bocek_arrow.png b/src/main/resources/assets/superbwarfare/textures/entity/bocek_arrow.png new file mode 100644 index 000000000..5e1075689 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/bocek_arrow.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/bullet.png b/src/main/resources/assets/superbwarfare/textures/entity/bullet.png new file mode 100644 index 000000000..462b6083e Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/bullet.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/bullet_e.png b/src/main/resources/assets/superbwarfare/textures/entity/bullet_e.png new file mode 100644 index 000000000..97ecc6f24 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/bullet_e.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/cannon_shell.png b/src/main/resources/assets/superbwarfare/textures/entity/cannon_shell.png new file mode 100644 index 000000000..8741d13a5 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/cannon_shell.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/cannon_shell_e.png b/src/main/resources/assets/superbwarfare/textures/entity/cannon_shell_e.png new file mode 100644 index 000000000..589f0de4b Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/cannon_shell_e.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/claymore.png b/src/main/resources/assets/superbwarfare/textures/entity/claymore.png new file mode 100644 index 000000000..d74a16c9b Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/claymore.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/claymore_alter.png b/src/main/resources/assets/superbwarfare/textures/entity/claymore_alter.png new file mode 100644 index 000000000..2dd09796b Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/claymore_alter.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/drone.png b/src/main/resources/assets/superbwarfare/textures/entity/drone.png new file mode 100644 index 000000000..f0481b7cd Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/drone.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/empty.png b/src/main/resources/assets/superbwarfare/textures/entity/empty.png new file mode 100644 index 000000000..3eebd0246 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/empty.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/fumo_25.png b/src/main/resources/assets/superbwarfare/textures/entity/fumo_25.png new file mode 100644 index 000000000..6a96f719e Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/fumo_25.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/grenade.png b/src/main/resources/assets/superbwarfare/textures/entity/grenade.png new file mode 100644 index 000000000..106a94e15 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/grenade.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/hand_grenade.png b/src/main/resources/assets/superbwarfare/textures/entity/hand_grenade.png new file mode 100644 index 000000000..d2e5f4593 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/hand_grenade.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/heli_rocket.png b/src/main/resources/assets/superbwarfare/textures/entity/heli_rocket.png new file mode 100644 index 000000000..1b79d6f78 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/heli_rocket.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/javelin_missile.png b/src/main/resources/assets/superbwarfare/textures/entity/javelin_missile.png new file mode 100644 index 000000000..d7b885b87 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/javelin_missile.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/laser_tower.png b/src/main/resources/assets/superbwarfare/textures/entity/laser_tower.png new file mode 100644 index 000000000..b0a967292 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/laser_tower.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/laser_tower_e.png b/src/main/resources/assets/superbwarfare/textures/entity/laser_tower_e.png new file mode 100644 index 000000000..c1f072e84 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/laser_tower_e.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/laser_tower_laser.png b/src/main/resources/assets/superbwarfare/textures/entity/laser_tower_laser.png new file mode 100644 index 000000000..51c913c6d Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/laser_tower_laser.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/lav150.png b/src/main/resources/assets/superbwarfare/textures/entity/lav150.png new file mode 100644 index 000000000..1028cd15b Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/lav150.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/mk42.png b/src/main/resources/assets/superbwarfare/textures/entity/mk42.png new file mode 100644 index 000000000..a31434cee Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/mk42.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/mle1934.png b/src/main/resources/assets/superbwarfare/textures/entity/mle1934.png new file mode 100644 index 000000000..961db7714 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/mle1934.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/mortar.png b/src/main/resources/assets/superbwarfare/textures/entity/mortar.png new file mode 100644 index 000000000..2be7f7094 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/mortar.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/mortar_e.png b/src/main/resources/assets/superbwarfare/textures/entity/mortar_e.png new file mode 100644 index 000000000..261737a1b Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/mortar_e.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/mortar_shell.png b/src/main/resources/assets/superbwarfare/textures/entity/mortar_shell.png new file mode 100644 index 000000000..38a5ec4db Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/mortar_shell.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/pad.png b/src/main/resources/assets/superbwarfare/textures/entity/pad.png new file mode 100644 index 000000000..d9570bf00 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/pad.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/projectile_entity.png b/src/main/resources/assets/superbwarfare/textures/entity/projectile_entity.png new file mode 100644 index 000000000..1c904ba40 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/projectile_entity.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/projectile_entity_inside.png b/src/main/resources/assets/superbwarfare/textures/entity/projectile_entity_inside.png new file mode 100644 index 000000000..a9658b7fd Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/projectile_entity_inside.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/rgo_grenade.png b/src/main/resources/assets/superbwarfare/textures/entity/rgo_grenade.png new file mode 100644 index 000000000..c8552ae6d Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/rgo_grenade.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/rocket.png b/src/main/resources/assets/superbwarfare/textures/entity/rocket.png new file mode 100644 index 000000000..6c9502d16 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/rocket.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/rpg_rocket.png b/src/main/resources/assets/superbwarfare/textures/entity/rpg_rocket.png new file mode 100644 index 000000000..8b454f695 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/rpg_rocket.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/rpg_rocket_e.png b/src/main/resources/assets/superbwarfare/textures/entity/rpg_rocket_e.png new file mode 100644 index 000000000..2bac37573 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/rpg_rocket_e.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/senpai.png b/src/main/resources/assets/superbwarfare/textures/entity/senpai.png new file mode 100644 index 000000000..6c1353a00 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/senpai.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/sherman_e.png b/src/main/resources/assets/superbwarfare/textures/entity/sherman_e.png new file mode 100644 index 000000000..92125177d Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/sherman_e.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/speedboat.png b/src/main/resources/assets/superbwarfare/textures/entity/speedboat.png new file mode 100644 index 000000000..1c09fca80 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/speedboat.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/speedboat_e.png b/src/main/resources/assets/superbwarfare/textures/entity/speedboat_e.png new file mode 100644 index 000000000..ae0281cd5 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/speedboat_e.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/speedboat_heat.png b/src/main/resources/assets/superbwarfare/textures/entity/speedboat_heat.png new file mode 100644 index 000000000..c37506442 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/speedboat_heat.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/speedboat_power.png b/src/main/resources/assets/superbwarfare/textures/entity/speedboat_power.png new file mode 100644 index 000000000..8747624de Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/speedboat_power.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/target.png b/src/main/resources/assets/superbwarfare/textures/entity/target.png new file mode 100644 index 000000000..b400473a2 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/target.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/target_e.png b/src/main/resources/assets/superbwarfare/textures/entity/target_e.png new file mode 100644 index 000000000..69296f584 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/target_e.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/taser_rod.png b/src/main/resources/assets/superbwarfare/textures/entity/taser_rod.png new file mode 100644 index 000000000..b426ce826 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/taser_rod.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/temp_laser.png b/src/main/resources/assets/superbwarfare/textures/entity/temp_laser.png new file mode 100644 index 000000000..40353a7df Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/temp_laser.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/tom_6.png b/src/main/resources/assets/superbwarfare/textures/entity/tom_6.png new file mode 100644 index 000000000..bc225322e Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/tom_6.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/villager/profession/armory.png b/src/main/resources/assets/superbwarfare/textures/entity/villager/profession/armory.png new file mode 100644 index 000000000..2c10f598a Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/villager/profession/armory.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/wheel_chair.png b/src/main/resources/assets/superbwarfare/textures/entity/wheel_chair.png new file mode 100644 index 000000000..08841575a Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/wheel_chair.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/yx_100.png b/src/main/resources/assets/superbwarfare/textures/entity/yx_100.png new file mode 100644 index 000000000..44d2248c0 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/yx_100.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/yx_100_glow.png b/src/main/resources/assets/superbwarfare/textures/entity/yx_100_glow.png new file mode 100644 index 000000000..03364f5e7 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/yx_100_glow.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/entity/zombie_villager/profession/armory.png b/src/main/resources/assets/superbwarfare/textures/entity/zombie_villager/profession/armory.png new file mode 100644 index 000000000..4a5545a46 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/entity/zombie_villager/profession/armory.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/gui/charging_station.png b/src/main/resources/assets/superbwarfare/textures/gui/charging_station.png new file mode 100644 index 000000000..38851cb65 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/gui/charging_station.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/gui/radar.png b/src/main/resources/assets/superbwarfare/textures/gui/radar.png new file mode 100644 index 000000000..103712a66 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/gui/radar.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/gui/radar_scan.png b/src/main/resources/assets/superbwarfare/textures/gui/radar_scan.png new file mode 100644 index 000000000..a131b848e Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/gui/radar_scan.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/gui/reforging_table.png b/src/main/resources/assets/superbwarfare/textures/gui/reforging_table.png new file mode 100644 index 000000000..fd7827eb0 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/gui/reforging_table.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/gui/vehicle.png b/src/main/resources/assets/superbwarfare/textures/gui/vehicle.png new file mode 100644 index 000000000..e30720f30 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/gui/vehicle.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/gun_icon/aa_12_icon.png b/src/main/resources/assets/superbwarfare/textures/gun_icon/aa_12_icon.png new file mode 100644 index 000000000..0d89c50ee Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/gun_icon/aa_12_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/gun_icon/ak12_icon.png b/src/main/resources/assets/superbwarfare/textures/gun_icon/ak12_icon.png new file mode 100644 index 000000000..f38f41f5e Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/gun_icon/ak12_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/gun_icon/ak_47_icon.png b/src/main/resources/assets/superbwarfare/textures/gun_icon/ak_47_icon.png new file mode 100644 index 000000000..084fe2b31 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/gun_icon/ak_47_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/gun_icon/bocek_icon.png b/src/main/resources/assets/superbwarfare/textures/gun_icon/bocek_icon.png new file mode 100644 index 000000000..efbcf2ddb Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/gun_icon/bocek_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/gun_icon/compat/world_peace_staff.png b/src/main/resources/assets/superbwarfare/textures/gun_icon/compat/world_peace_staff.png new file mode 100644 index 000000000..488bd1883 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/gun_icon/compat/world_peace_staff.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/gun_icon/default_icon.png b/src/main/resources/assets/superbwarfare/textures/gun_icon/default_icon.png new file mode 100644 index 000000000..7078e6e3e Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/gun_icon/default_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/gun_icon/devotion_icon.png b/src/main/resources/assets/superbwarfare/textures/gun_icon/devotion_icon.png new file mode 100644 index 000000000..4ae6d3539 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/gun_icon/devotion_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/gun_icon/fire_mode/auto.png b/src/main/resources/assets/superbwarfare/textures/gun_icon/fire_mode/auto.png new file mode 100644 index 000000000..4a8e782fb Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/gun_icon/fire_mode/auto.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/gun_icon/fire_mode/burst.png b/src/main/resources/assets/superbwarfare/textures/gun_icon/fire_mode/burst.png new file mode 100644 index 000000000..455f5373b Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/gun_icon/fire_mode/burst.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/gun_icon/fire_mode/button.png b/src/main/resources/assets/superbwarfare/textures/gun_icon/fire_mode/button.png new file mode 100644 index 000000000..4ed031fc7 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/gun_icon/fire_mode/button.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/gun_icon/fire_mode/dir.png b/src/main/resources/assets/superbwarfare/textures/gun_icon/fire_mode/dir.png new file mode 100644 index 000000000..321ffa18f Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/gun_icon/fire_mode/dir.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/gun_icon/fire_mode/line.png b/src/main/resources/assets/superbwarfare/textures/gun_icon/fire_mode/line.png new file mode 100644 index 000000000..bfca0b146 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/gun_icon/fire_mode/line.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/gun_icon/fire_mode/mouse.png b/src/main/resources/assets/superbwarfare/textures/gun_icon/fire_mode/mouse.png new file mode 100644 index 000000000..ad3d3e376 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/gun_icon/fire_mode/mouse.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/gun_icon/fire_mode/semi.png b/src/main/resources/assets/superbwarfare/textures/gun_icon/fire_mode/semi.png new file mode 100644 index 000000000..c345489fa Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/gun_icon/fire_mode/semi.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/gun_icon/fire_mode/top.png b/src/main/resources/assets/superbwarfare/textures/gun_icon/fire_mode/top.png new file mode 100644 index 000000000..790021e21 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/gun_icon/fire_mode/top.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/gun_icon/glock_icon.png b/src/main/resources/assets/superbwarfare/textures/gun_icon/glock_icon.png new file mode 100644 index 000000000..97bae1d64 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/gun_icon/glock_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/gun_icon/hk416_icon.png b/src/main/resources/assets/superbwarfare/textures/gun_icon/hk416_icon.png new file mode 100644 index 000000000..63c75f4f1 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/gun_icon/hk416_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/gun_icon/homemade_shotgun_icon.png b/src/main/resources/assets/superbwarfare/textures/gun_icon/homemade_shotgun_icon.png new file mode 100644 index 000000000..db43a2a61 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/gun_icon/homemade_shotgun_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/gun_icon/hunting_rifle_icon.png b/src/main/resources/assets/superbwarfare/textures/gun_icon/hunting_rifle_icon.png new file mode 100644 index 000000000..98b0d4dce Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/gun_icon/hunting_rifle_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/gun_icon/javelin_icon.png b/src/main/resources/assets/superbwarfare/textures/gun_icon/javelin_icon.png new file mode 100644 index 000000000..5abff3a85 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/gun_icon/javelin_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/gun_icon/k98_icon.png b/src/main/resources/assets/superbwarfare/textures/gun_icon/k98_icon.png new file mode 100644 index 000000000..7578c02bf Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/gun_icon/k98_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/gun_icon/m1911_icon.png b/src/main/resources/assets/superbwarfare/textures/gun_icon/m1911_icon.png new file mode 100644 index 000000000..779112429 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/gun_icon/m1911_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/gun_icon/m4_icon.png b/src/main/resources/assets/superbwarfare/textures/gun_icon/m4_icon.png new file mode 100644 index 000000000..74b329db0 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/gun_icon/m4_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/gun_icon/m60_icon.png b/src/main/resources/assets/superbwarfare/textures/gun_icon/m60_icon.png new file mode 100644 index 000000000..5e78c74da Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/gun_icon/m60_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/gun_icon/m79_icon.png b/src/main/resources/assets/superbwarfare/textures/gun_icon/m79_icon.png new file mode 100644 index 000000000..06030a3f6 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/gun_icon/m79_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/gun_icon/m870_icon.png b/src/main/resources/assets/superbwarfare/textures/gun_icon/m870_icon.png new file mode 100644 index 000000000..991fa331a Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/gun_icon/m870_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/gun_icon/m98b_icon.png b/src/main/resources/assets/superbwarfare/textures/gun_icon/m98b_icon.png new file mode 100644 index 000000000..a704e87cc Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/gun_icon/m98b_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/gun_icon/marlin_icon.png b/src/main/resources/assets/superbwarfare/textures/gun_icon/marlin_icon.png new file mode 100644 index 000000000..25fc0f1ff Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/gun_icon/marlin_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/gun_icon/minigun_icon.png b/src/main/resources/assets/superbwarfare/textures/gun_icon/minigun_icon.png new file mode 100644 index 000000000..95a9f7f4c Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/gun_icon/minigun_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/gun_icon/mk14ebr_icon.png b/src/main/resources/assets/superbwarfare/textures/gun_icon/mk14ebr_icon.png new file mode 100644 index 000000000..18dc9b589 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/gun_icon/mk14ebr_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/gun_icon/mosin_nagant_icon.png b/src/main/resources/assets/superbwarfare/textures/gun_icon/mosin_nagant_icon.png new file mode 100644 index 000000000..773403274 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/gun_icon/mosin_nagant_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/gun_icon/mp443_icon.png b/src/main/resources/assets/superbwarfare/textures/gun_icon/mp443_icon.png new file mode 100644 index 000000000..8667206d5 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/gun_icon/mp443_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/gun_icon/ntw_20_icon.png b/src/main/resources/assets/superbwarfare/textures/gun_icon/ntw_20_icon.png new file mode 100644 index 000000000..23ac33272 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/gun_icon/ntw_20_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/gun_icon/qbz95_icon.png b/src/main/resources/assets/superbwarfare/textures/gun_icon/qbz95_icon.png new file mode 100644 index 000000000..ba0549b34 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/gun_icon/qbz95_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/gun_icon/rpg_icon.png b/src/main/resources/assets/superbwarfare/textures/gun_icon/rpg_icon.png new file mode 100644 index 000000000..125e5e6c9 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/gun_icon/rpg_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/gun_icon/rpk_icon.png b/src/main/resources/assets/superbwarfare/textures/gun_icon/rpk_icon.png new file mode 100644 index 000000000..91f0238e0 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/gun_icon/rpk_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/gun_icon/secondary_cataclysm_icon.png b/src/main/resources/assets/superbwarfare/textures/gun_icon/secondary_cataclysm_icon.png new file mode 100644 index 000000000..1c88bb3f8 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/gun_icon/secondary_cataclysm_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/gun_icon/sentinel_icon.png b/src/main/resources/assets/superbwarfare/textures/gun_icon/sentinel_icon.png new file mode 100644 index 000000000..5f5ff8256 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/gun_icon/sentinel_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/gun_icon/sks_icon.png b/src/main/resources/assets/superbwarfare/textures/gun_icon/sks_icon.png new file mode 100644 index 000000000..62fcee434 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/gun_icon/sks_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/gun_icon/svd_icon.png b/src/main/resources/assets/superbwarfare/textures/gun_icon/svd_icon.png new file mode 100644 index 000000000..937b90b9f Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/gun_icon/svd_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/gun_icon/taser_icon.png b/src/main/resources/assets/superbwarfare/textures/gun_icon/taser_icon.png new file mode 100644 index 000000000..6bf4369c2 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/gun_icon/taser_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/gun_icon/trachelium_icon.png b/src/main/resources/assets/superbwarfare/textures/gun_icon/trachelium_icon.png new file mode 100644 index 000000000..ab6cdc14c Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/gun_icon/trachelium_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/gun_icon/vector_icon.png b/src/main/resources/assets/superbwarfare/textures/gun_icon/vector_icon.png new file mode 100644 index 000000000..41229dab8 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/gun_icon/vector_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/aa123d.png b/src/main/resources/assets/superbwarfare/textures/item/aa123d.png new file mode 100644 index 000000000..08d706ff4 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/aa123d.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/aa12_e.png b/src/main/resources/assets/superbwarfare/textures/item/aa12_e.png new file mode 100644 index 000000000..a87eb559a Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/aa12_e.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/aa12_new.png b/src/main/resources/assets/superbwarfare/textures/item/aa12_new.png new file mode 100644 index 000000000..4a219d75b Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/aa12_new.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/aa_12.png b/src/main/resources/assets/superbwarfare/textures/item/aa_12.png new file mode 100644 index 000000000..46c459866 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/aa_12.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/ak12.png b/src/main/resources/assets/superbwarfare/textures/item/ak12.png new file mode 100644 index 000000000..71c95f064 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/ak12.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/ak12_3d.png b/src/main/resources/assets/superbwarfare/textures/item/ak12_3d.png new file mode 100644 index 000000000..8eea8ac5e Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/ak12_3d.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/ak12_e.png b/src/main/resources/assets/superbwarfare/textures/item/ak12_e.png new file mode 100644 index 000000000..44fc089ce Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/ak12_e.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/ak12_icon.png b/src/main/resources/assets/superbwarfare/textures/item/ak12_icon.png new file mode 100644 index 000000000..807f43d35 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/ak12_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/ak3d.png b/src/main/resources/assets/superbwarfare/textures/item/ak3d.png new file mode 100644 index 000000000..54aaf12a1 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/ak3d.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/ak47.png b/src/main/resources/assets/superbwarfare/textures/item/ak47.png new file mode 100644 index 000000000..1f1d2792c Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/ak47.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/ak473d.png b/src/main/resources/assets/superbwarfare/textures/item/ak473d.png new file mode 100644 index 000000000..f7b344dad Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/ak473d.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/ak47_e.png b/src/main/resources/assets/superbwarfare/textures/item/ak47_e.png new file mode 100644 index 000000000..36fed2e45 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/ak47_e.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/ak47icon.png b/src/main/resources/assets/superbwarfare/textures/item/ak47icon.png new file mode 100644 index 000000000..1540fa880 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/ak47icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/ammo_box.png b/src/main/resources/assets/superbwarfare/textures/item/ammo_box.png new file mode 100644 index 000000000..ec29255dc Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/ammo_box.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/ancient_cpu.png b/src/main/resources/assets/superbwarfare/textures/item/ancient_cpu.png new file mode 100644 index 000000000..de9a7ce2e Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/ancient_cpu.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/ap_head.png b/src/main/resources/assets/superbwarfare/textures/item/ap_head.png new file mode 100644 index 000000000..18fca0758 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/ap_head.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/armor_plate.png b/src/main/resources/assets/superbwarfare/textures/item/armor_plate.png new file mode 100644 index 000000000..53b4ecf2a Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/armor_plate.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/armor_plate_infinite.png b/src/main/resources/assets/superbwarfare/textures/item/armor_plate_infinite.png new file mode 100644 index 000000000..f79af8bb3 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/armor_plate_infinite.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/battery.png b/src/main/resources/assets/superbwarfare/textures/item/battery.png new file mode 100644 index 000000000..35ff190dc Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/battery.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/beam_test.png b/src/main/resources/assets/superbwarfare/textures/item/beam_test.png new file mode 100644 index 000000000..ec2fff13a Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/beam_test.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/bocek.png b/src/main/resources/assets/superbwarfare/textures/item/bocek.png new file mode 100644 index 000000000..46688ac79 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/bocek.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/bocek_e.png b/src/main/resources/assets/superbwarfare/textures/item/bocek_e.png new file mode 100644 index 000000000..3cd53578f Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/bocek_e.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/bocek_icon.png b/src/main/resources/assets/superbwarfare/textures/item/bocek_icon.png new file mode 100644 index 000000000..729c4a645 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/bocek_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/bsk.png b/src/main/resources/assets/superbwarfare/textures/item/bsk.png new file mode 100644 index 000000000..7090c772e Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/bsk.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/c4.png b/src/main/resources/assets/superbwarfare/textures/item/c4.png new file mode 100644 index 000000000..5739bf11e Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/c4.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/c4_alter.png b/src/main/resources/assets/superbwarfare/textures/item/c4_alter.png new file mode 100644 index 000000000..b469c921f Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/c4_alter.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/cannon_blueprint.png b/src/main/resources/assets/superbwarfare/textures/item/cannon_blueprint.png new file mode 100644 index 000000000..53c4f5214 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/cannon_blueprint.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/cannon_core.png b/src/main/resources/assets/superbwarfare/textures/item/cannon_core.png new file mode 100644 index 000000000..c1dc3c9b9 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/cannon_core.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/cell.png b/src/main/resources/assets/superbwarfare/textures/item/cell.png new file mode 100644 index 000000000..9bccc06f8 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/cell.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/cemented_carbide_action.png b/src/main/resources/assets/superbwarfare/textures/item/cemented_carbide_action.png new file mode 100644 index 000000000..9597c4cf5 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/cemented_carbide_action.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/cemented_carbide_barrel.png b/src/main/resources/assets/superbwarfare/textures/item/cemented_carbide_barrel.png new file mode 100644 index 000000000..c6264c512 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/cemented_carbide_barrel.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/cemented_carbide_ingot.png b/src/main/resources/assets/superbwarfare/textures/item/cemented_carbide_ingot.png new file mode 100644 index 000000000..8bcc1a321 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/cemented_carbide_ingot.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/cemented_carbide_spring.png b/src/main/resources/assets/superbwarfare/textures/item/cemented_carbide_spring.png new file mode 100644 index 000000000..694b6a50c Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/cemented_carbide_spring.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/cemented_carbide_trigger.png b/src/main/resources/assets/superbwarfare/textures/item/cemented_carbide_trigger.png new file mode 100644 index 000000000..e88443682 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/cemented_carbide_trigger.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/claymore.png b/src/main/resources/assets/superbwarfare/textures/item/claymore.png new file mode 100644 index 000000000..d74a16c9b Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/claymore.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/coal_iron_powder.png b/src/main/resources/assets/superbwarfare/textures/item/coal_iron_powder.png new file mode 100644 index 000000000..3eefb7d0f Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/coal_iron_powder.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/coal_powder.png b/src/main/resources/assets/superbwarfare/textures/item/coal_powder.png new file mode 100644 index 000000000..146fef84d Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/coal_powder.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/common_material_pack.png b/src/main/resources/assets/superbwarfare/textures/item/common_material_pack.png new file mode 100644 index 000000000..4471085a7 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/common_material_pack.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/copper_plate.png b/src/main/resources/assets/superbwarfare/textures/item/copper_plate.png new file mode 100644 index 000000000..0f345f982 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/copper_plate.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/crowbar.png b/src/main/resources/assets/superbwarfare/textures/item/crowbar.png new file mode 100644 index 000000000..5010bb93d Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/crowbar.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/defuser.png b/src/main/resources/assets/superbwarfare/textures/item/defuser.png new file mode 100644 index 000000000..6129bf927 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/defuser.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/detonator.png b/src/main/resources/assets/superbwarfare/textures/item/detonator.png new file mode 100644 index 000000000..429895789 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/detonator.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/devotion.png b/src/main/resources/assets/superbwarfare/textures/item/devotion.png new file mode 100644 index 000000000..d53ef1e67 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/devotion.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/devotion3d.png b/src/main/resources/assets/superbwarfare/textures/item/devotion3d.png new file mode 100644 index 000000000..a9021d745 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/devotion3d.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/devotion_e.png b/src/main/resources/assets/superbwarfare/textures/item/devotion_e.png new file mode 100644 index 000000000..9bdffc8ae Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/devotion_e.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/devotion_icon.png b/src/main/resources/assets/superbwarfare/textures/item/devotion_icon.png new file mode 100644 index 000000000..91c1db6fd Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/devotion_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/dog_tag.png b/src/main/resources/assets/superbwarfare/textures/item/dog_tag.png new file mode 100644 index 000000000..e66673835 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/dog_tag.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/drone.png b/src/main/resources/assets/superbwarfare/textures/item/drone.png new file mode 100644 index 000000000..60e572e9e Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/drone.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/empty_perk.png b/src/main/resources/assets/superbwarfare/textures/item/empty_perk.png new file mode 100644 index 000000000..af172e92f Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/empty_perk.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/epic_material_pack.png b/src/main/resources/assets/superbwarfare/textures/item/epic_material_pack.png new file mode 100644 index 000000000..fd734fc47 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/epic_material_pack.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/fumo_25.png b/src/main/resources/assets/superbwarfare/textures/item/fumo_25.png new file mode 100644 index 000000000..c70e875df Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/fumo_25.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/fusee.png b/src/main/resources/assets/superbwarfare/textures/item/fusee.png new file mode 100644 index 000000000..3343ef51f Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/fusee.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/galena.png b/src/main/resources/assets/superbwarfare/textures/item/galena.png new file mode 100644 index 000000000..e78f8cd60 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/galena.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/ge_helmet_m_35.png b/src/main/resources/assets/superbwarfare/textures/item/ge_helmet_m_35.png new file mode 100644 index 000000000..eef6698d2 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/ge_helmet_m_35.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/glock17.png b/src/main/resources/assets/superbwarfare/textures/item/glock17.png new file mode 100644 index 000000000..053e136b9 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/glock17.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/glock17_3d.png b/src/main/resources/assets/superbwarfare/textures/item/glock17_3d.png new file mode 100644 index 000000000..e17a3d49c Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/glock17_3d.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/glock17_e.png b/src/main/resources/assets/superbwarfare/textures/item/glock17_e.png new file mode 100644 index 000000000..aa9c78035 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/glock17_e.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/glock17_icon.png b/src/main/resources/assets/superbwarfare/textures/item/glock17_icon.png new file mode 100644 index 000000000..41dec262b Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/glock17_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/grain.png b/src/main/resources/assets/superbwarfare/textures/item/grain.png new file mode 100644 index 000000000..9658cb606 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/grain.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/gun_blueprint.png b/src/main/resources/assets/superbwarfare/textures/item/gun_blueprint.png new file mode 100644 index 000000000..7226b63f3 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/gun_blueprint.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/gungranade.png b/src/main/resources/assets/superbwarfare/textures/item/gungranade.png new file mode 100644 index 000000000..d519bdddf Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/gungranade.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/hammer.png b/src/main/resources/assets/superbwarfare/textures/item/hammer.png new file mode 100644 index 000000000..e274f6e30 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/hammer.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/hand_grenade.png b/src/main/resources/assets/superbwarfare/textures/item/hand_grenade.png new file mode 100644 index 000000000..4af824cd1 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/hand_grenade.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/handgun_ammo.png b/src/main/resources/assets/superbwarfare/textures/item/handgun_ammo.png new file mode 100644 index 000000000..46f5b6625 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/handgun_ammo.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/he_head.png b/src/main/resources/assets/superbwarfare/textures/item/he_head.png new file mode 100644 index 000000000..77a5f96d2 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/he_head.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/heavy_ammo.png b/src/main/resources/assets/superbwarfare/textures/item/heavy_ammo.png new file mode 100644 index 000000000..3e35f6f01 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/heavy_ammo.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/heavy_armament_module.png b/src/main/resources/assets/superbwarfare/textures/item/heavy_armament_module.png new file mode 100644 index 000000000..514118b51 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/heavy_armament_module.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/high_energy_explosives.png b/src/main/resources/assets/superbwarfare/textures/item/high_energy_explosives.png new file mode 100644 index 000000000..6874c826f Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/high_energy_explosives.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/hk416.png b/src/main/resources/assets/superbwarfare/textures/item/hk416.png new file mode 100644 index 000000000..379db37f7 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/hk416.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/hk4163d.png b/src/main/resources/assets/superbwarfare/textures/item/hk4163d.png new file mode 100644 index 000000000..636c2f953 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/hk4163d.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/hk416_a5.png b/src/main/resources/assets/superbwarfare/textures/item/hk416_a5.png new file mode 100644 index 000000000..77bf79f16 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/hk416_a5.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/hk416_e.png b/src/main/resources/assets/superbwarfare/textures/item/hk416_e.png new file mode 100644 index 000000000..845e7ef9f Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/hk416_e.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/homemade_shotgun.png b/src/main/resources/assets/superbwarfare/textures/item/homemade_shotgun.png new file mode 100644 index 000000000..16c222839 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/homemade_shotgun.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/homemade_shotgun_e.png b/src/main/resources/assets/superbwarfare/textures/item/homemade_shotgun_e.png new file mode 100644 index 000000000..5053ce666 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/homemade_shotgun_e.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/hunting_rifle.png b/src/main/resources/assets/superbwarfare/textures/item/hunting_rifle.png new file mode 100644 index 000000000..f34ebe01c Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/hunting_rifle.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/hunting_rifle3d.png b/src/main/resources/assets/superbwarfare/textures/item/hunting_rifle3d.png new file mode 100644 index 000000000..ccbf335ed Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/hunting_rifle3d.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/hunting_rifle_e.png b/src/main/resources/assets/superbwarfare/textures/item/hunting_rifle_e.png new file mode 100644 index 000000000..f06ae3b26 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/hunting_rifle_e.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/hunting_rifle_icon.png b/src/main/resources/assets/superbwarfare/textures/item/hunting_rifle_icon.png new file mode 100644 index 000000000..c37408054 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/hunting_rifle_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/iron_action.png b/src/main/resources/assets/superbwarfare/textures/item/iron_action.png new file mode 100644 index 000000000..b970198f3 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/iron_action.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/iron_barrel.png b/src/main/resources/assets/superbwarfare/textures/item/iron_barrel.png new file mode 100644 index 000000000..b43386abb Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/iron_barrel.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/iron_powder.png b/src/main/resources/assets/superbwarfare/textures/item/iron_powder.png new file mode 100644 index 000000000..0ad122b61 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/iron_powder.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/iron_spring.png b/src/main/resources/assets/superbwarfare/textures/item/iron_spring.png new file mode 100644 index 000000000..0f6894299 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/iron_spring.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/iron_trigger.png b/src/main/resources/assets/superbwarfare/textures/item/iron_trigger.png new file mode 100644 index 000000000..c35df9efb Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/iron_trigger.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/javelin.png b/src/main/resources/assets/superbwarfare/textures/item/javelin.png new file mode 100644 index 000000000..22afe4a7c Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/javelin.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/javelin_3d.png b/src/main/resources/assets/superbwarfare/textures/item/javelin_3d.png new file mode 100644 index 000000000..2e43885eb Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/javelin_3d.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/javelin_icon.png b/src/main/resources/assets/superbwarfare/textures/item/javelin_icon.png new file mode 100644 index 000000000..90911cbb5 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/javelin_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/javelin_missile.png b/src/main/resources/assets/superbwarfare/textures/item/javelin_missile.png new file mode 100644 index 000000000..4c2307583 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/javelin_missile.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/k98.png b/src/main/resources/assets/superbwarfare/textures/item/k98.png new file mode 100644 index 000000000..746e45c81 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/k98.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/k98_e.png b/src/main/resources/assets/superbwarfare/textures/item/k98_e.png new file mode 100644 index 000000000..f243023f9 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/k98_e.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/k98_icon.png b/src/main/resources/assets/superbwarfare/textures/item/k98_icon.png new file mode 100644 index 000000000..bdfa9a881 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/k98_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/knife.png b/src/main/resources/assets/superbwarfare/textures/item/knife.png new file mode 100644 index 000000000..9609e21b7 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/knife.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/large_battery_pack.png b/src/main/resources/assets/superbwarfare/textures/item/large_battery_pack.png new file mode 100644 index 000000000..65cb1af62 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/large_battery_pack.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/large_motor.png b/src/main/resources/assets/superbwarfare/textures/item/large_motor.png new file mode 100644 index 000000000..7bd4ad8ee Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/large_motor.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/large_propeller.png b/src/main/resources/assets/superbwarfare/textures/item/large_propeller.png new file mode 100644 index 000000000..39dc3a97c Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/large_propeller.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/lead_ingot.png b/src/main/resources/assets/superbwarfare/textures/item/lead_ingot.png new file mode 100644 index 000000000..0a874f0a4 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/lead_ingot.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/legendary_material_pack.png b/src/main/resources/assets/superbwarfare/textures/item/legendary_material_pack.png new file mode 100644 index 000000000..5c97a047b Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/legendary_material_pack.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/light_armament_module.png b/src/main/resources/assets/superbwarfare/textures/item/light_armament_module.png new file mode 100644 index 000000000..040ef5a07 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/light_armament_module.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/lunge_mine.png b/src/main/resources/assets/superbwarfare/textures/item/lunge_mine.png new file mode 100644 index 000000000..9e7999397 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/lunge_mine.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/lunge_mine_icon.png b/src/main/resources/assets/superbwarfare/textures/item/lunge_mine_icon.png new file mode 100644 index 000000000..56307b85e Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/lunge_mine_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/m1911.png b/src/main/resources/assets/superbwarfare/textures/item/m1911.png new file mode 100644 index 000000000..ca53ebe68 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/m1911.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/m1911_3d.png b/src/main/resources/assets/superbwarfare/textures/item/m1911_3d.png new file mode 100644 index 000000000..b144ed79e Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/m1911_3d.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/m1911_e.png b/src/main/resources/assets/superbwarfare/textures/item/m1911_e.png new file mode 100644 index 000000000..df0305837 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/m1911_e.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/m1911_icon.png b/src/main/resources/assets/superbwarfare/textures/item/m1911_icon.png new file mode 100644 index 000000000..051e6a02d Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/m1911_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/m4.png b/src/main/resources/assets/superbwarfare/textures/item/m4.png new file mode 100644 index 000000000..4a9e4f520 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/m4.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/m43d.png b/src/main/resources/assets/superbwarfare/textures/item/m43d.png new file mode 100644 index 000000000..cef6845d5 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/m43d.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/m4_e.png b/src/main/resources/assets/superbwarfare/textures/item/m4_e.png new file mode 100644 index 000000000..575653e3f Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/m4_e.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/m4icon.png b/src/main/resources/assets/superbwarfare/textures/item/m4icon.png new file mode 100644 index 000000000..1b367619a Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/m4icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/m60.png b/src/main/resources/assets/superbwarfare/textures/item/m60.png new file mode 100644 index 000000000..27cc423f6 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/m60.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/m603d.png b/src/main/resources/assets/superbwarfare/textures/item/m603d.png new file mode 100644 index 000000000..45d3596a7 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/m603d.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/m60_e.png b/src/main/resources/assets/superbwarfare/textures/item/m60_e.png new file mode 100644 index 000000000..c7478f0dc Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/m60_e.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/m60_icon.png b/src/main/resources/assets/superbwarfare/textures/item/m60_icon.png new file mode 100644 index 000000000..d9c52a113 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/m60_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/m79.png b/src/main/resources/assets/superbwarfare/textures/item/m79.png new file mode 100644 index 000000000..aacc94ede Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/m79.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/m793d.png b/src/main/resources/assets/superbwarfare/textures/item/m793d.png new file mode 100644 index 000000000..1ea6bad01 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/m793d.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/m79_e.png b/src/main/resources/assets/superbwarfare/textures/item/m79_e.png new file mode 100644 index 000000000..9eb997540 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/m79_e.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/m79icon.png b/src/main/resources/assets/superbwarfare/textures/item/m79icon.png new file mode 100644 index 000000000..5c1c37ffa Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/m79icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/m870.png b/src/main/resources/assets/superbwarfare/textures/item/m870.png new file mode 100644 index 000000000..ef82534c7 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/m870.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/m8703d.png b/src/main/resources/assets/superbwarfare/textures/item/m8703d.png new file mode 100644 index 000000000..d425ad9ca Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/m8703d.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/m870_e.png b/src/main/resources/assets/superbwarfare/textures/item/m870_e.png new file mode 100644 index 000000000..8ab45ecd2 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/m870_e.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/m870_icon.png b/src/main/resources/assets/superbwarfare/textures/item/m870_icon.png new file mode 100644 index 000000000..1ed192c18 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/m870_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/m98b.png b/src/main/resources/assets/superbwarfare/textures/item/m98b.png new file mode 100644 index 000000000..2c75bf727 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/m98b.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/m98b_e.png b/src/main/resources/assets/superbwarfare/textures/item/m98b_e.png new file mode 100644 index 000000000..4f58d0f26 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/m98b_e.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/m_98b_icon.png b/src/main/resources/assets/superbwarfare/textures/item/m_98b_icon.png new file mode 100644 index 000000000..052093a17 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/m_98b_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/marlin.png b/src/main/resources/assets/superbwarfare/textures/item/marlin.png new file mode 100644 index 000000000..b6971562e Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/marlin.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/marlin_e.png b/src/main/resources/assets/superbwarfare/textures/item/marlin_e.png new file mode 100644 index 000000000..6a2e3d261 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/marlin_e.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/marlinicon.png b/src/main/resources/assets/superbwarfare/textures/item/marlinicon.png new file mode 100644 index 000000000..7d9e1b724 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/marlinicon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/medium_armament_module.png b/src/main/resources/assets/superbwarfare/textures/item/medium_armament_module.png new file mode 100644 index 000000000..c8ae9e010 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/medium_armament_module.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/medium_battery_pack.png b/src/main/resources/assets/superbwarfare/textures/item/medium_battery_pack.png new file mode 100644 index 000000000..91cb955d8 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/medium_battery_pack.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/minigun.png b/src/main/resources/assets/superbwarfare/textures/item/minigun.png new file mode 100644 index 000000000..87b29d177 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/minigun.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/minigun_3d.png b/src/main/resources/assets/superbwarfare/textures/item/minigun_3d.png new file mode 100644 index 000000000..f8f77e7c4 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/minigun_3d.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/minigun_e.png b/src/main/resources/assets/superbwarfare/textures/item/minigun_e.png new file mode 100644 index 000000000..b81d28c43 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/minigun_e.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/minigun_heat_e.png b/src/main/resources/assets/superbwarfare/textures/item/minigun_heat_e.png new file mode 100644 index 000000000..ea1554df4 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/minigun_heat_e.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/minigun_icon.png b/src/main/resources/assets/superbwarfare/textures/item/minigun_icon.png new file mode 100644 index 000000000..05133da45 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/minigun_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/missile_engine.png b/src/main/resources/assets/superbwarfare/textures/item/missile_engine.png new file mode 100644 index 000000000..2648f7921 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/missile_engine.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/mk14.png b/src/main/resources/assets/superbwarfare/textures/item/mk14.png new file mode 100644 index 000000000..f79562cfb Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/mk14.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/mk143d.png b/src/main/resources/assets/superbwarfare/textures/item/mk143d.png new file mode 100644 index 000000000..3fa4ba95b Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/mk143d.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/mk14_e.png b/src/main/resources/assets/superbwarfare/textures/item/mk14_e.png new file mode 100644 index 000000000..4f084cdb3 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/mk14_e.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/mk_14_icon.png b/src/main/resources/assets/superbwarfare/textures/item/mk_14_icon.png new file mode 100644 index 000000000..6ee4d9df3 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/mk_14_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/monitor.png b/src/main/resources/assets/superbwarfare/textures/item/monitor.png new file mode 100644 index 000000000..425fff4e3 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/monitor.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/monitor_linked.png b/src/main/resources/assets/superbwarfare/textures/item/monitor_linked.png new file mode 100644 index 000000000..419f9bec9 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/monitor_linked.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/mortar_barrel.png b/src/main/resources/assets/superbwarfare/textures/item/mortar_barrel.png new file mode 100644 index 000000000..2698169a8 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/mortar_barrel.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/mortar_base_plate.png b/src/main/resources/assets/superbwarfare/textures/item/mortar_base_plate.png new file mode 100644 index 000000000..78dfd9319 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/mortar_base_plate.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/mortar_bipod.png b/src/main/resources/assets/superbwarfare/textures/item/mortar_bipod.png new file mode 100644 index 000000000..9b1aa5963 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/mortar_bipod.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/mortar_deployer.png b/src/main/resources/assets/superbwarfare/textures/item/mortar_deployer.png new file mode 100644 index 000000000..28066d337 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/mortar_deployer.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/mortar_shell.png b/src/main/resources/assets/superbwarfare/textures/item/mortar_shell.png new file mode 100644 index 000000000..7e6e73a39 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/mortar_shell.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/mosin3d.png b/src/main/resources/assets/superbwarfare/textures/item/mosin3d.png new file mode 100644 index 000000000..db05be592 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/mosin3d.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/mosin_nagant.png b/src/main/resources/assets/superbwarfare/textures/item/mosin_nagant.png new file mode 100644 index 000000000..b194a43f2 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/mosin_nagant.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/mosin_nagant_e.png b/src/main/resources/assets/superbwarfare/textures/item/mosin_nagant_e.png new file mode 100644 index 000000000..1184bbe05 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/mosin_nagant_e.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/mosin_nagant_icon.png b/src/main/resources/assets/superbwarfare/textures/item/mosin_nagant_icon.png new file mode 100644 index 000000000..e288d5f97 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/mosin_nagant_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/motor.png b/src/main/resources/assets/superbwarfare/textures/item/motor.png new file mode 100644 index 000000000..6e0601500 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/motor.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/mp443.png b/src/main/resources/assets/superbwarfare/textures/item/mp443.png new file mode 100644 index 000000000..e0013e3a3 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/mp443.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/mp443_3d.png b/src/main/resources/assets/superbwarfare/textures/item/mp443_3d.png new file mode 100644 index 000000000..91d3930c4 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/mp443_3d.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/mp443_e.png b/src/main/resources/assets/superbwarfare/textures/item/mp443_e.png new file mode 100644 index 000000000..a47990914 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/mp443_e.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/mp443_icon.png b/src/main/resources/assets/superbwarfare/textures/item/mp443_icon.png new file mode 100644 index 000000000..3a4b461d2 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/mp443_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/netherite_action.png b/src/main/resources/assets/superbwarfare/textures/item/netherite_action.png new file mode 100644 index 000000000..0c63b0d77 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/netherite_action.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/netherite_barrel.png b/src/main/resources/assets/superbwarfare/textures/item/netherite_barrel.png new file mode 100644 index 000000000..f9c84e80b Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/netherite_barrel.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/netherite_spring.png b/src/main/resources/assets/superbwarfare/textures/item/netherite_spring.png new file mode 100644 index 000000000..040da59b9 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/netherite_spring.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/netherite_trigger.png b/src/main/resources/assets/superbwarfare/textures/item/netherite_trigger.png new file mode 100644 index 000000000..70bc4759c Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/netherite_trigger.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/ntw_20.png b/src/main/resources/assets/superbwarfare/textures/item/ntw_20.png new file mode 100644 index 000000000..d901f4649 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/ntw_20.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/ntw_203d.png b/src/main/resources/assets/superbwarfare/textures/item/ntw_203d.png new file mode 100644 index 000000000..e6b16803c Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/ntw_203d.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/ntw_20_e.png b/src/main/resources/assets/superbwarfare/textures/item/ntw_20_e.png new file mode 100644 index 000000000..7a906124a Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/ntw_20_e.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/ntw_20_icon.png b/src/main/resources/assets/superbwarfare/textures/item/ntw_20_icon.png new file mode 100644 index 000000000..e6e0dc054 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/ntw_20_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/pad.png b/src/main/resources/assets/superbwarfare/textures/item/pad.png new file mode 100644 index 000000000..d9570bf00 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/pad.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/perk/ap_bullet.png b/src/main/resources/assets/superbwarfare/textures/item/perk/ap_bullet.png new file mode 100644 index 000000000..27e30e0d9 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/perk/ap_bullet.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/perk/beast_bullet.png b/src/main/resources/assets/superbwarfare/textures/item/perk/beast_bullet.png new file mode 100644 index 000000000..862274e86 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/perk/beast_bullet.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/perk/blade_bullet.png b/src/main/resources/assets/superbwarfare/textures/item/perk/blade_bullet.png new file mode 100644 index 000000000..204fc62b2 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/perk/blade_bullet.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/perk/butterfly_bullet.png b/src/main/resources/assets/superbwarfare/textures/item/perk/butterfly_bullet.png new file mode 100644 index 000000000..987463532 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/perk/butterfly_bullet.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/perk/curse_flame_bullet.png b/src/main/resources/assets/superbwarfare/textures/item/perk/curse_flame_bullet.png new file mode 100644 index 000000000..a1dc6cc96 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/perk/curse_flame_bullet.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/perk/desperado.png b/src/main/resources/assets/superbwarfare/textures/item/perk/desperado.png new file mode 100644 index 000000000..e41b7130b Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/perk/desperado.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/perk/empty_perk.png b/src/main/resources/assets/superbwarfare/textures/item/perk/empty_perk.png new file mode 100644 index 000000000..af172e92f Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/perk/empty_perk.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/perk/field_doctor.png b/src/main/resources/assets/superbwarfare/textures/item/perk/field_doctor.png new file mode 100644 index 000000000..cf0862c32 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/perk/field_doctor.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/perk/fourth_times_charm.png b/src/main/resources/assets/superbwarfare/textures/item/perk/fourth_times_charm.png new file mode 100644 index 000000000..e3f831987 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/perk/fourth_times_charm.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/perk/gutshot_straight.png b/src/main/resources/assets/superbwarfare/textures/item/perk/gutshot_straight.png new file mode 100644 index 000000000..b32a47293 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/perk/gutshot_straight.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/perk/he_bullet.png b/src/main/resources/assets/superbwarfare/textures/item/perk/he_bullet.png new file mode 100644 index 000000000..e84c4817b Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/perk/he_bullet.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/perk/head_seeker.png b/src/main/resources/assets/superbwarfare/textures/item/perk/head_seeker.png new file mode 100644 index 000000000..73203a991 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/perk/head_seeker.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/perk/heal_clip.png b/src/main/resources/assets/superbwarfare/textures/item/perk/heal_clip.png new file mode 100644 index 000000000..95cfba94c Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/perk/heal_clip.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/perk/incendiary_bullet.png b/src/main/resources/assets/superbwarfare/textures/item/perk/incendiary_bullet.png new file mode 100644 index 000000000..f260f7445 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/perk/incendiary_bullet.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/perk/intelligent_chip.png b/src/main/resources/assets/superbwarfare/textures/item/perk/intelligent_chip.png new file mode 100644 index 000000000..3e38cf3fa Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/perk/intelligent_chip.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/perk/jhp_bullet.png b/src/main/resources/assets/superbwarfare/textures/item/perk/jhp_bullet.png new file mode 100644 index 000000000..5058866a6 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/perk/jhp_bullet.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/perk/kill_clip.png b/src/main/resources/assets/superbwarfare/textures/item/perk/kill_clip.png new file mode 100644 index 000000000..3a60eb40b Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/perk/kill_clip.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/perk/killing_tally.png b/src/main/resources/assets/superbwarfare/textures/item/perk/killing_tally.png new file mode 100644 index 000000000..b12875358 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/perk/killing_tally.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/perk/longer_wire.png b/src/main/resources/assets/superbwarfare/textures/item/perk/longer_wire.png new file mode 100644 index 000000000..061ca5c4f Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/perk/longer_wire.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/perk/micro_missile.png b/src/main/resources/assets/superbwarfare/textures/item/perk/micro_missile.png new file mode 100644 index 000000000..f0e5f44e9 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/perk/micro_missile.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/perk/monster_hunter.png b/src/main/resources/assets/superbwarfare/textures/item/perk/monster_hunter.png new file mode 100644 index 000000000..00bb5f47d Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/perk/monster_hunter.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/perk/poisonous_bullet.png b/src/main/resources/assets/superbwarfare/textures/item/perk/poisonous_bullet.png new file mode 100644 index 000000000..0f94a3706 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/perk/poisonous_bullet.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/perk/powerful_attraction.png b/src/main/resources/assets/superbwarfare/textures/item/perk/powerful_attraction.png new file mode 100644 index 000000000..40f3c407c Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/perk/powerful_attraction.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/perk/regeneration.png b/src/main/resources/assets/superbwarfare/textures/item/perk/regeneration.png new file mode 100644 index 000000000..c192ec58a Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/perk/regeneration.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/perk/shortcut_pack.png b/src/main/resources/assets/superbwarfare/textures/item/perk/shortcut_pack.png new file mode 100644 index 000000000..9bb0b954e Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/perk/shortcut_pack.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/perk/silver_bullet.png b/src/main/resources/assets/superbwarfare/textures/item/perk/silver_bullet.png new file mode 100644 index 000000000..9328fdf04 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/perk/silver_bullet.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/perk/subsistence.png b/src/main/resources/assets/superbwarfare/textures/item/perk/subsistence.png new file mode 100644 index 000000000..218de320d Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/perk/subsistence.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/perk/turbo_charger.png b/src/main/resources/assets/superbwarfare/textures/item/perk/turbo_charger.png new file mode 100644 index 000000000..3bb8150c7 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/perk/turbo_charger.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/perk/volt_overload.png b/src/main/resources/assets/superbwarfare/textures/item/perk/volt_overload.png new file mode 100644 index 000000000..01bd2faf7 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/perk/volt_overload.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/perk/vorpal_weapon.png b/src/main/resources/assets/superbwarfare/textures/item/perk/vorpal_weapon.png new file mode 100644 index 000000000..19de0463c Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/perk/vorpal_weapon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/potion_mortar_shell_base.png b/src/main/resources/assets/superbwarfare/textures/item/potion_mortar_shell_base.png new file mode 100644 index 000000000..f356d89aa Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/potion_mortar_shell_base.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/potion_mortar_shell_overlay.png b/src/main/resources/assets/superbwarfare/textures/item/potion_mortar_shell_overlay.png new file mode 100644 index 000000000..67a7671b7 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/potion_mortar_shell_overlay.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/primer.png b/src/main/resources/assets/superbwarfare/textures/item/primer.png new file mode 100644 index 000000000..092eee35e Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/primer.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/propeller.png b/src/main/resources/assets/superbwarfare/textures/item/propeller.png new file mode 100644 index 000000000..33d20cc3a Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/propeller.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/qbz95.png b/src/main/resources/assets/superbwarfare/textures/item/qbz95.png new file mode 100644 index 000000000..8b970211d Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/qbz95.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/qbz95_3d.png b/src/main/resources/assets/superbwarfare/textures/item/qbz95_3d.png new file mode 100644 index 000000000..388b314ca Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/qbz95_3d.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/qbz95_e.png b/src/main/resources/assets/superbwarfare/textures/item/qbz95_e.png new file mode 100644 index 000000000..b496df385 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/qbz95_e.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/qbz95_icon.png b/src/main/resources/assets/superbwarfare/textures/item/qbz95_icon.png new file mode 100644 index 000000000..0880143d2 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/qbz95_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/rare_material_pack.png b/src/main/resources/assets/superbwarfare/textures/item/rare_material_pack.png new file mode 100644 index 000000000..2777861cd Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/rare_material_pack.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/raw_cemented_carbide_powder.png b/src/main/resources/assets/superbwarfare/textures/item/raw_cemented_carbide_powder.png new file mode 100644 index 000000000..2b7f62f1d Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/raw_cemented_carbide_powder.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/raw_silver.png b/src/main/resources/assets/superbwarfare/textures/item/raw_silver.png new file mode 100644 index 000000000..ee33d73b6 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/raw_silver.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/rgo_grenade.png b/src/main/resources/assets/superbwarfare/textures/item/rgo_grenade.png new file mode 100644 index 000000000..17a26a0ef Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/rgo_grenade.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/rifle_ammo.png b/src/main/resources/assets/superbwarfare/textures/item/rifle_ammo.png new file mode 100644 index 000000000..ea75597e2 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/rifle_ammo.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/rocket_70.png b/src/main/resources/assets/superbwarfare/textures/item/rocket_70.png new file mode 100644 index 000000000..91b47bac5 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/rocket_70.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/rpg3d.png b/src/main/resources/assets/superbwarfare/textures/item/rpg3d.png new file mode 100644 index 000000000..34d05ec99 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/rpg3d.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/rpg7.png b/src/main/resources/assets/superbwarfare/textures/item/rpg7.png new file mode 100644 index 000000000..c79e400da Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/rpg7.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/rpgicon.png b/src/main/resources/assets/superbwarfare/textures/item/rpgicon.png new file mode 100644 index 000000000..d46137dff Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/rpgicon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/rpk.png b/src/main/resources/assets/superbwarfare/textures/item/rpk.png new file mode 100644 index 000000000..a0af18b09 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/rpk.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/rpk_e.png b/src/main/resources/assets/superbwarfare/textures/item/rpk_e.png new file mode 100644 index 000000000..9b4faaac0 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/rpk_e.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/rpk_icon.png b/src/main/resources/assets/superbwarfare/textures/item/rpk_icon.png new file mode 100644 index 000000000..1713f01c4 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/rpk_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/ru_chest_6b43.png b/src/main/resources/assets/superbwarfare/textures/item/ru_chest_6b43.png new file mode 100644 index 000000000..42a707aa2 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/ru_chest_6b43.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/ru_helmet_6b47.png b/src/main/resources/assets/superbwarfare/textures/item/ru_helmet_6b47.png new file mode 100644 index 000000000..6481eee05 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/ru_helmet_6b47.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/scheelite.png b/src/main/resources/assets/superbwarfare/textures/item/scheelite.png new file mode 100644 index 000000000..446ffd6ae Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/scheelite.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/secondary_cataclysm.png b/src/main/resources/assets/superbwarfare/textures/item/secondary_cataclysm.png new file mode 100644 index 000000000..9a5ad2270 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/secondary_cataclysm.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/secondary_cataclysm_3d.png b/src/main/resources/assets/superbwarfare/textures/item/secondary_cataclysm_3d.png new file mode 100644 index 000000000..c170f643c Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/secondary_cataclysm_3d.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/secondary_cataclysm_e.png b/src/main/resources/assets/superbwarfare/textures/item/secondary_cataclysm_e.png new file mode 100644 index 000000000..1fec264fa Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/secondary_cataclysm_e.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/secondary_cataclysm_icon.png b/src/main/resources/assets/superbwarfare/textures/item/secondary_cataclysm_icon.png new file mode 100644 index 000000000..09c87005d Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/secondary_cataclysm_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/seeker.png b/src/main/resources/assets/superbwarfare/textures/item/seeker.png new file mode 100644 index 000000000..d400b860e Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/seeker.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/sentinel.png b/src/main/resources/assets/superbwarfare/textures/item/sentinel.png new file mode 100644 index 000000000..18069e2b4 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/sentinel.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/sentinel3d.png b/src/main/resources/assets/superbwarfare/textures/item/sentinel3d.png new file mode 100644 index 000000000..8123bea24 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/sentinel3d.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/sentinel_e.png b/src/main/resources/assets/superbwarfare/textures/item/sentinel_e.png new file mode 100644 index 000000000..56bf74cb6 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/sentinel_e.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/sentinel_icon.png b/src/main/resources/assets/superbwarfare/textures/item/sentinel_icon.png new file mode 100644 index 000000000..0a1b8cefa Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/sentinel_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/shells/ap_5_inches.png b/src/main/resources/assets/superbwarfare/textures/item/shells/ap_5_inches.png new file mode 100644 index 000000000..596a66282 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/shells/ap_5_inches.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/shells/he_5_inches.png b/src/main/resources/assets/superbwarfare/textures/item/shells/he_5_inches.png new file mode 100644 index 000000000..2e91bcc9d Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/shells/he_5_inches.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/shotgun_ammo.png b/src/main/resources/assets/superbwarfare/textures/item/shotgun_ammo.png new file mode 100644 index 000000000..8ec5fb160 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/shotgun_ammo.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/silver_ingot.png b/src/main/resources/assets/superbwarfare/textures/item/silver_ingot.png new file mode 100644 index 000000000..85a579260 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/silver_ingot.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/sks.png b/src/main/resources/assets/superbwarfare/textures/item/sks.png new file mode 100644 index 000000000..4588e9027 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/sks.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/sks_e.png b/src/main/resources/assets/superbwarfare/textures/item/sks_e.png new file mode 100644 index 000000000..cf4187c4a Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/sks_e.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/sks_icon.png b/src/main/resources/assets/superbwarfare/textures/item/sks_icon.png new file mode 100644 index 000000000..8eb8a1283 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/sks_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/small_battery_pack.png b/src/main/resources/assets/superbwarfare/textures/item/small_battery_pack.png new file mode 100644 index 000000000..3cdb69272 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/small_battery_pack.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/small_shell.png b/src/main/resources/assets/superbwarfare/textures/item/small_shell.png new file mode 100644 index 000000000..5f7a153a6 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/small_shell.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/sniper_ammo.png b/src/main/resources/assets/superbwarfare/textures/item/sniper_ammo.png new file mode 100644 index 000000000..a810cea4b Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/sniper_ammo.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/steel_action.png b/src/main/resources/assets/superbwarfare/textures/item/steel_action.png new file mode 100644 index 000000000..fb9068136 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/steel_action.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/steel_barrel.png b/src/main/resources/assets/superbwarfare/textures/item/steel_barrel.png new file mode 100644 index 000000000..140833171 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/steel_barrel.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/steel_ingot.png b/src/main/resources/assets/superbwarfare/textures/item/steel_ingot.png new file mode 100644 index 000000000..a6eaad458 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/steel_ingot.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/steel_spring.png b/src/main/resources/assets/superbwarfare/textures/item/steel_spring.png new file mode 100644 index 000000000..9b157d307 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/steel_spring.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/steel_trigger.png b/src/main/resources/assets/superbwarfare/textures/item/steel_trigger.png new file mode 100644 index 000000000..0d2ada18f Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/steel_trigger.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/svd.png b/src/main/resources/assets/superbwarfare/textures/item/svd.png new file mode 100644 index 000000000..61777016e Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/svd.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/svdicon.png b/src/main/resources/assets/superbwarfare/textures/item/svdicon.png new file mode 100644 index 000000000..29b9d9f31 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/svdicon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/target_deployer.png b/src/main/resources/assets/superbwarfare/textures/item/target_deployer.png new file mode 100644 index 000000000..5b3559b40 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/target_deployer.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/taserbullet.png b/src/main/resources/assets/superbwarfare/textures/item/taserbullet.png new file mode 100644 index 000000000..29375b3f7 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/taserbullet.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/tasergun.png b/src/main/resources/assets/superbwarfare/textures/item/tasergun.png new file mode 100644 index 000000000..49791febc Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/tasergun.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/trachelium3d.png b/src/main/resources/assets/superbwarfare/textures/item/trachelium3d.png new file mode 100644 index 000000000..1c22ef27f Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/trachelium3d.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/trachelium_icon.png b/src/main/resources/assets/superbwarfare/textures/item/trachelium_icon.png new file mode 100644 index 000000000..3c8222dd1 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/trachelium_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/trachelium_texture.png b/src/main/resources/assets/superbwarfare/textures/item/trachelium_texture.png new file mode 100644 index 000000000..40a2f0934 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/trachelium_texture.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/trachelium_texture_e.png b/src/main/resources/assets/superbwarfare/textures/item/trachelium_texture_e.png new file mode 100644 index 000000000..ca2e42e8a Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/trachelium_texture_e.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/track.png b/src/main/resources/assets/superbwarfare/textures/item/track.png new file mode 100644 index 000000000..a1d72690f Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/track.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/transcript.png b/src/main/resources/assets/superbwarfare/textures/item/transcript.png new file mode 100644 index 000000000..44635378b Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/transcript.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/tungsten_ingot.png b/src/main/resources/assets/superbwarfare/textures/item/tungsten_ingot.png new file mode 100644 index 000000000..e9bf1416d Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/tungsten_ingot.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/tungsten_powder.png b/src/main/resources/assets/superbwarfare/textures/item/tungsten_powder.png new file mode 100644 index 000000000..b128949db Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/tungsten_powder.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/tungsten_rod.png b/src/main/resources/assets/superbwarfare/textures/item/tungsten_rod.png new file mode 100644 index 000000000..b7f20a87b Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/tungsten_rod.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/us_chest_iotv.png b/src/main/resources/assets/superbwarfare/textures/item/us_chest_iotv.png new file mode 100644 index 000000000..6c21b5935 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/us_chest_iotv.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/us_helmet_pastg.png b/src/main/resources/assets/superbwarfare/textures/item/us_helmet_pastg.png new file mode 100644 index 000000000..0f00f2a74 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/us_helmet_pastg.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/vector.png b/src/main/resources/assets/superbwarfare/textures/item/vector.png new file mode 100644 index 000000000..7ad635b27 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/vector.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/vector3d.png b/src/main/resources/assets/superbwarfare/textures/item/vector3d.png new file mode 100644 index 000000000..21256a0c7 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/vector3d.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/vector_e.png b/src/main/resources/assets/superbwarfare/textures/item/vector_e.png new file mode 100644 index 000000000..805093250 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/vector_e.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/vector_icon.png b/src/main/resources/assets/superbwarfare/textures/item/vector_icon.png new file mode 100644 index 000000000..423493166 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/vector_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/wheel.png b/src/main/resources/assets/superbwarfare/textures/item/wheel.png new file mode 100644 index 000000000..029a1d353 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/wheel.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/item/wire_guide_missile.png b/src/main/resources/assets/superbwarfare/textures/item/wire_guide_missile.png new file mode 100644 index 000000000..3ee2b7dd3 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/item/wire_guide_missile.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/mob_effect/burn.png b/src/main/resources/assets/superbwarfare/textures/mob_effect/burn.png new file mode 100644 index 000000000..62a8d1876 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/mob_effect/burn.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/mob_effect/shock.png b/src/main/resources/assets/superbwarfare/textures/mob_effect/shock.png new file mode 100644 index 000000000..4ab70920b Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/mob_effect/shock.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/particle/bullet_hole.png b/src/main/resources/assets/superbwarfare/textures/particle/bullet_hole.png new file mode 100644 index 000000000..25353b6c9 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/particle/bullet_hole.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/particle/fire_star_1.png b/src/main/resources/assets/superbwarfare/textures/particle/fire_star_1.png new file mode 100644 index 000000000..7f4107c9a Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/particle/fire_star_1.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/particle/fire_star_2.png b/src/main/resources/assets/superbwarfare/textures/particle/fire_star_2.png new file mode 100644 index 000000000..1193738a3 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/particle/fire_star_2.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/particle/fire_star_3.png b/src/main/resources/assets/superbwarfare/textures/particle/fire_star_3.png new file mode 100644 index 000000000..b26d41279 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/particle/fire_star_3.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/particle/fire_star_4.png b/src/main/resources/assets/superbwarfare/textures/particle/fire_star_4.png new file mode 100644 index 000000000..df7df189d Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/particle/fire_star_4.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/particle/fire_star_5.png b/src/main/resources/assets/superbwarfare/textures/particle/fire_star_5.png new file mode 100644 index 000000000..2f3f72ed9 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/particle/fire_star_5.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/particle/fire_star_6.png b/src/main/resources/assets/superbwarfare/textures/particle/fire_star_6.png new file mode 100644 index 000000000..7dc90eab4 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/particle/fire_star_6.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/particle/fire_star_7.png b/src/main/resources/assets/superbwarfare/textures/particle/fire_star_7.png new file mode 100644 index 000000000..2f3f72ed9 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/particle/fire_star_7.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/particle/fire_star_8.png b/src/main/resources/assets/superbwarfare/textures/particle/fire_star_8.png new file mode 100644 index 000000000..7dc90eab4 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/particle/fire_star_8.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/armor.png b/src/main/resources/assets/superbwarfare/textures/screens/armor.png new file mode 100644 index 000000000..5fbd32b2b Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/armor.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/armor_plate_icon.png b/src/main/resources/assets/superbwarfare/textures/screens/armor_plate_icon.png new file mode 100644 index 000000000..abcb6787e Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/armor_plate_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/armor_plate_level1.png b/src/main/resources/assets/superbwarfare/textures/screens/armor_plate_level1.png new file mode 100644 index 000000000..2b6537a71 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/armor_plate_level1.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/armor_plate_level1_frame.png b/src/main/resources/assets/superbwarfare/textures/screens/armor_plate_level1_frame.png new file mode 100644 index 000000000..5f87121c5 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/armor_plate_level1_frame.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/armor_plate_level2.png b/src/main/resources/assets/superbwarfare/textures/screens/armor_plate_level2.png new file mode 100644 index 000000000..3e66cf0b3 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/armor_plate_level2.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/armor_plate_level2_frame.png b/src/main/resources/assets/superbwarfare/textures/screens/armor_plate_level2_frame.png new file mode 100644 index 000000000..dcd5708fe Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/armor_plate_level2_frame.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/armor_plate_level3.png b/src/main/resources/assets/superbwarfare/textures/screens/armor_plate_level3.png new file mode 100644 index 000000000..205a76998 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/armor_plate_level3.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/armor_plate_level3_frame.png b/src/main/resources/assets/superbwarfare/textures/screens/armor_plate_level3_frame.png new file mode 100644 index 000000000..6fb3695c8 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/armor_plate_level3_frame.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/armor_value.png b/src/main/resources/assets/superbwarfare/textures/screens/armor_value.png new file mode 100644 index 000000000..3e66cf0b3 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/armor_value.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/armor_value_frame.png b/src/main/resources/assets/superbwarfare/textures/screens/armor_value_frame.png new file mode 100644 index 000000000..dcd5708fe Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/armor_value_frame.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/cannon/cannon_crosshair.png b/src/main/resources/assets/superbwarfare/textures/screens/cannon/cannon_crosshair.png new file mode 100644 index 000000000..43e0ebe63 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/cannon/cannon_crosshair.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/cannon/cannon_crosshair_notzoom.png b/src/main/resources/assets/superbwarfare/textures/screens/cannon/cannon_crosshair_notzoom.png new file mode 100644 index 000000000..474f92d1b Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/cannon/cannon_crosshair_notzoom.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/cannon/cannon_pitch.png b/src/main/resources/assets/superbwarfare/textures/screens/cannon/cannon_pitch.png new file mode 100644 index 000000000..d829e89e8 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/cannon/cannon_pitch.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/cannon/cannon_pitch_ind.png b/src/main/resources/assets/superbwarfare/textures/screens/cannon/cannon_pitch_ind.png new file mode 100644 index 000000000..6a32e609a Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/cannon/cannon_pitch_ind.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/cannon/indicator.png b/src/main/resources/assets/superbwarfare/textures/screens/cannon/indicator.png new file mode 100644 index 000000000..48c820375 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/cannon/indicator.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/cannon/laser_cannon_crosshair.png b/src/main/resources/assets/superbwarfare/textures/screens/cannon/laser_cannon_crosshair.png new file mode 100644 index 000000000..aba659b97 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/cannon/laser_cannon_crosshair.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/compass.png b/src/main/resources/assets/superbwarfare/textures/screens/compass.png new file mode 100644 index 000000000..a9aba00d0 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/compass.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/compass_white.png b/src/main/resources/assets/superbwarfare/textures/screens/compass_white.png new file mode 100644 index 000000000..ede46f73b Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/compass_white.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/damage_types/beast.png b/src/main/resources/assets/superbwarfare/textures/screens/damage_types/beast.png new file mode 100644 index 000000000..398e5975d Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/damage_types/beast.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/damage_types/bleeding.png b/src/main/resources/assets/superbwarfare/textures/screens/damage_types/bleeding.png new file mode 100644 index 000000000..f2047b3ba Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/damage_types/bleeding.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/damage_types/blood_crystal.png b/src/main/resources/assets/superbwarfare/textures/screens/damage_types/blood_crystal.png new file mode 100644 index 000000000..a4758545d Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/damage_types/blood_crystal.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/damage_types/burn.png b/src/main/resources/assets/superbwarfare/textures/screens/damage_types/burn.png new file mode 100644 index 000000000..62a8d1876 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/damage_types/burn.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/damage_types/claymore.png b/src/main/resources/assets/superbwarfare/textures/screens/damage_types/claymore.png new file mode 100644 index 000000000..83efced73 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/damage_types/claymore.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/damage_types/drone.png b/src/main/resources/assets/superbwarfare/textures/screens/damage_types/drone.png new file mode 100644 index 000000000..2c9721c55 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/damage_types/drone.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/damage_types/explosion.png b/src/main/resources/assets/superbwarfare/textures/screens/damage_types/explosion.png new file mode 100644 index 000000000..a124709a2 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/damage_types/explosion.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/damage_types/generic.png b/src/main/resources/assets/superbwarfare/textures/screens/damage_types/generic.png new file mode 100644 index 000000000..81bffdda2 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/damage_types/generic.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/damage_types/headshot.png b/src/main/resources/assets/superbwarfare/textures/screens/damage_types/headshot.png new file mode 100644 index 000000000..3e6b02b01 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/damage_types/headshot.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/damage_types/knife.png b/src/main/resources/assets/superbwarfare/textures/screens/damage_types/knife.png new file mode 100644 index 000000000..8551bc806 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/damage_types/knife.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/damage_types/laser.png b/src/main/resources/assets/superbwarfare/textures/screens/damage_types/laser.png new file mode 100644 index 000000000..e35ce7ea4 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/damage_types/laser.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/damage_types/shock.png b/src/main/resources/assets/superbwarfare/textures/screens/damage_types/shock.png new file mode 100644 index 000000000..fa1920cc4 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/damage_types/shock.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/damage_types/vehicle_strike.png b/src/main/resources/assets/superbwarfare/textures/screens/damage_types/vehicle_strike.png new file mode 100644 index 000000000..9247a56a7 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/damage_types/vehicle_strike.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/driver.png b/src/main/resources/assets/superbwarfare/textures/screens/driver.png new file mode 100644 index 000000000..edf6871bf Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/driver.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/drone.png b/src/main/resources/assets/superbwarfare/textures/screens/drone.png new file mode 100644 index 000000000..ddc1e7858 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/drone.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/drone_fov.png b/src/main/resources/assets/superbwarfare/textures/screens/drone_fov.png new file mode 100644 index 000000000..2a270b7b5 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/drone_fov.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/drone_fov_move.png b/src/main/resources/assets/superbwarfare/textures/screens/drone_fov_move.png new file mode 100644 index 000000000..03236ac0e Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/drone_fov_move.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/energy.png b/src/main/resources/assets/superbwarfare/textures/screens/energy.png new file mode 100644 index 000000000..767fd1ea3 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/energy.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/frame/frame.png b/src/main/resources/assets/superbwarfare/textures/screens/frame/frame.png new file mode 100644 index 000000000..129e2fd39 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/frame/frame.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/frame/frame_lock.png b/src/main/resources/assets/superbwarfare/textures/screens/frame/frame_lock.png new file mode 100644 index 000000000..e639cd246 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/frame/frame_lock.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/frame/frame_target.png b/src/main/resources/assets/superbwarfare/textures/screens/frame/frame_target.png new file mode 100644 index 000000000..37f9425a9 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/frame/frame_target.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/frame/frame_weak.png b/src/main/resources/assets/superbwarfare/textures/screens/frame/frame_weak.png new file mode 100644 index 000000000..e56b17320 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/frame/frame_weak.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/headshot_mark.png b/src/main/resources/assets/superbwarfare/textures/screens/headshot_mark.png new file mode 100644 index 000000000..53ff7fd87 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/headshot_mark.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/helicopter/crosshair_ind.png b/src/main/resources/assets/superbwarfare/textures/screens/helicopter/crosshair_ind.png new file mode 100644 index 000000000..c0eb263f6 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/helicopter/crosshair_ind.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/helicopter/heli_base.png b/src/main/resources/assets/superbwarfare/textures/screens/helicopter/heli_base.png new file mode 100644 index 000000000..efcf57aa2 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/helicopter/heli_base.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/helicopter/heli_driver_angle.png b/src/main/resources/assets/superbwarfare/textures/screens/helicopter/heli_driver_angle.png new file mode 100644 index 000000000..eeddac301 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/helicopter/heli_driver_angle.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/helicopter/heli_line.png b/src/main/resources/assets/superbwarfare/textures/screens/helicopter/heli_line.png new file mode 100644 index 000000000..ee3da4d44 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/helicopter/heli_line.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/helicopter/heli_power.png b/src/main/resources/assets/superbwarfare/textures/screens/helicopter/heli_power.png new file mode 100644 index 000000000..0b8e16616 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/helicopter/heli_power.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/helicopter/heli_power_ruler.png b/src/main/resources/assets/superbwarfare/textures/screens/helicopter/heli_power_ruler.png new file mode 100644 index 000000000..11f049c1c Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/helicopter/heli_power_ruler.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/helicopter/heli_vy_move.png b/src/main/resources/assets/superbwarfare/textures/screens/helicopter/heli_vy_move.png new file mode 100644 index 000000000..3a0b6b034 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/helicopter/heli_vy_move.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/helicopter/roll_ind.png b/src/main/resources/assets/superbwarfare/textures/screens/helicopter/roll_ind.png new file mode 100644 index 000000000..e666deb8d Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/helicopter/roll_ind.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/helicopter/speed_frame.png b/src/main/resources/assets/superbwarfare/textures/screens/helicopter/speed_frame.png new file mode 100644 index 000000000..4fb8ec4f6 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/helicopter/speed_frame.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/hit_marker.png b/src/main/resources/assets/superbwarfare/textures/screens/hit_marker.png new file mode 100644 index 000000000..41e39e935 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/hit_marker.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/hit_marker_vehicle.png b/src/main/resources/assets/superbwarfare/textures/screens/hit_marker_vehicle.png new file mode 100644 index 000000000..7c98585e2 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/hit_marker_vehicle.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/javelin/dir.png b/src/main/resources/assets/superbwarfare/textures/screens/javelin/dir.png new file mode 100644 index 000000000..61440fde3 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/javelin/dir.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/javelin/javelin_hud.png b/src/main/resources/assets/superbwarfare/textures/screens/javelin/javelin_hud.png new file mode 100644 index 000000000..ec3df2f01 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/javelin/javelin_hud.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/javelin/missile_green.png b/src/main/resources/assets/superbwarfare/textures/screens/javelin/missile_green.png new file mode 100644 index 000000000..d2b84be32 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/javelin/missile_green.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/javelin/missile_red.png b/src/main/resources/assets/superbwarfare/textures/screens/javelin/missile_red.png new file mode 100644 index 000000000..2e5d1cc27 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/javelin/missile_red.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/javelin/red_triangle.png b/src/main/resources/assets/superbwarfare/textures/screens/javelin/red_triangle.png new file mode 100644 index 000000000..8ea63052e Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/javelin/red_triangle.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/javelin/seek.png b/src/main/resources/assets/superbwarfare/textures/screens/javelin/seek.png new file mode 100644 index 000000000..a21704526 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/javelin/seek.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/javelin/top.png b/src/main/resources/assets/superbwarfare/textures/screens/javelin/top.png new file mode 100644 index 000000000..856d0c0d7 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/javelin/top.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/kill_mark1.png b/src/main/resources/assets/superbwarfare/textures/screens/kill_mark1.png new file mode 100644 index 000000000..be75c1721 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/kill_mark1.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/kill_mark2.png b/src/main/resources/assets/superbwarfare/textures/screens/kill_mark2.png new file mode 100644 index 000000000..d7e6af600 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/kill_mark2.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/kill_mark3.png b/src/main/resources/assets/superbwarfare/textures/screens/kill_mark3.png new file mode 100644 index 000000000..28ac93656 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/kill_mark3.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/kill_mark4.png b/src/main/resources/assets/superbwarfare/textures/screens/kill_mark4.png new file mode 100644 index 000000000..e135c69b6 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/kill_mark4.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/land/body.png b/src/main/resources/assets/superbwarfare/textures/screens/land/body.png new file mode 100644 index 000000000..137e01fba Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/land/body.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/land/lav_cannon_cross.png b/src/main/resources/assets/superbwarfare/textures/screens/land/lav_cannon_cross.png new file mode 100644 index 000000000..d63db5293 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/land/lav_cannon_cross.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/land/lav_gun_cross.png b/src/main/resources/assets/superbwarfare/textures/screens/land/lav_gun_cross.png new file mode 100644 index 000000000..983a1b082 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/land/lav_gun_cross.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/land/lav_missile_cross.png b/src/main/resources/assets/superbwarfare/textures/screens/land/lav_missile_cross.png new file mode 100644 index 000000000..3bc93a245 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/land/lav_missile_cross.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/land/line.png b/src/main/resources/assets/superbwarfare/textures/screens/land/line.png new file mode 100644 index 000000000..7e7569202 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/land/line.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/land/tank_cannon_cross_ap.png b/src/main/resources/assets/superbwarfare/textures/screens/land/tank_cannon_cross_ap.png new file mode 100644 index 000000000..5729e7005 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/land/tank_cannon_cross_ap.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/land/tank_cannon_cross_he.png b/src/main/resources/assets/superbwarfare/textures/screens/land/tank_cannon_cross_he.png new file mode 100644 index 000000000..5255499ba Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/land/tank_cannon_cross_he.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/land/tv_frame.png b/src/main/resources/assets/superbwarfare/textures/screens/land/tv_frame.png new file mode 100644 index 000000000..d54966bef Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/land/tv_frame.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/mortar_icon.png b/src/main/resources/assets/superbwarfare/textures/screens/mortar_icon.png new file mode 100644 index 000000000..a3a7ae219 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/mortar_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/passenger.png b/src/main/resources/assets/superbwarfare/textures/screens/passenger.png new file mode 100644 index 000000000..506085f27 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/passenger.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/point.png b/src/main/resources/assets/superbwarfare/textures/screens/point.png new file mode 100644 index 000000000..5864e64bf Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/point.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/red_triangle.png b/src/main/resources/assets/superbwarfare/textures/screens/red_triangle.png new file mode 100644 index 000000000..8ea63052e Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/red_triangle.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/rex.png b/src/main/resources/assets/superbwarfare/textures/screens/rex.png new file mode 100644 index 000000000..e3b97be4b Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/rex.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/rex_horizontal.png b/src/main/resources/assets/superbwarfare/textures/screens/rex_horizontal.png new file mode 100644 index 000000000..33e87def9 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/rex_horizontal.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/rex_vertical.png b/src/main/resources/assets/superbwarfare/textures/screens/rex_vertical.png new file mode 100644 index 000000000..37295d959 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/rex_vertical.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/roll_ind_white.png b/src/main/resources/assets/superbwarfare/textures/screens/roll_ind_white.png new file mode 100644 index 000000000..f380e1a9e Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/roll_ind_white.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/shotgun_hud.png b/src/main/resources/assets/superbwarfare/textures/screens/shotgun_hud.png new file mode 100644 index 000000000..1cc61f3f4 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/shotgun_hud.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/vehicle_health.png b/src/main/resources/assets/superbwarfare/textures/screens/vehicle_health.png new file mode 100644 index 000000000..50f8ed719 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/vehicle_health.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/ap_shell.png b/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/ap_shell.png new file mode 100644 index 000000000..4252faabf Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/ap_shell.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/cannon_20mm.png b/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/cannon_20mm.png new file mode 100644 index 000000000..a85cecba3 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/cannon_20mm.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/cannon_30mm.png b/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/cannon_30mm.png new file mode 100644 index 000000000..be74279d0 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/cannon_30mm.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/empty.png b/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/empty.png new file mode 100644 index 000000000..20a73c3b2 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/empty.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/frame_1.png b/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/frame_1.png new file mode 100644 index 000000000..6b2941bfc Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/frame_1.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/frame_2.png b/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/frame_2.png new file mode 100644 index 000000000..b15707090 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/frame_2.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/frame_3.png b/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/frame_3.png new file mode 100644 index 000000000..cde067957 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/frame_3.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/frame_4.png b/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/frame_4.png new file mode 100644 index 000000000..2c3d849e3 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/frame_4.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/frame_5.png b/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/frame_5.png new file mode 100644 index 000000000..25a2805d8 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/frame_5.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/frame_6.png b/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/frame_6.png new file mode 100644 index 000000000..cd8d73933 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/frame_6.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/frame_7.png b/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/frame_7.png new file mode 100644 index 000000000..324db292e Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/frame_7.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/frame_8.png b/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/frame_8.png new file mode 100644 index 000000000..ff9e51831 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/frame_8.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/frame_9.png b/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/frame_9.png new file mode 100644 index 000000000..14ab86424 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/frame_9.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/gun_12_7mm.png b/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/gun_12_7mm.png new file mode 100644 index 000000000..31e3513a1 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/gun_12_7mm.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/gun_7_62mm.png b/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/gun_7_62mm.png new file mode 100644 index 000000000..c2765b6f9 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/gun_7_62mm.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/he_shell.png b/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/he_shell.png new file mode 100644 index 000000000..397927a78 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/he_shell.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/laser.png b/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/laser.png new file mode 100644 index 000000000..9f267b39e Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/laser.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/missile_9m113.png b/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/missile_9m113.png new file mode 100644 index 000000000..251205d35 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/missile_9m113.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/number.png b/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/number.png new file mode 100644 index 000000000..3d52d4ee3 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/number.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/rocket_70mm.png b/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/rocket_70mm.png new file mode 100644 index 000000000..0958f8277 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/rocket_70mm.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/selected.png b/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/selected.png new file mode 100644 index 000000000..aae2ddd43 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/screens/vehicle_weapon/selected.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/slot/dog_tag_slot.png b/src/main/resources/assets/superbwarfare/textures/slot/dog_tag_slot.png new file mode 100644 index 000000000..ed65f427c Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/slot/dog_tag_slot.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/vehicle_icon/ah_6_icon.png b/src/main/resources/assets/superbwarfare/textures/vehicle_icon/ah_6_icon.png new file mode 100644 index 000000000..5648dbdb4 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/vehicle_icon/ah_6_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/vehicle_icon/annihilator_icon.png b/src/main/resources/assets/superbwarfare/textures/vehicle_icon/annihilator_icon.png new file mode 100644 index 000000000..f8e04e880 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/vehicle_icon/annihilator_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/vehicle_icon/bmp2_icon.png b/src/main/resources/assets/superbwarfare/textures/vehicle_icon/bmp2_icon.png new file mode 100644 index 000000000..f6b6abd07 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/vehicle_icon/bmp2_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/vehicle_icon/lav150_icon.png b/src/main/resources/assets/superbwarfare/textures/vehicle_icon/lav150_icon.png new file mode 100644 index 000000000..2345661d7 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/vehicle_icon/lav150_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/vehicle_icon/mle1934_icon.png b/src/main/resources/assets/superbwarfare/textures/vehicle_icon/mle1934_icon.png new file mode 100644 index 000000000..54b8af12c Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/vehicle_icon/mle1934_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/vehicle_icon/sherman_icon.png b/src/main/resources/assets/superbwarfare/textures/vehicle_icon/sherman_icon.png new file mode 100644 index 000000000..2995966fb Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/vehicle_icon/sherman_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/vehicle_icon/speedboat_icon.png b/src/main/resources/assets/superbwarfare/textures/vehicle_icon/speedboat_icon.png new file mode 100644 index 000000000..4eb8719c8 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/vehicle_icon/speedboat_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/vehicle_icon/tom_6_icon.png b/src/main/resources/assets/superbwarfare/textures/vehicle_icon/tom_6_icon.png new file mode 100644 index 000000000..01afbf077 Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/vehicle_icon/tom_6_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/vehicle_icon/wheel_chair_icon.png b/src/main/resources/assets/superbwarfare/textures/vehicle_icon/wheel_chair_icon.png new file mode 100644 index 000000000..9368aedcc Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/vehicle_icon/wheel_chair_icon.png differ diff --git a/src/main/resources/assets/superbwarfare/textures/vehicle_icon/yx_100_icon.png b/src/main/resources/assets/superbwarfare/textures/vehicle_icon/yx_100_icon.png new file mode 100644 index 000000000..979c34f2c Binary files /dev/null and b/src/main/resources/assets/superbwarfare/textures/vehicle_icon/yx_100_icon.png differ diff --git a/src/main/resources/data/superbwarfare/damage_type/air_crash.json b/src/main/resources/data/superbwarfare/damage_type/air_crash.json new file mode 100644 index 000000000..02284592e --- /dev/null +++ b/src/main/resources/data/superbwarfare/damage_type/air_crash.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0, + "message_id": "air_crash", + "scaling": "never" +} \ No newline at end of file diff --git a/src/main/resources/data/superbwarfare/damage_type/beast.json b/src/main/resources/data/superbwarfare/damage_type/beast.json new file mode 100644 index 000000000..685059bd2 --- /dev/null +++ b/src/main/resources/data/superbwarfare/damage_type/beast.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0, + "message_id": "beast", + "scaling": "never" +} \ No newline at end of file diff --git a/src/main/resources/data/superbwarfare/damage_type/burn.json b/src/main/resources/data/superbwarfare/damage_type/burn.json new file mode 100644 index 000000000..6cd200d08 --- /dev/null +++ b/src/main/resources/data/superbwarfare/damage_type/burn.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0, + "message_id": "burn", + "scaling": "never" +} \ No newline at end of file diff --git a/src/main/resources/data/superbwarfare/damage_type/cannon_fire.json b/src/main/resources/data/superbwarfare/damage_type/cannon_fire.json new file mode 100644 index 000000000..2b9df6bf6 --- /dev/null +++ b/src/main/resources/data/superbwarfare/damage_type/cannon_fire.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0, + "message_id": "cannon_fire", + "scaling": "never" +} \ No newline at end of file diff --git a/src/main/resources/data/superbwarfare/damage_type/custom_explosion.json b/src/main/resources/data/superbwarfare/damage_type/custom_explosion.json new file mode 100644 index 000000000..c872cdb8b --- /dev/null +++ b/src/main/resources/data/superbwarfare/damage_type/custom_explosion.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.1, + "message_id": "projectile_boom", + "scaling": "never" +} \ No newline at end of file diff --git a/src/main/resources/data/superbwarfare/damage_type/drone_hit.json b/src/main/resources/data/superbwarfare/damage_type/drone_hit.json new file mode 100644 index 000000000..5a7afc08c --- /dev/null +++ b/src/main/resources/data/superbwarfare/damage_type/drone_hit.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0, + "message_id": "drone_hit", + "scaling": "never" +} \ No newline at end of file diff --git a/src/main/resources/data/superbwarfare/damage_type/gunfire.json b/src/main/resources/data/superbwarfare/damage_type/gunfire.json new file mode 100644 index 000000000..0e37796da --- /dev/null +++ b/src/main/resources/data/superbwarfare/damage_type/gunfire.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0, + "message_id": "gunfire", + "scaling": "never" +} \ No newline at end of file diff --git a/src/main/resources/data/superbwarfare/damage_type/gunfire_absolute.json b/src/main/resources/data/superbwarfare/damage_type/gunfire_absolute.json new file mode 100644 index 000000000..0e37796da --- /dev/null +++ b/src/main/resources/data/superbwarfare/damage_type/gunfire_absolute.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0, + "message_id": "gunfire", + "scaling": "never" +} \ No newline at end of file diff --git a/src/main/resources/data/superbwarfare/damage_type/gunfire_headshot.json b/src/main/resources/data/superbwarfare/damage_type/gunfire_headshot.json new file mode 100644 index 000000000..fca347410 --- /dev/null +++ b/src/main/resources/data/superbwarfare/damage_type/gunfire_headshot.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0, + "message_id": "gunfire_headshot", + "scaling": "never" +} \ No newline at end of file diff --git a/src/main/resources/data/superbwarfare/damage_type/gunfire_headshot_absolute.json b/src/main/resources/data/superbwarfare/damage_type/gunfire_headshot_absolute.json new file mode 100644 index 000000000..fca347410 --- /dev/null +++ b/src/main/resources/data/superbwarfare/damage_type/gunfire_headshot_absolute.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0, + "message_id": "gunfire_headshot", + "scaling": "never" +} \ No newline at end of file diff --git a/src/main/resources/data/superbwarfare/damage_type/laser.json b/src/main/resources/data/superbwarfare/damage_type/laser.json new file mode 100644 index 000000000..27bf8b5cb --- /dev/null +++ b/src/main/resources/data/superbwarfare/damage_type/laser.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0, + "message_id": "laser", + "scaling": "never" +} \ No newline at end of file diff --git a/src/main/resources/data/superbwarfare/damage_type/laser_headshot.json b/src/main/resources/data/superbwarfare/damage_type/laser_headshot.json new file mode 100644 index 000000000..e833c0419 --- /dev/null +++ b/src/main/resources/data/superbwarfare/damage_type/laser_headshot.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0, + "message_id": "laser_headshot", + "scaling": "never" +} \ No newline at end of file diff --git a/src/main/resources/data/superbwarfare/damage_type/laser_static.json b/src/main/resources/data/superbwarfare/damage_type/laser_static.json new file mode 100644 index 000000000..27bf8b5cb --- /dev/null +++ b/src/main/resources/data/superbwarfare/damage_type/laser_static.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0, + "message_id": "laser", + "scaling": "never" +} \ No newline at end of file diff --git a/src/main/resources/data/superbwarfare/damage_type/lunge_mine.json b/src/main/resources/data/superbwarfare/damage_type/lunge_mine.json new file mode 100644 index 000000000..ccc3868d0 --- /dev/null +++ b/src/main/resources/data/superbwarfare/damage_type/lunge_mine.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0, + "message_id": "lunge_mine", + "scaling": "never" +} \ No newline at end of file diff --git a/src/main/resources/data/superbwarfare/damage_type/mine.json b/src/main/resources/data/superbwarfare/damage_type/mine.json new file mode 100644 index 000000000..c3377f44b --- /dev/null +++ b/src/main/resources/data/superbwarfare/damage_type/mine.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0, + "message_id": "mine", + "scaling": "never" +} \ No newline at end of file diff --git a/src/main/resources/data/superbwarfare/damage_type/projectile_boom.json b/src/main/resources/data/superbwarfare/damage_type/projectile_boom.json new file mode 100644 index 000000000..c872cdb8b --- /dev/null +++ b/src/main/resources/data/superbwarfare/damage_type/projectile_boom.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.1, + "message_id": "projectile_boom", + "scaling": "never" +} \ No newline at end of file diff --git a/src/main/resources/data/superbwarfare/damage_type/shock.json b/src/main/resources/data/superbwarfare/damage_type/shock.json new file mode 100644 index 000000000..c08be9231 --- /dev/null +++ b/src/main/resources/data/superbwarfare/damage_type/shock.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0, + "message_id": "shock", + "scaling": "never" +} \ No newline at end of file diff --git a/src/main/resources/data/superbwarfare/damage_type/vehicle_explosion.json b/src/main/resources/data/superbwarfare/damage_type/vehicle_explosion.json new file mode 100644 index 000000000..fe579be8b --- /dev/null +++ b/src/main/resources/data/superbwarfare/damage_type/vehicle_explosion.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0, + "message_id": "vehicle_explosion", + "scaling": "never" +} \ No newline at end of file diff --git a/src/main/resources/data/superbwarfare/damage_type/vehicle_strike.json b/src/main/resources/data/superbwarfare/damage_type/vehicle_strike.json new file mode 100644 index 000000000..cc82344de --- /dev/null +++ b/src/main/resources/data/superbwarfare/damage_type/vehicle_strike.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0, + "message_id": "vehicle_strike", + "scaling": "never" +} \ No newline at end of file