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

Fixed NBT for Copter/Jetpack #1282

Merged
merged 1 commit into from
Apr 11, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 36 additions & 2 deletions config/adventurebackpack.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ gameplay {

# Enable/Disable hose drink mode [default: true]
B:"Enable Hose Drink"=true
B:"Enable Spawn at Campfire"=false

# Enable/Disable tool cycling [default: true]
B:"Enable Tools Cycling"=true
Expand All @@ -26,10 +25,16 @@ gameplay {


graphics {
# Enable durability bar showing fullness of backpacks inventory [default: false]
B:"Enable Fullness Bar"=false

# Enable durability bar showing temperature of jetpack [default: false]
B:"Enable Temperature Bar"=false

# Enable rendering for tools in the backpack tool slots. May cause visual glitches with Gregtech tools [default: true]
B:"Enable Tools Render"=false

# Enable tooltips? [default: true]
# Enable tooltips? Client side [default: true]
B:"Enable Tooltips"=true

# Show hovering text on fluid tanks? [default: false]
Expand Down Expand Up @@ -160,6 +165,35 @@ items {
I:"Rainbow Speed"=1
}

fuel {
# BioEthanol consumption rate [range: 0.05 ~ 20.0, default: 1.5]
S:BioEthanol=1.5

# BioFuel consumption rate [range: 0.05 ~ 20.0, default: 1.0]
S:BioFuel=1.0

# Creosote consumption rate [range: 0.05 ~ 20.0, default: 7.0]
S:Creosote=7.0

# Fuel / rocket fuel consumption rate [range: 0.05 ~ 20.0, default: 0.8]
S:Fuel=0.8

# Heavy Fuel consumption rate [range: 0.05 ~ 20.0, default: 1.3]
S:FuelHeavy=1.3

# Light Fuel consumption rate [range: 0.05 ~ 20.0, default: 1.0]
S:FuelLight=1.0

# Nitro Fuel consumption rate [range: 0.05 ~ 20.0, default: 0.4]
S:FuelNitro=0.4

# Lava consumption rate [range: 0.05 ~ 20.0, default: 5.0]
S:Lava=5.0

# Oil consumption rate [range: 0.05 ~ 20.0, default: 3.0]
S:Oil=3.0
}

}


Expand Down
8 changes: 4 additions & 4 deletions scripts/Advanced-Backpacks.zs
Original file line number Diff line number Diff line change
Expand Up @@ -165,12 +165,12 @@ recipes.addShaped(<adventurebackpack:backpackComponent:6>, [
[<IC2:itemRecipePart:12>, <ore:craftingToolScrewdriver>, <IC2:itemRecipePart:12>]]);

// --- Copter Pack
recipes.addShaped(<adventurebackpack:copterPack>, [
recipes.addShaped(<adventurebackpack:copterPack>.withTag({fuelTank: {Empty: ""}}), [
[<ore:screwDiamond>, <adventurebackpack:backpackComponent:6>, <ore:screwDiamond>],
[<adventurebackpack:backpackComponent:2>, <gregtech:gt.metaitem.01:32601>, <ore:pipeTinySteel>],
[<ore:pipeTinySteel>, <adventurebackpack:backpackComponent:5>, <ore:pipeTinySteel>]]);
// -
recipes.addShaped(<adventurebackpack:copterPack>, [
recipes.addShaped(<adventurebackpack:copterPack>.withTag({fuelTank: {Empty: ""}}), [
[<ore:screwDiamond>, <adventurebackpack:backpackComponent:6>, <ore:screwDiamond>],
[<BuildCraft|Factory:tankBlock>, <gregtech:gt.metaitem.01:32601>, <ore:pipeTinySteel>],
[<ore:pipeTinySteel>, <adventurebackpack:backpackComponent:5>, <ore:pipeTinySteel>]]);
Expand Down Expand Up @@ -218,12 +218,12 @@ recipes.addShaped(<adventurebackpack:clockworkCrossbow>, [
[<ore:screwSteel>, <ore:craftingToolScrewdriver>, <ore:screwSteel>]]);

// --- Coal Jetpack
recipes.addShaped(<adventurebackpack:coalJetpack>, [
recipes.addShaped(<adventurebackpack:coalJetpack>.withTag({jetpackData: {waterTank: {Empty: ""}}}), [
[<ore:plateAluminium>, <ore:screwSteel>, <ore:plateAluminium>],
[<adventurebackpack:backpackComponent:2>, <gregtech:gt.metaitem.01:32601>, <adventurebackpack:backpackComponent:2>],
[<ore:pipeTinySteel>, <Railcraft:machine.beta:5>, <ore:pipeTinySteel>]]);
// -
recipes.addShaped(<adventurebackpack:coalJetpack>, [
recipes.addShaped(<adventurebackpack:coalJetpack>.withTag({jetpackData: {waterTank: {Empty: ""}}}), [
[<ore:plateAluminium>, <ore:screwSteel>, <ore:plateAluminium>],
[<BuildCraft|Factory:tankBlock>, <gregtech:gt.metaitem.01:32601>, <BuildCraft|Factory:tankBlock>],
[<ore:pipeTinySteel>, <Railcraft:machine.beta:5>, <ore:pipeTinySteel>]]);
Expand Down