Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New "Super" Packed Wooden Crate Model #18

Open
8 tasks
Nekuromu opened this issue Feb 16, 2024 · 2 comments
Open
8 tasks

New "Super" Packed Wooden Crate Model #18

Nekuromu opened this issue Feb 16, 2024 · 2 comments
Assignees
Labels
enhancement New feature or request

Comments

@Nekuromu
Copy link
Collaborator

image
image

  • research using Zomboid Crate Tile for new 3D model
  • build 3D model for crate
  • new directory for "superpacked" item textures
  • research into blender render/capturing for textures
  • texture each items superpacked crate
  • add model code
  • review and create recipes and figure out weights and such
  • commit to main
@Nekuromu Nekuromu added the enhancement New feature or request label Feb 16, 2024
@Nekuromu Nekuromu self-assigned this Feb 16, 2024
@Goldbar97
Copy link
Owner

Goldbar97 commented Feb 17, 2024

I'm thinking of new recipe to make wood box with one or two planks. And let them combine items with it to pack.
Such as one wood box for 50 pack and two wood boxes for 100 pack

@Goldbar97
Copy link
Owner

module Packing
{
	imports
	{
		Base,
	}
	
	item WoodContainer
	{
		Weight			= 1.0,
		Type			= Normal,
		DisplayName		= Wood Container,
		DisplayCategory = Material,
		Icon			= PWoodContainer,
		WorldStaticModel= WIP,
	}

	recipe Make Wood Container
	{
		Plank=1,
		keep [Recipe.GetItemTypes.Saw],
		keep [Recipe.GetItemTypes.Hammer],
		
		Result:WoodContainer,
		OnTest:Recipe.OnTest.IsFavorite,
		Time:80.0,
		Category:Storage,
	}

	model WIP
	{
		mesh = WorldItems/wip_model,
		texture = WorldItems/WIP_Tex,
		scale = 1.0,
	}
}

And this is an example of recipe on MetalBar

recipe Pack 50
	{
		destroy MetalBar=50,
		WoodContainer=1,
		
		CanBeDoneFromFloor:true,
		Result: 50pkWCMetalBar,
		OnTest:Recipe.OnTest.IsFavorite,
		Time: 310.0,
		Category:Storage,
	}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants