Base probes

This commit is contained in:
Chris Adderley 2018-12-09 22:30:46 -08:00
parent 41420deff7
commit ff3be8d01e
13 changed files with 110 additions and 3 deletions

View File

@ -32,5 +32,7 @@ Localization
#LOC_Restock_variant-linear-rcs-pod = Podded
#LOC_Restock_variant-linear-rcs-bare = Bare
#LOC_Restock_variant-stayputnik-pod = Mounted
#LOC_Restock_variant-stayputnik-bare = Unmounted
}
}

View File

@ -1,3 +0,0 @@
// Patches applying art changes to drone parts
// Contents:
// -

View File

@ -0,0 +1,108 @@
// Patches applying art changes to probe parts
// Contents:
// - Probodobodyne HECS (probeCoreHex_v2)
// - Probodobodyne OKTO (probeCoreOcto_v2)
// - Probodobodyne OKTO2 (probeCoreOcto2_v2)
// - Probodobodyne Stayputnik (probeCoreSphere_v2)
// - Probodobodyne QBE (probeCoreCube)
// - Probodobodyne HECS2 (HECS2_ProbeCore)
// QUBE
@PART[probeCoreCube]
{
@author = Chris Adderley (Nertea)
!mesh = DELETE
!MODEL {}
MODEL {
model = ReStock/Assets/Command/restock-probe-qube-1
}
}
// Stayputnik
@PART[probeCoreSphere_v2]
{
@author = Chris Adderley (Nertea)
//!mesh = DELETE
//!MODEL {}
MODEL {
model = ReStock/Assets/Command/restock-probe-sphere-1
}
MODULE
{
name = ModulePartVariants
baseVariant = Base
VARIANT
{
name = Base
displayName = #LOC_Restock_variant-stayputnik-pod
primaryColor = #999999
secondaryColor = #555555
GAMEOBJECTS
{
SPHR = true
SPHR_BARE = false
}
}
VARIANT
{
name = Bare
displayName = #LOC_Restock_variant-stayputnik-bare
primaryColor = #999999
secondaryColor = #999999
GAMEOBJECTS
{
SPHR = false
SPHR_BARE = true
}
}
}
}
// HECS
@PART[probeCoreHex_v2]
{
@author = Chris Adderley (Nertea)
!mesh = DELETE
!MODEL {}
MODEL {
model = ReStock/Assets/Command/restock-probe-hecs-1
}
}
// OKTO
@PART[probeCoreOcto_v2]
{
@author = Chris Adderley (Nertea)
!mesh = DELETE
!MODEL {}
MODEL {
model = ReStock/Assets/Command/restock-probe-okto-1
}
}
// OKTO2
@PART[probeCoreOcto2_v2]
{
@author = Chris Adderley (Nertea)
!mesh = DELETE
!MODEL {}
MODEL {
model = ReStock/Assets/Command/restock-probe-okto2-1
}
}
// HECS2
@PART[HECS2_ProbeCore]
{
@author = Chris Adderley (Nertea)
!mesh = DELETE
!MODEL {}
MODEL {
model = ReStock/Assets/Command/restock-probe-hecs2-1
}
}