Beginning of some parts

This commit is contained in:
Chris Adderley
2018-11-24 14:28:21 -08:00
parent 8f8b5299eb
commit 0e9dd4d093
10 changed files with 1083 additions and 0 deletions

View File

@ -3,7 +3,23 @@
// - Z-200 Rechargeable Battery Bank (batteryBankMini)
// - Z-1K Rechargeable Battery Bank (batteryBank)
// - Z-4K Rechargeable Battery Bank (batteryBankLarge)
// - Z-100 Rechargeable Battery Pack (batteryPack)
// - Z-400 Rechargeable Battery (ksp_r_largeBatteryPack)
// 0.625m battery bank
@PART[batteryBankMini]
{
@author = Chris Adderley (Nertea)
!mesh = DELETE
!MODEL,* {}
MODEL
{
model = ReStock/Assets/Electrical/restock-battery-0625-1
position = 0.0, 0.0, 0.0
scale = 1,1,1
rotation = 0, 0, 0
}
}
// 1.25m battery bank
@PART[batteryBank]
{
@ -18,3 +34,45 @@
rotation = 0, 0, 0
}
}
// 2.5m battery bank
@PART[batteryBankLarge]
{
@author = Chris Adderley (Nertea)
!mesh = DELETE
!MODEL,* {}
MODEL
{
model = ReStock/Assets/Electrical/restock-battery-25-1
position = 0.0, 0.0, 0.0
scale = 1,1,1
rotation = 0, 0, 0
}
}
// Small radial battery
@PART[batteryPack]
{
@author = Chris Adderley (Nertea)
!mesh = DELETE
!MODEL,* {}
MODEL
{
model = ReStock/Assets/Electrical/restock-battery-radial-small-1
position = 0.0, 0.0, 0.0
scale = 1,1,1
rotation = 0, 0, 0
}
}
// Large radial battery
@PART[ksp_r_largeBatteryPack]
{
@author = Chris Adderley (Nertea)
!mesh = DELETE
!MODEL,* {}
MODEL
{
model = ReStock/Assets/Electrical/restock-battery-radial-med-1
position = 0.0, 0.0, 0.0
scale = 1,1,1
rotation = 0, 0, 0
}
}