mirror of
https://github.com/PorktoberRevolution/ReStocked
synced 2024-09-01 17:34:42 +00:00
79 lines
1.5 KiB
INI
79 lines
1.5 KiB
INI
// Patches applying art changes to batteries
|
|
// Contents:
|
|
// - 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]
|
|
{
|
|
@author = Chris Adderley (Nertea)
|
|
!mesh = DELETE
|
|
!MODEL,* {}
|
|
MODEL
|
|
{
|
|
model = ReStock/Assets/Electrical/restock-battery-125-1
|
|
position = 0.0, 0.0, 0.0
|
|
scale = 1,1,1
|
|
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
|
|
}
|
|
}
|