├── content ├── items │ ├── compact-dagger.hjson │ └── compact-wraith.hjson └── blocks │ ├── deployer-dagger.hjson │ ├── deployer-wraith.hjson │ ├── compactor-dagger.hjson │ └── compactor-wraith.hjson ├── mod.json └── README.md /content/items/compact-dagger.hjson: -------------------------------------------------------------------------------- 1 | type: Item 2 | name: Compact Dagger 3 | description: A compact, and deployable dagger. 4 | color: 000000 5 | type: resource 6 | explosiveness: 0.2 7 | flammability: 0.5 8 | radioactivity: 0 -------------------------------------------------------------------------------- /content/items/compact-wraith.hjson: -------------------------------------------------------------------------------- 1 | type: Item 2 | name: Compact Wraith 3 | description: A compact, and deployable wraith. 4 | color: ffffff 5 | type: resource 6 | explosiveness: 0.2 7 | flammability: 0.5 8 | radioactivity: 0 -------------------------------------------------------------------------------- /mod.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Deployer", 3 | "displayName": "Deployer", 4 | "author": "[#b][USMP] [royal]mac[white]down[scarlet]two", 5 | "description": "Adds factories that makes compact units that can traverse as an conveyor item, and deploy them in deployers.", 6 | "version": 1.0, 7 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Deployer 2 | Adds factories that makes compact units that can traverse as an conveyor item, and deploy them in deployers. 3 | 4 | **Note**: This is not taken to be as an actual mod that can be used affect gameplay, as this mod is only made for testing purposes. You can use this in your mod without any credit. 5 | 6 | (no sprites) 7 | -------------------------------------------------------------------------------- /content/blocks/deployer-dagger.hjson: -------------------------------------------------------------------------------- 1 | type: UnitFactory 2 | name: Deployer (Dagger) 3 | description: Deploys units specifically. 4 | size: 2 5 | unitType: dagger 6 | maxSpawn: 16 7 | produceTime: 60 8 | itemCapacity: 12 9 | consumes: { 10 | power: 0.5 11 | items: { items: [ compact-dagger/1 ] } 12 | } 13 | category: units 14 | requirements: [ 15 | lead/28 16 | silicon/23 17 | ] -------------------------------------------------------------------------------- /content/blocks/deployer-wraith.hjson: -------------------------------------------------------------------------------- 1 | type: UnitFactory 2 | name: Deployer (Wraith) 3 | description: Deploys units specifically. 4 | size: 2 5 | unitType: wraith 6 | maxSpawn: 16 7 | produceTime: 60 8 | itemCapacity: 12 9 | consumes: { 10 | power: 0.5 11 | items: { items: [ compact-wraith/1 ] } 12 | } 13 | category: units 14 | requirements: [ 15 | titanium/15 16 | lead/20 17 | silicon/23 18 | ] -------------------------------------------------------------------------------- /content/blocks/compactor-dagger.hjson: -------------------------------------------------------------------------------- 1 | type: GenericCrafter 2 | name: Compactor (Dagger) 3 | description: Makes compact units. 4 | size: 2 5 | itemCapacity: 12 6 | outputItem: { 7 | item: compact-dagger 8 | amount: 1 9 | } 10 | consumes: { 11 | power: 1.0 12 | items: { items: [ silicon/6 ] } 13 | } 14 | craftTime: 72 15 | category: crafting 16 | requirements: [ 17 | lead/220 18 | silicon/140 19 | ] -------------------------------------------------------------------------------- /content/blocks/compactor-wraith.hjson: -------------------------------------------------------------------------------- 1 | type: GenericCrafter 2 | name: Compactor (Wraith) 3 | description: Makes compact units. 4 | size: 2 5 | itemCapacity: 12 6 | outputItem: { 7 | item: compact-wraith 8 | amount: 1 9 | } 10 | consumes: { 11 | power: 1.0 12 | items: { items: [ silicon/10, titanium/5 ] } 13 | } 14 | craftTime: 60 15 | category: crafting 16 | requirements: [ 17 | titanium/90 18 | lead/120 19 | silicon/135 20 | ] --------------------------------------------------------------------------------