├── Rising Stars ├── .steam ├── scripts │ ├── server │ │ └── empire_ai │ │ │ └── weasel │ │ │ ├── FTL │ │ │ └── Flux.as │ │ │ └── race │ │ │ ├── Berserkers.as │ │ │ ├── Pacifists.as │ │ │ ├── Progenitors.as │ │ │ └── Researchers.as │ ├── menu │ │ ├── campaign.as │ │ └── ABEM_version.as │ ├── shadow │ │ └── objects │ │ │ └── Macronebula.as │ ├── definitions │ │ └── ringworlders.as │ └── shared │ │ └── include │ │ └── map.as ├── data │ ├── research │ │ ├── heralds_dlc │ │ │ └── upgrades │ │ │ │ └── FlagHealth.txt │ │ └── rising_stars │ │ │ ├── Science.txt │ │ │ ├── upgrades │ │ │ ├── minor │ │ │ │ ├── Energy.txt │ │ │ │ ├── Defense.txt │ │ │ │ ├── Tactics.txt │ │ │ │ ├── Population.txt │ │ │ │ ├── FTL.txt │ │ │ │ └── FTLStorage.txt │ │ │ └── major │ │ │ │ ├── Wealth.txt │ │ │ │ ├── Abundance.txt │ │ │ │ ├── Prosperity.txt │ │ │ │ ├── Obedience.txt │ │ │ │ ├── EnergyStorage.txt │ │ │ │ ├── EmergencyShields.txt │ │ │ │ ├── Laboratories.txt │ │ │ │ ├── RailgunKnockback.txt │ │ │ │ ├── SupportSize.txt │ │ │ │ ├── FTLJammerCombat.txt │ │ │ │ ├── FTLCost.txt │ │ │ │ ├── BeamCycling.txt │ │ │ │ ├── DroneCount.txt │ │ │ │ ├── StationMaintenance.txt │ │ │ │ ├── PowerGeneration.txt │ │ │ │ ├── GravitonChanneling.txt │ │ │ │ ├── BuildCost.txt │ │ │ │ └── MissileRange.txt │ │ │ ├── hurdles │ │ │ ├── FTLHurdle.txt │ │ │ └── InfluenceHurdle.txt │ │ │ ├── progenitor │ │ │ ├── Science.txt │ │ │ ├── Armor.txt │ │ │ ├── PiercingDrones.txt │ │ │ ├── ShipComputer.txt │ │ │ └── SolarOrbital.txt │ │ │ ├── racial │ │ │ └── Technicists.txt │ │ │ ├── unlocks │ │ │ ├── ftl │ │ │ │ ├── Fling.txt │ │ │ │ ├── Gates.txt │ │ │ │ ├── Slipstream.txt │ │ │ │ ├── Hyperdrive.txt │ │ │ │ └── Jumpdrive.txt │ │ │ ├── subsystems │ │ │ │ ├── weapons │ │ │ │ │ ├── VoidRay.txt │ │ │ │ │ ├── MassDisruptor.txt │ │ │ │ │ ├── Warhead.txt │ │ │ │ │ ├── HyperLaser.txt │ │ │ │ │ ├── Disruptor.txt │ │ │ │ │ ├── MuonCannon.txt │ │ │ │ │ ├── FlakBattery.txt │ │ │ │ │ ├── PulseBolt.txt │ │ │ │ │ ├── DroneLauncher.txt │ │ │ │ │ ├── ParticleLance.txt │ │ │ │ │ └── ShockMissiles.txt │ │ │ │ ├── hulls │ │ │ │ │ ├── MinerHull.txt │ │ │ │ │ ├── TitanHull.txt │ │ │ │ │ ├── JuggernautHull.txt │ │ │ │ │ ├── CarrierHull.txt │ │ │ │ │ └── DestroyerHull.txt │ │ │ │ ├── equipment │ │ │ │ │ ├── combat │ │ │ │ │ │ ├── SkipDrive.txt │ │ │ │ │ │ ├── BoardingParty.txt │ │ │ │ │ │ ├── GravitonCondenser.txt │ │ │ │ │ │ ├── IonCannon.txt │ │ │ │ │ │ ├── SelfDestruct.txt │ │ │ │ │ │ └── EmergencySupplies.txt │ │ │ │ │ └── support │ │ │ │ │ │ ├── OreProcessor.txt │ │ │ │ │ │ ├── TroopPods.txt │ │ │ │ │ │ ├── CloakPlating.txt │ │ │ │ │ │ ├── CloakingDevice.txt │ │ │ │ │ │ ├── ConstructionBay.txt │ │ │ │ │ │ └── Simulator.txt │ │ │ │ ├── armor │ │ │ │ │ ├── CompositeArmor.txt │ │ │ │ │ ├── QuantumArmor.txt │ │ │ │ │ ├── NeutronArmor.txt │ │ │ │ │ ├── LiquidArmor.txt │ │ │ │ │ ├── NilingArmor.txt │ │ │ │ │ └── NanoMesh.txt │ │ │ │ ├── shields │ │ │ │ │ ├── Forcefield.txt │ │ │ │ │ ├── ShieldHardener.txt │ │ │ │ │ └── DeflectorArray.txt │ │ │ │ ├── control │ │ │ │ │ ├── ZeroPoint.txt │ │ │ │ │ ├── AntimatterGen.txt │ │ │ │ │ ├── ShipComputer.txt │ │ │ │ │ ├── SolarPanel.txt │ │ │ │ │ └── ShieldedAntimatter.txt │ │ │ │ └── propulsion │ │ │ │ │ ├── GravityEngine.txt │ │ │ │ │ ├── Ramjet.txt │ │ │ │ │ └── BoosterEngine.txt │ │ │ ├── megaconstructions │ │ │ │ ├── StarForge.txt │ │ │ │ ├── Ringworld.txt │ │ │ │ ├── VacuumTelescope.txt │ │ │ │ └── ArtificialPlanetoid.txt │ │ │ ├── buildings │ │ │ │ └── PlanetaryEngine.txt │ │ │ ├── modifiers │ │ │ │ ├── QuantumBattery.txt │ │ │ │ ├── Bulkhead.txt │ │ │ │ ├── SpinalMount.txt │ │ │ │ ├── TargetSensor.txt │ │ │ │ └── QuantumCompressor.txt │ │ │ └── satellites │ │ │ │ ├── RingHabitat.txt │ │ │ │ ├── SolarSatellite.txt │ │ │ │ └── DefenseSatellite.txt │ │ │ └── secret │ │ │ ├── Spire.txt │ │ │ ├── FlareBomb.txt │ │ │ ├── ArtificialMoon.txt │ │ │ ├── ColossusHull.txt │ │ │ └── HyperfieldSequencing.txt │ ├── subsystems │ │ ├── supports │ │ │ ├── weapons │ │ │ │ └── MuonCannon.txt │ │ │ └── special │ │ │ │ ├── SupportBulkhead.txt │ │ │ │ └── SupportTargetingSensor.txt │ │ ├── more_thrust.txt │ │ ├── faster_turning.txt │ │ ├── HexLimitFactor.txt │ │ ├── armor_base.txt │ │ └── flagships │ │ │ ├── hulls │ │ │ └── GuardianHull.txt │ │ │ └── modifiers │ │ │ ├── Bulkhead.txt │ │ │ ├── TargetingSensor.txt │ │ │ └── ProjectileImpulse.txt │ ├── statuses │ │ ├── IsInvader.txt │ │ ├── special │ │ │ ├── NoSurfaceRegen.txt │ │ │ ├── ExplicitlyTractorable.txt │ │ │ ├── MorphedUnobtanium.txt │ │ │ ├── ArmorPlating.txt │ │ │ ├── Untractorable.txt │ │ │ ├── FiringRailgunsCloseIn.txt │ │ │ ├── JuggerRamOnProgess.txt │ │ │ ├── ShieldArray.txt │ │ │ └── SingularityDoT.txt │ │ ├── buildings │ │ │ └── MoonBase.txt │ │ ├── traits │ │ │ ├── SequesteredSociety.txt │ │ │ ├── FleetLinked.txt │ │ │ ├── ancient │ │ │ │ ├── AncientFabricator.txt │ │ │ │ ├── AncientFoundry.txt │ │ │ │ ├── ToggleOre.txt │ │ │ │ ├── AncientReplicator.txt │ │ │ │ ├── ToggleBaseMaterials.txt │ │ │ │ ├── AncientCompressor.txt │ │ │ │ ├── AncientDepot.txt │ │ │ │ ├── AncientLab.txt │ │ │ │ ├── AncientProduce.txt │ │ │ │ ├── AncientCore.txt │ │ │ │ ├── AncientDeveloper.txt │ │ │ │ └── AncientReinforcer.txt │ │ │ ├── RRInitialRingworld.txt │ │ │ └── NylliNutrients.txt │ │ ├── DerelictShip.txt │ │ ├── equipment │ │ │ ├── GravitonEngineDrag.txt │ │ │ ├── PowerCell.txt │ │ │ ├── SkipDrive.txt │ │ │ └── IonCannon.txt │ │ ├── conditions │ │ │ ├── Terraformed.txt │ │ │ ├── Damaged.txt │ │ │ └── AncientRuins.txt │ │ ├── IsGuardian.txt │ │ ├── Stealthed.txt │ │ ├── orbitals │ │ │ └── FTLJammer.txt │ │ ├── remnants │ │ │ └── StrenghtIncrease.txt │ │ ├── PsionicProtected.txt │ │ ├── weapons │ │ │ └── VoidRay.txt │ │ ├── space │ │ │ ├── EmptySpace.txt │ │ │ ├── Type1Nebula.txt │ │ │ ├── EconomicNebula.txt │ │ │ ├── MetaphasicNebula.txt │ │ │ ├── MetreonNebula.txt │ │ │ ├── MutaraNebula.txt │ │ │ ├── RadioactiveNebula.txt │ │ │ ├── TachyonNebula.txt │ │ │ └── CeruleanNebula.txt │ │ ├── subsystems │ │ │ ├── ShadowportPacked.txt │ │ │ ├── PrototypeFTL.txt │ │ │ ├── GatePacked.txt │ │ │ ├── Shadowport.txt │ │ │ ├── ProgenitorComputer.txt │ │ │ ├── GateModule.txt │ │ │ ├── GateUnpacked.txt │ │ │ ├── GateSequenced.txt │ │ │ └── ShadowportUnpacked.txt │ │ ├── FastRecharge.txt │ │ ├── Blockaded.txt │ │ ├── DefenseSatellite.txt │ │ ├── StellarShield.txt │ │ └── AdaptedFastRecharge.txt │ ├── effects │ │ ├── NoRepairHexes.txt │ │ ├── ABEMControlCore.txt │ │ ├── NoRepairNonCore.txt │ │ ├── DefensiveMatrixDamage.txt │ │ ├── CapDamageExceptEnergy.txt │ │ ├── GenericDamage.txt │ │ ├── AreaDamage.txt │ │ ├── ReduceDamagePercentile.txt │ │ ├── ChannelDamage.txt │ │ ├── QuantumCannon.txt │ │ ├── VoidRay.txt │ │ ├── MatterDisruptor.txt │ │ ├── ABEMShieldDamage.txt │ │ └── Forcefield.txt │ ├── images │ │ ├── tax1.png │ │ ├── tax2.png │ │ ├── Cloack.png │ │ ├── city1.png │ │ ├── city2.png │ │ ├── city3.png │ │ ├── Orbital.png │ │ ├── techIcons.png │ │ ├── Adamantium.png │ │ ├── greenscreen.png │ │ ├── status │ │ │ ├── GDF.png │ │ │ ├── exhaust.png │ │ │ ├── LaserTurret.png │ │ │ ├── RailTurret.png │ │ │ ├── RammingSpeed.png │ │ │ └── MissileTurret.png │ │ ├── buildings │ │ │ ├── Dish.png │ │ │ ├── Factory.png │ │ │ ├── Lvl1Budget.png │ │ │ ├── Lvl1Defense.png │ │ │ ├── Lvl2Budget.png │ │ │ ├── Lvl2Defense.png │ │ │ ├── tile_border.png │ │ │ ├── Lvl1Research.png │ │ │ ├── Lvl2Research.png │ │ │ ├── portal_stabilizer.png │ │ │ └── ancient_strip_transmuter.png │ │ ├── sprites │ │ │ ├── beam1.png │ │ │ ├── beam2.png │ │ │ ├── beam3.png │ │ │ ├── beam4.png │ │ │ ├── beam5.png │ │ │ ├── beam6.png │ │ │ ├── drone.png │ │ │ ├── railgun.png │ │ │ ├── railgunV.png │ │ │ ├── drone_trail.png │ │ │ ├── plasma_bolt.png │ │ │ ├── ancientdrone.png │ │ │ ├── chaingun_salvo.png │ │ │ ├── chaingun_salvo2.png │ │ │ ├── particle_lance.png │ │ │ └── subspace_shred.png │ │ ├── subsystems │ │ │ ├── amgen.png │ │ │ ├── cloak.png │ │ │ ├── hulls.png │ │ │ ├── tax1.png │ │ │ ├── Battery.png │ │ │ ├── Coolant.png │ │ │ ├── SAmmater.png │ │ │ ├── Sensors.png │ │ │ ├── Sensors2.png │ │ │ ├── amgen2.png │ │ │ ├── arcology.png │ │ │ ├── armor1.png │ │ │ ├── armor2.png │ │ │ ├── armor3.png │ │ │ ├── armor4.png │ │ │ ├── armor5.png │ │ │ ├── armor6.png │ │ │ ├── armor7.png │ │ │ ├── buster.png │ │ │ ├── computer.png │ │ │ ├── laser6.png │ │ │ ├── shuttle.png │ │ │ ├── slaser.png │ │ │ ├── stargate.png │ │ │ ├── SolarCell.png │ │ │ ├── armor_nano.png │ │ │ ├── forcefield.png │ │ │ ├── fusiongen.png │ │ │ ├── mass_mount.png │ │ │ ├── newsensors.png │ │ │ ├── shieldgen.png │ │ │ ├── supply_hd.png │ │ │ ├── warshrine.png │ │ │ ├── OrbitalEngine.png │ │ │ ├── am_converter.png │ │ │ ├── am_converter2.png │ │ │ ├── armor_crystal.png │ │ │ ├── armor_powered.png │ │ │ ├── armor_quantum.png │ │ │ ├── armor_remnant.png │ │ │ ├── armorsensor.png │ │ │ ├── boardingparty.png │ │ │ ├── cargostorage.png │ │ │ ├── controlchair.png │ │ │ ├── greatshrine.png │ │ │ ├── marenium_core.png │ │ │ ├── massivemount.png │ │ │ ├── securityparty.png │ │ │ ├── shieldshrine.png │ │ │ ├── shieldstuff.png │ │ │ ├── supply_normal.png │ │ │ ├── supportshield.png │ │ │ ├── wave_emitter.png │ │ │ ├── armor_composite.png │ │ │ ├── armor_crystal2.png │ │ │ ├── armor_crystal3.png │ │ │ ├── covariantshield.png │ │ │ ├── crystalstorage.png │ │ │ ├── crystalstorage2.png │ │ │ ├── fusion_torpedo.png │ │ │ ├── planetgenerator.png │ │ │ ├── shieldcapacitor.png │ │ │ ├── shielded_amgen.png │ │ │ ├── singularitycore.png │ │ │ ├── superstructure.png │ │ │ ├── tachyonsensors.png │ │ │ ├── hyperlinked_sinew.png │ │ │ ├── marenium_generator.png │ │ │ ├── matterdisruptor6.png │ │ │ ├── progenitorcomputer.png │ │ │ ├── progenitorshield.png │ │ │ ├── progenitorshrine.png │ │ │ ├── twin_turret_railgun.png │ │ │ └── zero_point_generator.png │ │ ├── techs │ │ │ └── support_tech.png │ │ ├── artifacts │ │ │ ├── RemnantCore.png │ │ │ ├── RemnantCannon.png │ │ │ ├── RemnantChassis.png │ │ │ ├── RemnantCoreW.png │ │ │ ├── RemnantEngine.png │ │ │ └── RemnantChassisW.png │ │ └── empires │ │ │ └── portraits │ │ │ ├── bug.png │ │ │ ├── cloak.png │ │ │ ├── cyborg.png │ │ │ ├── slug.png │ │ │ ├── blobman.png │ │ │ ├── harrian.png │ │ │ ├── khalerii.png │ │ │ ├── pirates.png │ │ │ └── berserker.png │ ├── particles │ │ ├── GDF.ps │ │ ├── GravitonCollapser.ps │ │ ├── DefensiveMatrixEvent.ps │ │ └── SingularityDisruption.ps │ ├── systems │ │ ├── unique │ │ │ ├── Nebula.txt │ │ │ └── MorphSystem.txt │ │ ├── special │ │ │ ├── ContrailNebula.txt │ │ │ ├── CoreBlackhole.txt │ │ │ └── BlackHole.txt │ │ └── regular │ │ │ └── AncientSystem.txt │ ├── sounds │ │ ├── weapons │ │ │ ├── Drone.ogg │ │ │ ├── Drone2.ogg │ │ │ ├── missile_fire_drone_1.ogg │ │ │ └── missile_fire_drone_2.ogg │ │ ├── status │ │ │ └── Red Alert.ogg │ │ └── RS_sfx.txt │ ├── cargo │ │ ├── Ore.txt │ │ ├── heralds │ │ │ ├── DefenseCargo.txt │ │ │ ├── EnergyCargo.txt │ │ │ └── ResearchCargo.txt │ │ └── ancient │ │ │ └── BaseMaterial.txt │ ├── artifacts │ │ ├── IonCannon.txt │ │ ├── SkipDrive.txt │ │ ├── SupportStation.txt │ │ ├── SpyProbe.txt │ │ ├── FrameConstructor.txt │ │ ├── Telescope.txt │ │ ├── BusterMachine.txt │ │ ├── CommandComputer.txt │ │ ├── FloatingContinent.txt │ │ ├── GenesisDevice.txt │ │ ├── StellarGenerator.txt │ │ ├── PlanetGenerator.txt │ │ ├── invasion │ │ │ ├── InvSystem.txt │ │ │ ├── InvStation.txt │ │ │ ├── InvResearch.txt │ │ │ ├── InvMoney.txt │ │ │ └── InvPlanet.txt │ │ ├── GuardianShipyard.txt │ │ ├── revenant │ │ │ ├── RevenantCore.txt │ │ │ ├── RevenantCannon.txt │ │ │ ├── RevenantEngine.txt │ │ │ └── RevenantChassis.txt │ │ ├── Arcology.txt │ │ └── ProtoPlanet.txt │ ├── abilities │ │ ├── orbital │ │ │ └── FTLJammer.txt │ │ ├── shipmanagement │ │ │ ├── Repair.txt │ │ │ └── ScuttleDerelict.txt │ │ ├── subsystem │ │ │ ├── ShadowportPack.txt │ │ │ ├── GatePack.txt │ │ │ ├── Cloak.txt │ │ │ ├── ShadowportUnpack.txt │ │ │ ├── GateSequence.txt │ │ │ ├── GateUnpack.txt │ │ │ ├── SelfDestruct.txt │ │ │ └── BusterBeam.txt │ │ ├── traits │ │ │ ├── LendPirateShip.txt │ │ │ ├── ToggleOre.txt │ │ │ ├── ToggleBaseMaterials.txt │ │ │ ├── ShadowportSteal.txt │ │ │ └── MinePlanet.txt │ │ ├── artifact │ │ │ ├── Telescope.txt │ │ │ ├── TelescopeOre.txt │ │ │ ├── OverchargeFleet.txt │ │ │ ├── EquipIonCannon.txt │ │ │ └── EquipSkipDrive.txt │ │ ├── special │ │ │ └── UnobtaniumMorph.txt │ │ └── mining │ │ │ ├── BindAsteroid.txt │ │ │ └── SwarmerBindAsteroid.txt │ ├── biomes │ │ ├── OreVein.txt │ │ └── ice.txt │ ├── materials │ │ └── RSmat_Status.txt │ ├── traits │ │ ├── government │ │ │ └── Technocracy.txt │ │ ├── _old │ │ │ ├── personality │ │ │ │ ├── Inefficient.txt │ │ │ │ └── Sedentary.txt │ │ │ ├── military │ │ │ │ └── ManifestDestiny.txt │ │ │ └── foundation │ │ │ │ ├── Industrious.txt │ │ │ │ └── SequesteredSociety.txt │ │ ├── personality │ │ │ ├── Lavish.txt │ │ │ ├── Frugal.txt │ │ │ ├── Nimble.txt │ │ │ └── Clumsy.txt │ │ └── lifestyle │ │ │ ├── Evangelical.txt │ │ │ └── Pacifists.txt │ ├── buildings │ │ ├── civilian1 │ │ │ ├── University.txt │ │ │ └── BerserkerUniversityThingy.txt │ │ ├── civilian2 │ │ │ ├── BerserkerTechCenterThingy.txt │ │ │ └── TechCenter.txt │ │ └── special │ │ │ ├── AncientRuins.txt │ │ │ └── AncientCannon.txt │ ├── influence │ │ ├── treaties │ │ │ ├── GateShareClause.txt │ │ │ └── FlingShareClause.txt │ │ └── instant │ │ │ └── Innovation.txt │ ├── shaders │ │ ├── source │ │ │ └── beam_ps.txt │ │ └── RS_shaders.txt │ ├── resources │ │ ├── buildings │ │ │ ├── Altar.txt │ │ │ ├── StellarWater.txt │ │ │ ├── Soylent3.txt │ │ │ ├── Soylent4.txt │ │ │ ├── BuildingWater.txt │ │ │ ├── Soylent1.txt │ │ │ └── Soylent2.txt │ │ ├── bonded │ │ │ ├── BoostWater.txt │ │ │ ├── HeavyWater.txt │ │ │ └── ClearWater.txt │ │ ├── level2 │ │ │ ├── PsionicReagents.txt │ │ │ ├── Thorium.txt │ │ │ ├── Medicines.txt │ │ │ ├── Neutronium.txt │ │ │ ├── Supercarbons.txt │ │ │ ├── AncientCity.txt │ │ │ └── DegenerateMatter.txt │ │ ├── level1 │ │ │ ├── Oil.txt │ │ │ ├── Glass.txt │ │ │ ├── Deuterium.txt │ │ │ ├── Atium.txt │ │ │ ├── NativeGold.txt │ │ │ ├── LuxuryMaterials.txt │ │ │ ├── RareMetals.txt │ │ │ ├── LocalAsteroidField.txt │ │ │ ├── Hadocite.txt │ │ │ ├── Marble.txt │ │ │ └── Silicon.txt │ │ └── special │ │ │ └── OreRate.txt │ ├── constructions │ │ ├── DevelopSurface.txt │ │ ├── PurgeCorruption.txt │ │ ├── FTL │ │ │ ├── Exp_Gate.txt │ │ │ ├── Exp_Beacon.txt │ │ │ ├── Exp_Jumpdrive.txt │ │ │ ├── Exp_Hyperdrive.txt │ │ │ └── Exp_Slipstream.txt │ │ └── MoonBase.txt │ ├── design_stats │ │ └── hex_base.txt │ ├── shipsets │ │ └── progenitor │ │ │ └── shipset.txt │ ├── orbitals │ │ ├── military │ │ │ ├── TractorBeam.txt │ │ │ ├── ArmorPlating.txt │ │ │ ├── IonCannon.txt │ │ │ └── ShieldArray.txt │ │ ├── economy │ │ │ └── MonoColonyBooster.txt │ │ └── special │ │ │ └── RemnantEnergyCore.txt │ └── system_lists │ │ └── SpatialAnomaly.txt ├── logo.png ├── locales │ └── english │ │ ├── RS_creeps.txt │ │ ├── RS_artifacts.txt │ │ ├── RS_pickups.txt │ │ └── RS_attitudes.txt └── names.txt ├── .gitignore ├── .misc ├── pirates.xcf ├── pirates2.xcf └── pirates3.xcf ├── metadata.json ├── README.md └── .gitattributes /Rising Stars/.steam: -------------------------------------------------------------------------------- 1 | 812827373 -------------------------------------------------------------------------------- /Rising Stars/scripts/server/empire_ai/weasel/FTL/Flux.as: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rising Stars/data/research/heralds_dlc/upgrades/FlagHealth.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rising Stars/data/subsystems/supports/weapons/MuonCannon.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rising Stars/scripts/server/empire_ai/weasel/race/Berserkers.as: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rising Stars/scripts/server/empire_ai/weasel/race/Pacifists.as: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rising Stars/scripts/server/empire_ai/weasel/race/Progenitors.as: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Rising Stars/scripts/server/empire_ai/weasel/race/Researchers.as: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.db 2 | .steam 3 | modinfo.* 4 | *.bat 5 | *.code-workspace -------------------------------------------------------------------------------- /Rising Stars/scripts/menu/campaign.as: -------------------------------------------------------------------------------- 1 | #include "../definitions/campaign.as" -------------------------------------------------------------------------------- /Rising Stars/scripts/menu/ABEM_version.as: -------------------------------------------------------------------------------- 1 | #include "../definitions/ABEM_version.as" -------------------------------------------------------------------------------- /.misc/pirates.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/.misc/pirates.xcf -------------------------------------------------------------------------------- /.misc/pirates2.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/.misc/pirates2.xcf -------------------------------------------------------------------------------- /.misc/pirates3.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/.misc/pirates3.xcf -------------------------------------------------------------------------------- /Rising Stars/data/statuses/IsInvader.txt: -------------------------------------------------------------------------------- 1 | Status: IsInvader 2 | Visible To: Nobody 3 | Unique: True -------------------------------------------------------------------------------- /Rising Stars/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/logo.png -------------------------------------------------------------------------------- /Rising Stars/data/effects/NoRepairHexes.txt: -------------------------------------------------------------------------------- 1 | Effect: NoRepairHexes 2 | Start: heralds_combat::NoRepairHexes -------------------------------------------------------------------------------- /Rising Stars/data/effects/ABEMControlCore.txt: -------------------------------------------------------------------------------- 1 | Effect: ABEMControlCore 2 | End: ABEMCombat::ABEMControlDestroyed -------------------------------------------------------------------------------- /Rising Stars/data/effects/NoRepairNonCore.txt: -------------------------------------------------------------------------------- 1 | Effect: NoRepairNonCore 2 | Start: ABEM_effects::NoRepairNonCore -------------------------------------------------------------------------------- /Rising Stars/data/images/tax1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/tax1.png -------------------------------------------------------------------------------- /Rising Stars/data/images/tax2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/tax2.png -------------------------------------------------------------------------------- /Rising Stars/data/statuses/special/NoSurfaceRegen.txt: -------------------------------------------------------------------------------- 1 | Status: NoSurfaceRegen 2 | Visible To: Nobody 3 | Unique: True -------------------------------------------------------------------------------- /Rising Stars/data/images/Cloack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/Cloack.png -------------------------------------------------------------------------------- /Rising Stars/data/images/city1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/city1.png -------------------------------------------------------------------------------- /Rising Stars/data/images/city2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/city2.png -------------------------------------------------------------------------------- /Rising Stars/data/images/city3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/city3.png -------------------------------------------------------------------------------- /Rising Stars/data/particles/GDF.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/particles/GDF.ps -------------------------------------------------------------------------------- /Rising Stars/data/systems/unique/Nebula.txt: -------------------------------------------------------------------------------- 1 | // Alar, it is absolutely vital that this file is not deleted or moved in any way. -------------------------------------------------------------------------------- /Rising Stars/scripts/shadow/objects/Macronebula.as: -------------------------------------------------------------------------------- 1 | tidy class MacronebulaScript { 2 | // Class deliberately left blank 3 | } -------------------------------------------------------------------------------- /Rising Stars/data/images/Orbital.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/Orbital.png -------------------------------------------------------------------------------- /Rising Stars/data/images/techIcons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/techIcons.png -------------------------------------------------------------------------------- /Rising Stars/data/statuses/special/ExplicitlyTractorable.txt: -------------------------------------------------------------------------------- 1 | Status: ExplicitlyTractorable 2 | Visible To: Nobody 3 | Unique: True -------------------------------------------------------------------------------- /Rising Stars/data/subsystems/more_thrust.txt: -------------------------------------------------------------------------------- 1 | Template: tag/HullSystem 2 | AddShipModifier: ThrustMult(6 + 1 * $NEW_MOVEMENT) 3 | -------------------------------------------------------------------------------- /Rising Stars/data/effects/DefensiveMatrixDamage.txt: -------------------------------------------------------------------------------- 1 | Effect: DefensiveMatrixDamage 2 | GlobalDamage: ABEMCombat::DefensiveMatrixDamage -------------------------------------------------------------------------------- /Rising Stars/data/images/Adamantium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/Adamantium.png -------------------------------------------------------------------------------- /Rising Stars/data/images/greenscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/greenscreen.png -------------------------------------------------------------------------------- /Rising Stars/data/images/status/GDF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/status/GDF.png -------------------------------------------------------------------------------- /Rising Stars/data/images/buildings/Dish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/buildings/Dish.png -------------------------------------------------------------------------------- /Rising Stars/data/images/sprites/beam1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/sprites/beam1.png -------------------------------------------------------------------------------- /Rising Stars/data/images/sprites/beam2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/sprites/beam2.png -------------------------------------------------------------------------------- /Rising Stars/data/images/sprites/beam3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/sprites/beam3.png -------------------------------------------------------------------------------- /Rising Stars/data/images/sprites/beam4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/sprites/beam4.png -------------------------------------------------------------------------------- /Rising Stars/data/images/sprites/beam5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/sprites/beam5.png -------------------------------------------------------------------------------- /Rising Stars/data/images/sprites/beam6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/sprites/beam6.png -------------------------------------------------------------------------------- /Rising Stars/data/images/sprites/drone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/sprites/drone.png -------------------------------------------------------------------------------- /Rising Stars/data/images/status/exhaust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/status/exhaust.png -------------------------------------------------------------------------------- /Rising Stars/data/sounds/weapons/Drone.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/sounds/weapons/Drone.ogg -------------------------------------------------------------------------------- /Rising Stars/data/sounds/weapons/Drone2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/sounds/weapons/Drone2.ogg -------------------------------------------------------------------------------- /Rising Stars/data/subsystems/faster_turning.txt: -------------------------------------------------------------------------------- 1 | Template: tag/HullSystem 2 | AddShipModifier: TurnThrustMult(1 + 0.75 * $NEW_MOVEMENT) 3 | -------------------------------------------------------------------------------- /Rising Stars/data/images/sprites/railgun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/sprites/railgun.png -------------------------------------------------------------------------------- /Rising Stars/data/images/sprites/railgunV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/sprites/railgunV.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/amgen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/amgen.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/cloak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/cloak.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/hulls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/hulls.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/tax1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/tax1.png -------------------------------------------------------------------------------- /Rising Stars/data/sounds/status/Red Alert.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/sounds/status/Red Alert.ogg -------------------------------------------------------------------------------- /Rising Stars/data/statuses/buildings/MoonBase.txt: -------------------------------------------------------------------------------- 1 | Status: MoonBase 2 | Visible To: Nobody 3 | 4 | IfHaveTrait(Mechanoid, AddIncome(100)) 5 | -------------------------------------------------------------------------------- /Rising Stars/data/images/buildings/Factory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/buildings/Factory.png -------------------------------------------------------------------------------- /Rising Stars/data/images/sprites/drone_trail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/sprites/drone_trail.png -------------------------------------------------------------------------------- /Rising Stars/data/images/sprites/plasma_bolt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/sprites/plasma_bolt.png -------------------------------------------------------------------------------- /Rising Stars/data/images/status/LaserTurret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/status/LaserTurret.png -------------------------------------------------------------------------------- /Rising Stars/data/images/status/RailTurret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/status/RailTurret.png -------------------------------------------------------------------------------- /Rising Stars/data/images/status/RammingSpeed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/status/RammingSpeed.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/Battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/Battery.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/Coolant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/Coolant.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/SAmmater.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/SAmmater.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/Sensors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/Sensors.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/Sensors2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/Sensors2.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/amgen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/amgen2.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/arcology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/arcology.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/armor1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/armor1.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/armor2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/armor2.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/armor3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/armor3.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/armor4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/armor4.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/armor5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/armor5.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/armor6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/armor6.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/armor7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/armor7.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/buster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/buster.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/computer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/computer.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/laser6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/laser6.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/shuttle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/shuttle.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/slaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/slaser.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/stargate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/stargate.png -------------------------------------------------------------------------------- /Rising Stars/data/images/techs/support_tech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/techs/support_tech.png -------------------------------------------------------------------------------- /Rising Stars/data/particles/GravitonCollapser.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/particles/GravitonCollapser.ps -------------------------------------------------------------------------------- /Rising Stars/data/images/artifacts/RemnantCore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/artifacts/RemnantCore.png -------------------------------------------------------------------------------- /Rising Stars/data/images/buildings/Lvl1Budget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/buildings/Lvl1Budget.png -------------------------------------------------------------------------------- /Rising Stars/data/images/buildings/Lvl1Defense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/buildings/Lvl1Defense.png -------------------------------------------------------------------------------- /Rising Stars/data/images/buildings/Lvl2Budget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/buildings/Lvl2Budget.png -------------------------------------------------------------------------------- /Rising Stars/data/images/buildings/Lvl2Defense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/buildings/Lvl2Defense.png -------------------------------------------------------------------------------- /Rising Stars/data/images/buildings/tile_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/buildings/tile_border.png -------------------------------------------------------------------------------- /Rising Stars/data/images/empires/portraits/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/empires/portraits/bug.png -------------------------------------------------------------------------------- /Rising Stars/data/images/sprites/ancientdrone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/sprites/ancientdrone.png -------------------------------------------------------------------------------- /Rising Stars/data/images/status/MissileTurret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/status/MissileTurret.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/SolarCell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/SolarCell.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/armor_nano.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/armor_nano.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/forcefield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/forcefield.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/fusiongen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/fusiongen.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/mass_mount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/mass_mount.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/newsensors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/newsensors.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/shieldgen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/shieldgen.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/supply_hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/supply_hd.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/warshrine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/warshrine.png -------------------------------------------------------------------------------- /Rising Stars/data/images/artifacts/RemnantCannon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/artifacts/RemnantCannon.png -------------------------------------------------------------------------------- /Rising Stars/data/images/artifacts/RemnantChassis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/artifacts/RemnantChassis.png -------------------------------------------------------------------------------- /Rising Stars/data/images/artifacts/RemnantCoreW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/artifacts/RemnantCoreW.png -------------------------------------------------------------------------------- /Rising Stars/data/images/artifacts/RemnantEngine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/artifacts/RemnantEngine.png -------------------------------------------------------------------------------- /Rising Stars/data/images/buildings/Lvl1Research.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/buildings/Lvl1Research.png -------------------------------------------------------------------------------- /Rising Stars/data/images/buildings/Lvl2Research.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/buildings/Lvl2Research.png -------------------------------------------------------------------------------- /Rising Stars/data/images/empires/portraits/cloak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/empires/portraits/cloak.png -------------------------------------------------------------------------------- /Rising Stars/data/images/empires/portraits/cyborg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/empires/portraits/cyborg.png -------------------------------------------------------------------------------- /Rising Stars/data/images/empires/portraits/slug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/empires/portraits/slug.png -------------------------------------------------------------------------------- /Rising Stars/data/images/sprites/chaingun_salvo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/sprites/chaingun_salvo.png -------------------------------------------------------------------------------- /Rising Stars/data/images/sprites/chaingun_salvo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/sprites/chaingun_salvo2.png -------------------------------------------------------------------------------- /Rising Stars/data/images/sprites/particle_lance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/sprites/particle_lance.png -------------------------------------------------------------------------------- /Rising Stars/data/images/sprites/subspace_shred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/sprites/subspace_shred.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/OrbitalEngine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/OrbitalEngine.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/am_converter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/am_converter.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/am_converter2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/am_converter2.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/armor_crystal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/armor_crystal.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/armor_powered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/armor_powered.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/armor_quantum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/armor_quantum.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/armor_remnant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/armor_remnant.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/armorsensor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/armorsensor.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/boardingparty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/boardingparty.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/cargostorage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/cargostorage.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/controlchair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/controlchair.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/greatshrine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/greatshrine.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/marenium_core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/marenium_core.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/massivemount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/massivemount.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/securityparty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/securityparty.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/shieldshrine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/shieldshrine.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/shieldstuff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/shieldstuff.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/supply_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/supply_normal.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/supportshield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/supportshield.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/wave_emitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/wave_emitter.png -------------------------------------------------------------------------------- /Rising Stars/data/particles/DefensiveMatrixEvent.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/particles/DefensiveMatrixEvent.ps -------------------------------------------------------------------------------- /Rising Stars/data/particles/SingularityDisruption.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/particles/SingularityDisruption.ps -------------------------------------------------------------------------------- /Rising Stars/data/statuses/special/MorphedUnobtanium.txt: -------------------------------------------------------------------------------- 1 | Status: MorphedUnobtanium 2 | Visible To: Nobody 3 | Unique: True 4 | GrantAbility(UnobtaniumMorph) -------------------------------------------------------------------------------- /Rising Stars/data/images/artifacts/RemnantChassisW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/artifacts/RemnantChassisW.png -------------------------------------------------------------------------------- /Rising Stars/data/images/empires/portraits/blobman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/empires/portraits/blobman.png -------------------------------------------------------------------------------- /Rising Stars/data/images/empires/portraits/harrian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/empires/portraits/harrian.png -------------------------------------------------------------------------------- /Rising Stars/data/images/empires/portraits/khalerii.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/empires/portraits/khalerii.png -------------------------------------------------------------------------------- /Rising Stars/data/images/empires/portraits/pirates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/empires/portraits/pirates.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/armor_composite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/armor_composite.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/armor_crystal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/armor_crystal2.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/armor_crystal3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/armor_crystal3.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/covariantshield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/covariantshield.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/crystalstorage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/crystalstorage.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/crystalstorage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/crystalstorage2.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/fusion_torpedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/fusion_torpedo.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/planetgenerator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/planetgenerator.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/shieldcapacitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/shieldcapacitor.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/shielded_amgen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/shielded_amgen.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/singularitycore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/singularitycore.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/superstructure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/superstructure.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/tachyonsensors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/tachyonsensors.png -------------------------------------------------------------------------------- /Rising Stars/data/statuses/traits/SequesteredSociety.txt: -------------------------------------------------------------------------------- 1 | Status: SequesteredSociety 2 | Name: SequesteredSociety 3 | Visible To: Nobody 4 | AddPressureCap(5) 5 | -------------------------------------------------------------------------------- /Rising Stars/data/images/buildings/portal_stabilizer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/buildings/portal_stabilizer.png -------------------------------------------------------------------------------- /Rising Stars/data/images/empires/portraits/berserker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/empires/portraits/berserker.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/hyperlinked_sinew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/hyperlinked_sinew.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/marenium_generator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/marenium_generator.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/matterdisruptor6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/matterdisruptor6.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/progenitorcomputer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/progenitorcomputer.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/progenitorshield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/progenitorshield.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/progenitorshrine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/progenitorshrine.png -------------------------------------------------------------------------------- /Rising Stars/data/sounds/weapons/missile_fire_drone_1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/sounds/weapons/missile_fire_drone_1.ogg -------------------------------------------------------------------------------- /Rising Stars/data/sounds/weapons/missile_fire_drone_2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/sounds/weapons/missile_fire_drone_2.ogg -------------------------------------------------------------------------------- /Rising Stars/data/cargo/Ore.txt: -------------------------------------------------------------------------------- 1 | Cargo: Ore 2 | Name: #C_ORE 3 | Description: #C_ORE_DESC 4 | Icon: ResourceIconsSmall::65 5 | Global: Automatic 6 | Always Visible: True -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/twin_turret_railgun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/twin_turret_railgun.png -------------------------------------------------------------------------------- /Rising Stars/data/images/subsystems/zero_point_generator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/subsystems/zero_point_generator.png -------------------------------------------------------------------------------- /Rising Stars/data/statuses/traits/FleetLinked.txt: -------------------------------------------------------------------------------- 1 | Status: FleetLinked 2 | Visible To: Nobody 3 | 4 | ModEfficiencyDistanceToOrbital(Mainframe, +0.75, -0.5, 0, 500000) 5 | -------------------------------------------------------------------------------- /Rising Stars/data/cargo/heralds/DefenseCargo.txt: -------------------------------------------------------------------------------- 1 | Cargo: DefenseCargo 2 | Name: #DEFENSE_UNITS 3 | Description: #DEFENSE_UNITS_DESC 4 | Icon: CargoIcons::1 5 | Global: Automatic -------------------------------------------------------------------------------- /Rising Stars/data/cargo/heralds/EnergyCargo.txt: -------------------------------------------------------------------------------- 1 | Cargo: EnergyCargo 2 | Name: #ENERGY_UNITS 3 | Description: #ENERGY_UNITS_DESC 4 | Icon: CargoIcons::0 5 | Global: Automatic -------------------------------------------------------------------------------- /Rising Stars/data/images/buildings/ancient_strip_transmuter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DaloLorn/Rising-Stars/HEAD/Rising Stars/data/images/buildings/ancient_strip_transmuter.png -------------------------------------------------------------------------------- /Rising Stars/data/statuses/DerelictShip.txt: -------------------------------------------------------------------------------- 1 | Status: DerelictShip 2 | Visible To: Nobody 3 | Unique: True 4 | 5 | AddFleetEffectiveness(-100) 6 | ABEM_hooks::IsDerelict() -------------------------------------------------------------------------------- /Rising Stars/data/statuses/equipment/GravitonEngineDrag.txt: -------------------------------------------------------------------------------- 1 | Status: GravitonEngineDrag 2 | Visible To: Nobody 3 | Unique: True 4 | nmp_hooks::ModSpacetimeDragFactor(4.0) 5 | -------------------------------------------------------------------------------- /Rising Stars/data/cargo/heralds/ResearchCargo.txt: -------------------------------------------------------------------------------- 1 | Cargo: ResearchCargo 2 | Name: #RESEARCH_UNITS 3 | Description: #RESEARCH_UNITS_DESC 4 | Icon: CargoIcons::2 5 | Global: Automatic -------------------------------------------------------------------------------- /Rising Stars/data/effects/CapDamageExceptEnergy.txt: -------------------------------------------------------------------------------- 1 | Effect: CapDamageExceptEnergy 2 | Value: MaxDamage 3 | Value: MinimumPercent 4 | 5 | Damage: ABEMCombat::CapDamageExceptEnergy -------------------------------------------------------------------------------- /Rising Stars/data/statuses/special/ArmorPlating.txt: -------------------------------------------------------------------------------- 1 | Status: ArmorPlating 2 | Visible To: Nobody 3 | Collapses: True 4 | RepeatStacks(ABEM_orbitals::ModifyOrbitalHealth(5000, 15000)) -------------------------------------------------------------------------------- /Rising Stars/data/cargo/ancient/BaseMaterial.txt: -------------------------------------------------------------------------------- 1 | Cargo: BaseMaterial 2 | Name: #C_BASE_MATERIAL 3 | Description: #C_BASE_MATERIAL_DESC 4 | Icon: ResourceIconsSmall::81 5 | Global: Manual -------------------------------------------------------------------------------- /Rising Stars/data/statuses/conditions/Terraformed.txt: -------------------------------------------------------------------------------- 1 | Status: TerraformStacks 2 | Name: TerraformStacks 3 | Visible To: Nobody 4 | 5 | Status: BuildingSubsurface 6 | Visible To: Nobody -------------------------------------------------------------------------------- /Rising Stars/data/statuses/special/Untractorable.txt: -------------------------------------------------------------------------------- 1 | Status: Untractorable 2 | Visible To: Nobody 3 | Unique: True 4 | Status: Stationary 5 | Visible To: Nobody 6 | Unique: True 7 | -------------------------------------------------------------------------------- /Rising Stars/data/statuses/IsGuardian.txt: -------------------------------------------------------------------------------- 1 | Status: IsGuardian 2 | Visible To: Nobody 3 | Status: RemnantGuardian 4 | Visible To: Nobody 5 | OnDisable(SpawnAnomaly(Type = DerelictGuardian)) 6 | -------------------------------------------------------------------------------- /Rising Stars/data/statuses/traits/ancient/AncientFabricator.txt: -------------------------------------------------------------------------------- 1 | Status: AncientFabricator 2 | Visible To: Nobody 3 | 4 | AddLocalDefense(3, Build Satellites = True) 5 | AddFleetEffectiveness(+0.5) 6 | -------------------------------------------------------------------------------- /Rising Stars/data/effects/GenericDamage.txt: -------------------------------------------------------------------------------- 1 | Effect: GenericDamage 2 | Value: Amount 3 | Value: Pierce 4 | Value: DRResponse 5 | Value: DamageType 6 | Value: Spillable 7 | 8 | End: ABEMCombat::GenericDamage -------------------------------------------------------------------------------- /Rising Stars/data/statuses/Stealthed.txt: -------------------------------------------------------------------------------- 1 | Status: Stealthed 2 | Name: #STATUS_STEALTHED 3 | Description: #STATUS_STEALTHED_DESC 4 | Icon: PlateArmor * #5188e6a0 5 | Color: #5188e6 6 | 7 | NoRegionVision() -------------------------------------------------------------------------------- /Rising Stars/data/statuses/equipment/PowerCell.txt: -------------------------------------------------------------------------------- 1 | Status: PowerCell 2 | Name: #STATUS_POWER_CELL 3 | Description: #STATUS_POWER_CELL_DESC 4 | Icon: ResourceIcon::2 5 | 6 | AddFleetEffectiveness(+0.4) 7 | -------------------------------------------------------------------------------- /Rising Stars/data/statuses/special/FiringRailgunsCloseIn.txt: -------------------------------------------------------------------------------- 1 | Status: FiringRailgunsCloseIn 2 | Description: Firing railguns quickly at close in targets (NOBODY SEES THIS; NO LOCALE NEEDED) 3 | Visible To: Nobody -------------------------------------------------------------------------------- /Rising Stars/data/statuses/special/JuggerRamOnProgess.txt: -------------------------------------------------------------------------------- 1 | Status: JRamSpeed 2 | Name: #STATUS_RAMMING_SPEED 3 | Description: #STATUS_RAMMING_SPEED_DESC 4 | Icon: RammingSpeed 5 | AddAccelerationBonus(10) 6 | -------------------------------------------------------------------------------- /Rising Stars/data/subsystems/HexLimitFactor.txt: -------------------------------------------------------------------------------- 1 | Template: tag/HullSystem, var/HexLimit, var/FreeHexLimit 2 | Modifier: HexLimitFactor(factor) 3 | HexLimit := HexLimit * factor 4 | FreeHexLimit := FreeHexLimit * factor -------------------------------------------------------------------------------- /Rising Stars/data/statuses/orbitals/FTLJammer.txt: -------------------------------------------------------------------------------- 1 | Status: FTLJammer 2 | Name: #STATUS_FTL_JAMMER 3 | Description: #STATUS_FTL_JAMMER_DESC 4 | Color: #f00 5 | Icon: FtlIcon 6 | BlockSystemFTL() 7 | Show Duration: True 8 | -------------------------------------------------------------------------------- /Rising Stars/data/statuses/remnants/StrenghtIncrease.txt: -------------------------------------------------------------------------------- 1 | Status: RemStrIncrease 2 | Visible To: Nobody 3 | Name: RemStrIncrease 4 | Icon: PointsIcon 5 | RepeatExtended(AddShipEffectiveness(0.02), Per Gametime Bonus = 3) 6 | -------------------------------------------------------------------------------- /Rising Stars/data/systems/special/ContrailNebula.txt: -------------------------------------------------------------------------------- 1 | System: ContrailNebula 2 | Inherit: Type1Nebula 3 | Frequency: 0 4 | 5 | MakeStar(Temperature = 4000:12000, Radius = 5:25) 6 | 7 | Repeat(1:2) 8 | MakePlanet() 9 | -------------------------------------------------------------------------------- /Rising Stars/data/effects/AreaDamage.txt: -------------------------------------------------------------------------------- 1 | Effect: AreaDamage 2 | Value: Amount 3 | Value: Radius 4 | Value: Hits = 4 5 | Value: Spillable = 1 6 | Value: DamageType = 2 7 | Value: DRResponse = 0 8 | 9 | End: ABEMCombat::AreaDamage -------------------------------------------------------------------------------- /Rising Stars/data/effects/ReduceDamagePercentile.txt: -------------------------------------------------------------------------------- 1 | Effect: ReduceDamagePercentile 2 | Value: ProjResist 3 | Value: EnergyResist 4 | Value: ExplResist 5 | Value: MinimumPercent = 0 6 | 7 | Damage: ABEMCombat::ReduceDamagePercentile -------------------------------------------------------------------------------- /Rising Stars/data/artifacts/IonCannon.txt: -------------------------------------------------------------------------------- 1 | Artifact: IonCannon 2 | Name: #ART_ION_CANNON 3 | Description: #ART_ION_CANNON_DESC 4 | Frequency: 0.5 5 | 6 | Ability: EquipIonCannon 7 | Icon: TechIcons::18 8 | Strategic Icon: TechIcons::18 9 | -------------------------------------------------------------------------------- /Rising Stars/data/artifacts/SkipDrive.txt: -------------------------------------------------------------------------------- 1 | Artifact: SkipDrive 2 | Name: #ART_SKIP_DRIVE 3 | Description: #ART_SKIP_DRIVE_DESC 4 | Frequency: 0.5 5 | 6 | Ability: EquipSkipDrive 7 | Icon: TechIcons::41 8 | Strategic Icon: TechIcons::41 9 | -------------------------------------------------------------------------------- /Rising Stars/data/effects/ChannelDamage.txt: -------------------------------------------------------------------------------- 1 | Effect: ChannelDamage 2 | Value: ProjResist 3 | Value: EnergyResist 4 | Value: ExplResist 5 | Value: MinimumPercent = 1 / 5 6 | Value: RechargePercent 7 | 8 | Damage: ABEMCombat::ChannelDamage -------------------------------------------------------------------------------- /Rising Stars/data/abilities/orbital/FTLJammer.txt: -------------------------------------------------------------------------------- 1 | Ability: FTLJammer 2 | Name: #ABL_FTL_JAMMER 3 | Description: #ABL_FTL_JAMMER_DESC 4 | Cooldown: 360 5 | Icon: FtlIcon*#f00 6 | ConsumeFTL(200) 7 | AddStatusSelf(FTLJammer, Duration = 180) 8 | -------------------------------------------------------------------------------- /Rising Stars/data/artifacts/SupportStation.txt: -------------------------------------------------------------------------------- 1 | Artifact: SupportStation 2 | Name: #ART_SUPPORT_STATION 3 | Description: #ART_SUPPORT_STATION_DESC 4 | 5 | Ability: SpawnSupportStation 6 | Icon: techShipYard 7 | Strategic Icon: techShipYard 8 | -------------------------------------------------------------------------------- /Rising Stars/data/biomes/OreVein.txt: -------------------------------------------------------------------------------- 1 | Biome: OreVein 2 | Name: #C_ORE 3 | 4 | Temperature: 0 5 | Humidity: 0 6 | 7 | Frequency: 0 8 | 9 | Color: #91692c 10 | 11 | Picks: 0.0, 0.0 12 | Lookup Range: 0.5 13 | IsCrystallic: True 14 | -------------------------------------------------------------------------------- /Rising Stars/data/effects/QuantumCannon.txt: -------------------------------------------------------------------------------- 1 | Effect: QuantumArtillery 2 | Value: Radius 3 | Value: BaselineAmount 4 | Value: BaselineSize 5 | Value: MinRatio 6 | Value: MaxRatio 7 | Value: DamageType 8 | 9 | End: ABEMCombat::SizeScaledAreaDamage -------------------------------------------------------------------------------- /Rising Stars/data/effects/VoidRay.txt: -------------------------------------------------------------------------------- 1 | Effect: VoidRay 2 | Value: Amount 3 | Value: Status 4 | Value: StatusMultiplier 5 | Value: StatusAmount 6 | Value: StatusIncrement 7 | Value: DamageType 8 | 9 | End: ABEMCombat::IncreasingDamage 10 | -------------------------------------------------------------------------------- /Rising Stars/data/artifacts/SpyProbe.txt: -------------------------------------------------------------------------------- 1 | Artifact: SpyProbe 2 | Name: #ART_SPY_PROBE 3 | Description: #ART_SPY_PROBE_DESC 4 | 5 | Ability: SpawnSpyProbe 6 | 7 | AI: AsVisionGain(2.5) 8 | Icon: techScanner 9 | Strategic Icon: techScanner 10 | -------------------------------------------------------------------------------- /Rising Stars/data/statuses/PsionicProtected.txt: -------------------------------------------------------------------------------- 1 | Status: PsionicProtected 2 | Name: #STATUS_PSIONIC_PROTECTED 3 | Description: #STATUS_PSIONIC_PROTECTED_DESC 4 | Icon: ResourceIconsSmall::37 5 | 6 | RepeatStacks(ModLoyalty(10)) 7 | ApplyToPlanets() 8 | -------------------------------------------------------------------------------- /Rising Stars/data/statuses/weapons/VoidRay.txt: -------------------------------------------------------------------------------- 1 | Status: VoidRay 2 | Name: #STATUS_VOIDRAY 3 | Description: #STATUS_VOIDRAY_DESC 4 | Visible To: Origin Empire 5 | Collapses: True 6 | ABEM_hooks::MaxStacks(10) 7 | ABEM_hooks::CombinedExpiration(10.0) 8 | -------------------------------------------------------------------------------- /Rising Stars/locales/english/RS_creeps.txt: -------------------------------------------------------------------------------- 1 | VERB_PICKUP_GUARDIAN: Move in closer to the $1 2 | PICKUP_GUARDIAN: Unidentified Progenitor Device 3 | PICKUP_GUARDIAN_DESC: Insufficient data exists to determine this object's function. Perhaps it should be investigated... -------------------------------------------------------------------------------- /Rising Stars/data/artifacts/FrameConstructor.txt: -------------------------------------------------------------------------------- 1 | Artifact: FrameConstructor 2 | Name: #ART_FRAME_CONSTRUCTOR 3 | Description: #ART_FRAME_CONSTRUCTOR_DESC 4 | 5 | Ability: ConstructOrbitalFrame 6 | Icon: ResourceIcon::6 7 | Strategic Icon: ResourceIcon::6 8 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/Science.txt: -------------------------------------------------------------------------------- 1 | Technology: Science 2 | Name: #R_SCIENCE 3 | Description: #R_SCIENCE_DESC 4 | Icon: TechScience 5 | Class: Special 6 | Color: #aaaaaa 7 | 8 | Default Unlock: True 9 | Category: Grid Utils 10 | -------------------------------------------------------------------------------- /Rising Stars/names.txt: -------------------------------------------------------------------------------- 1 | Rise of Empires - accurately describes the player empires 'rising' from nothingness 2 | Alien Vanguard - focuses on the impending Overlord threat 3 | Progenitor Resurgence - focuses on the return of the Ulthaar (and, to a lesser degree, the First) -------------------------------------------------------------------------------- /Rising Stars/data/statuses/traits/ancient/AncientFoundry.txt: -------------------------------------------------------------------------------- 1 | Status: AncientFoundry 2 | Visible To: Nobody 3 | 4 | IfAttributeGTE(Adaptation4, 1, MultConstructionCost(Factor = 0.97)) 5 | AddResource(Labor, 3) 6 | AddResourceEmpireAttribute(Labor, FactoryLaborMod) 7 | -------------------------------------------------------------------------------- /Rising Stars/data/statuses/traits/ancient/ToggleOre.txt: -------------------------------------------------------------------------------- 1 | Status: DisableOre 2 | Visible To: Owner 3 | Unique: True 4 | Icon: ResourceIconsSmall::65*#f44 5 | Name: #STATUS_ORE_DISABLED 6 | Description: #STATUS_ORE_DISABLED_DESC 7 | 8 | GrantAbility(ActivateOre) 9 | -------------------------------------------------------------------------------- /Rising Stars/data/effects/MatterDisruptor.txt: -------------------------------------------------------------------------------- 1 | Effect: MatterDisruptor 2 | Value: Amount 3 | Value: SizeMultiplier 4 | Value: AmountPerSize 5 | Value: MinRatio 6 | Value: MaxRatio 7 | Value: DamageType 8 | 9 | End: ABEMCombat::DamageFromRelativeSize 10 | -------------------------------------------------------------------------------- /Rising Stars/data/statuses/equipment/SkipDrive.txt: -------------------------------------------------------------------------------- 1 | Status: SkipDrive 2 | Name: #STATUS_SKIP_DRIVE 3 | Description: #STATUS_SKIP_DRIVE_DESC 4 | Icon: GuiOrbitalIcons::2 * #ff0000 5 | Collapses: True 6 | 7 | WorthPoints(25) 8 | 9 | GrantAbility(Blink) 10 | -------------------------------------------------------------------------------- /Rising Stars/data/statuses/space/EmptySpace.txt: -------------------------------------------------------------------------------- 1 | Status: EmptySpace 2 | Name: #EMPTY_SPACE 3 | Description: #EMPTY_SPACE_DESC 4 | Icon: ResourceIcon::5 * #429cffff * #00ff00 5 | 6 | ABEM_sensors::AddSightModifier(200, 1.25) 7 | ABEM_nebulae::ShieldRegenBoost(0.05) 8 | -------------------------------------------------------------------------------- /Rising Stars/data/abilities/shipmanagement/Repair.txt: -------------------------------------------------------------------------------- 1 | Ability: Repair 2 | Name: #ABL_REPAIR 3 | Description: #ABL_REPAIR_DESC 4 | Icon: techConstruction*#00ff00 5 | Energy Cost: 400 6 | ConsumeMoney(600) 7 | ShowMoneyValue(600) 8 | ConsumeStatus(Damaged, Hide = True) 9 | -------------------------------------------------------------------------------- /Rising Stars/data/biomes/ice.txt: -------------------------------------------------------------------------------- 1 | Biome: Ice 2 | Name: #BIOME_ICE 3 | 4 | Temperature: 0.0 5 | Humidity: 1 6 | 7 | UseWeight: 0.1 8 | BuildTime: 2 9 | 10 | Frequency: 10 11 | 12 | Color: #FFFFFF 13 | 14 | Picks: 0.0, 0.5 15 | Lookup Range: 0.75 16 | -------------------------------------------------------------------------------- /Rising Stars/data/statuses/equipment/IonCannon.txt: -------------------------------------------------------------------------------- 1 | Status: IonCannon 2 | Name: #STATUS_ION_CANNON 3 | Description: #STATUS_ION_CANNON_DESC 4 | Icon: HexagonSubsystems::6 * #ff8d00 5 | Collapses: True 6 | 7 | WorthPoints(25) 8 | 9 | GrantAbility(IonCannon) 10 | -------------------------------------------------------------------------------- /Rising Stars/data/statuses/space/Type1Nebula.txt: -------------------------------------------------------------------------------- 1 | Status: Type1Nebula 2 | Name: #NEBULA_TYPE1 3 | Description: #NEBULA_TYPE1_DESC 4 | Icon: VoteIcons::3 5 | Color: #ff0000 6 | 7 | ABEM_sensors::AddSightModifier(200, 0.33) 8 | LimitSeeableRange(1500*$SENSOR_RANGE_MULT) 9 | -------------------------------------------------------------------------------- /Rising Stars/data/abilities/subsystem/ShadowportPack.txt: -------------------------------------------------------------------------------- 1 | Ability: ShadowportPack 2 | Name: #ABL_SHADOWPORT_PACK 3 | Description: #ABL_SHADOWPORT_PACK_DESC 4 | Icon: techOrganization*#f88 5 | Hotkey: G 6 | 7 | RemoveStatus(ShadowportUnpacked) 8 | AddStatus(ShadowportPacked) 9 | -------------------------------------------------------------------------------- /Rising Stars/data/artifacts/Telescope.txt: -------------------------------------------------------------------------------- 1 | Artifact: Telescope 2 | Name: #ART_TELESCOPE 3 | Description: #ART_TELESCOPE_DESC 4 | Frequency: 0.5 5 | 6 | Ability: Telescope 7 | 8 | AI: AsVisionGain(1.0) 9 | Icon: SpaceProgram 10 | Strategic Icon: SpaceProgram 11 | -------------------------------------------------------------------------------- /Rising Stars/data/materials/RSmat_Status.txt: -------------------------------------------------------------------------------- 1 | Material: RSStatus 2 | Culling: None 3 | Alpha: False 4 | DepthTest: NoDepthTest 5 | Mipmap: False 6 | Lighting: False 7 | 8 | Material: RammingSpeed 9 | Inherit: RSStatus 10 | Texture: data/images/status/RammingSpeed.png -------------------------------------------------------------------------------- /Rising Stars/data/statuses/subsystems/ShadowportPacked.txt: -------------------------------------------------------------------------------- 1 | Status: ShadowportPacked 2 | Name: #STATUS_SHADOWPORT_PACKED 3 | Description: #STATUS_SHADOWPORT_PACKED_DESC 4 | Icon: techOrganization*#f88 5 | 6 | AddFleetEffectiveness(-0.5) 7 | 8 | GrantAbility(ShadowportUnpack) 9 | -------------------------------------------------------------------------------- /Rising Stars/data/statuses/traits/ancient/AncientReplicator.txt: -------------------------------------------------------------------------------- 1 | Status: AncientReplicator 2 | Visible To: Nobody 3 | 4 | TriggerWithOriginEmpire(TakeControl()) 5 | AddStatus(AncientClaim) 6 | 7 | AddLocalDefense(3, Build Satellites = True) 8 | AddFleetEffectiveness(+0.5) 9 | -------------------------------------------------------------------------------- /Rising Stars/data/systems/regular/AncientSystem.txt: -------------------------------------------------------------------------------- 1 | System: AncientSystem 2 | Inherit: BaseSystem 3 | Frequency: 0.24 4 | 5 | MakeStar(Temperature = 1000:2500, Radius = 125:200) 6 | AddQuality(+100) 7 | 8 | RepeatModified(3, $PLANET_FREQUENCY) 9 | MakePlanet() 10 | -------------------------------------------------------------------------------- /Rising Stars/data/abilities/subsystem/GatePack.txt: -------------------------------------------------------------------------------- 1 | Ability: GatePack 2 | Name: #ABL_GATE_PACK 3 | Description: #ABL_GATE_PACK_DESC 4 | Icon: AbilityIcons::0 5 | Hotkey: G 6 | 7 | RemoveStatus(GateUnpacked) 8 | RemoveStatus(GateSequenced) 9 | AddStatus(GatePacked) 10 | -------------------------------------------------------------------------------- /Rising Stars/data/traits/government/Technocracy.txt: -------------------------------------------------------------------------------- 1 | Trait: Technocracy 2 | Name: #TRAIT_TECHNOCRACY 3 | Description: #TRAIT_TECHNOCRACY_DESC 4 | Order: 10 5 | Category: Government 6 | Icon: CardIcons::29 7 | Costs Points: 1 8 | Color: #fffb35 9 | GainInfluenceCard(Innovation, Uses = 2) -------------------------------------------------------------------------------- /Rising Stars/data/statuses/space/EconomicNebula.txt: -------------------------------------------------------------------------------- 1 | Status: Economic 2 | Name: #NEBULA_ECONOMIC 3 | Description: #NEBULA_ECONOMIC_DESC 4 | Icon: ResourceIcons::30 * #00aa00 5 | Color: #00aa00 6 | 7 | ABEM_sensors::AddSightModifier(200, 0.66) 8 | LimitSeeableRange(3000*$SENSOR_RANGE_MULT) 9 | -------------------------------------------------------------------------------- /metadata.json: -------------------------------------------------------------------------------- 1 | { 2 | "mods": { 3 | "Rising Stars": { 4 | "rootFolder": "Rising Stars", 5 | "dependencies": [ 6 | { 7 | "name":"OpenSR Modpack", 8 | "repository":"github.com/OpenSRProject/OpenStarRuler-Modpack", 9 | "branch":"master" 10 | } 11 | ] 12 | } 13 | } 14 | } -------------------------------------------------------------------------------- /Rising Stars/data/artifacts/BusterMachine.txt: -------------------------------------------------------------------------------- 1 | Artifact: BusterMachine 2 | Name: #ART_BUSTER_MACHINE 3 | Description: #ART_BUSTER_MACHINE_DESC 4 | Frequency: 0.5 5 | 6 | Model: ArtifactAdvanced 7 | 8 | Ability: BusterMachine 9 | Icon: BusterMachine 10 | Strategic Icon: BusterMachine 11 | -------------------------------------------------------------------------------- /Rising Stars/data/artifacts/CommandComputer.txt: -------------------------------------------------------------------------------- 1 | Artifact: CommandComputer 2 | Name: #ART_COMMAND_COMPUTER 3 | Description: #ART_COMMAND_COMPUTER_DESC 4 | 5 | Ability: ExpandFleet 6 | 7 | AI: ActivateOnBestFleet(2.0) 8 | Icon: ProgenitorComputer 9 | Strategic Icon: ProgenitorComputer 10 | -------------------------------------------------------------------------------- /Rising Stars/data/buildings/civilian1/University.txt: -------------------------------------------------------------------------------- 1 | Building: University 2 | Name: #BLD_UNIVERSITY 3 | Description: #BLD_UNIVERSITY_DESC 4 | Sprite: BuildingSprites::8 5 | 6 | Civilian: True 7 | 8 | Saturation: 1 Research 9 | Production: 1 Research 10 | RequireNotTrait(Berserkers) 11 | -------------------------------------------------------------------------------- /Rising Stars/data/statuses/conditions/Damaged.txt: -------------------------------------------------------------------------------- 1 | Status: Damaged 2 | Name: #STATUS_DAMAGED 3 | Description: #STATUS_DAMAGED_DESC 4 | Color: #ff041d 5 | Visible To: Owner 6 | Icon: techMaterialScience1*#ff041d 7 | AddBonusHP(-0.3) 8 | GrantAbility(Repair) 9 | AddFleetEffectiveness(-0.3) 10 | -------------------------------------------------------------------------------- /Rising Stars/data/statuses/special/ShieldArray.txt: -------------------------------------------------------------------------------- 1 | Status: ShieldArray 2 | Visible To: Nobody 3 | Collapses: True 4 | RepeatStacks(ABEM_hooks::RechargeShields(6.25, In Combat = True, Fleet = False)) 5 | RepeatStacks(ABEM_hooks::AddShieldCapacity(SV_ShieldCapacity, Default Capacity = 6000.0, Start On = False)) 6 | -------------------------------------------------------------------------------- /Rising Stars/data/statuses/traits/ancient/ToggleBaseMaterials.txt: -------------------------------------------------------------------------------- 1 | Status: DisableBaseMaterials 2 | Visible To: Owner 3 | Unique: True 4 | Icon: ResourceIconsSmall::81*#f88 5 | Name: #STATUS_MATERIALS_DISABLED 6 | Description: #STATUS_MATERIALS_DISABLED_DESC 7 | 8 | GrantAbility(ActivateBaseMaterials) 9 | -------------------------------------------------------------------------------- /Rising Stars/data/effects/ABEMShieldDamage.txt: -------------------------------------------------------------------------------- 1 | Effect: ABEMShieldDamage 2 | Start: ABEM_effects::ShieldInitMitigation 3 | End: ABEM_effects::ShieldDisableMitigation 4 | RetrofitPre: ABEM_effects::ShieldDisableMitigation 5 | RetrofitPost: ABEM_effects::ShieldInitMitigation 6 | GlobalDamage: ABEMCombat::ABEMShieldDamage -------------------------------------------------------------------------------- /Rising Stars/data/influence/treaties/GateShareClause.txt: -------------------------------------------------------------------------------- 1 | Clause: GateShareClause 2 | Name: #CLAUSE_GATESHARE 3 | Description: #CLAUSE_GATESHARE_DESC 4 | 5 | Icon: OrbitalIcons::1 6 | 7 | Free Clause: True 8 | Default Clause: True 9 | Team Clause: True 10 | 11 | ABEM_diplomacy::ShareGates() 12 | -------------------------------------------------------------------------------- /Rising Stars/data/statuses/subsystems/PrototypeFTL.txt: -------------------------------------------------------------------------------- 1 | Status: HasPrototypeHyperdrive 2 | Visible To: Nobody 3 | AllowConstruction() 4 | Status: HasPrototypeSlipstream 5 | Visible To: Nobody 6 | AllowConstruction() 7 | Status: HasPrototypeJumpdrive 8 | Visible To: Nobody 9 | AllowConstruction() 10 | -------------------------------------------------------------------------------- /Rising Stars/data/statuses/FastRecharge.txt: -------------------------------------------------------------------------------- 1 | Status: FastRecharge 2 | Name: #STATUS_FAST_RECHARGE 3 | Description: #STATUS_FAST_RECHARGE_DESC 4 | Icon: ResourceIcon::5 * 429cffff * #00ff00 5 | Collapses: True 6 | 7 | ABEM_hooks::ApplyToLeaderAI() 8 | RepeatStacks(ABEM_hooks::RechargeShields(25, Percent = 0.01)) 9 | -------------------------------------------------------------------------------- /Rising Stars/data/traits/_old/personality/Inefficient.txt: -------------------------------------------------------------------------------- 1 | Trait: Inefficient 2 | Name: #TRAIT_INEFFICIENT 3 | Description: #TRAIT_INEFFICIENT_DESC:25% 4 | Category: Personality 5 | 6 | Color: #ffaaaa 7 | Icon: AttributeIcons::4 8 | 9 | Gives Points: 1 10 | 11 | AddModifier( SupplyCostMult(1.25) ) 12 | -------------------------------------------------------------------------------- /Rising Stars/data/traits/_old/personality/Sedentary.txt: -------------------------------------------------------------------------------- 1 | Trait: Sedentary 2 | Name: #TRAIT_SEDENTARY 3 | Description: #TRAIT_SEDENTARY_DESC 4 | Category: Personality 5 | 6 | Color: #ffaaaa 7 | Icon: ResourceIcon::7 8 | 9 | Gives Points: 1 10 | 11 | ModAttribute(BuildingConstructRate, Add, -0.5) 12 | -------------------------------------------------------------------------------- /Rising Stars/data/abilities/traits/LendPirateShip.txt: -------------------------------------------------------------------------------- 1 | Ability: LendToPirate 2 | Name: #ABL_LEND_TO_PIRATE 3 | Description: #ABL_LEND_TO_PIRATE 4 | Icon: SupplyIcon*#f00 5 | 6 | ABEM_races::OnlyUsableIfPiratesExist() 7 | ABEM_hooks::UserMustNotHaveStatus(Shadowport) 8 | ABEM_races::AddOwnedStatusSelf(LoanedPirate, 900) 9 | -------------------------------------------------------------------------------- /Rising Stars/data/influence/treaties/FlingShareClause.txt: -------------------------------------------------------------------------------- 1 | Clause: FlingShareClause 2 | Name: #CLAUSE_FLINGSHARE 3 | Description: #CLAUSE_FLINGSHARE_DESC 4 | 5 | Icon: OrbitalIcons::2 6 | 7 | Free Clause: True 8 | Default Clause: True 9 | Team Clause: True 10 | 11 | ABEM_diplomacy::ShareFlingBeacons() 12 | -------------------------------------------------------------------------------- /Rising Stars/data/artifacts/FloatingContinent.txt: -------------------------------------------------------------------------------- 1 | Artifact: FloatingContinent 2 | Name: #ART_FLOATING_CONTINENT 3 | Description: #ART_FLOATING_CONTINENT_DESC 4 | Frequency: 0.5 5 | 6 | Ability: AddFloatingContinent 7 | 8 | AI: ActivateOnBestPlanet(1.0) 9 | Icon: EnormousPlanet 10 | Strategic Icon: EnormousPlanet 11 | -------------------------------------------------------------------------------- /Rising Stars/data/artifacts/GenesisDevice.txt: -------------------------------------------------------------------------------- 1 | Artifact: GenesisDevice 2 | Name: #ART_GENESIS_DEVICE 3 | Description: #ART_GENESIS_DEVICE_DESC 4 | Frequency: 0.25 5 | Natural: True 6 | 7 | Model: ArtifactAdvanced 8 | 9 | Ability: GenesisDevice 10 | Icon: ResourceIcons::26 11 | Strategic Icon: ResourceIcons::26 12 | -------------------------------------------------------------------------------- /Rising Stars/data/statuses/space/MetaphasicNebula.txt: -------------------------------------------------------------------------------- 1 | Status: Metaphasic 2 | Name: #NEBULA_METAPHASIC 3 | Description: #NEBULA_METAPHASIC_DESC 4 | Icon: ResourceIcon::5 * #429cffff * #00ff00 5 | 6 | ABEM_nebulae::ShieldRegenBoost(0.25) 7 | ABEM_sensors::AddSightModifier(200, 0.66) 8 | LimitSeeableRange(3000*$SENSOR_RANGE_MULT) 9 | -------------------------------------------------------------------------------- /Rising Stars/data/statuses/space/MetreonNebula.txt: -------------------------------------------------------------------------------- 1 | Status: Metreon 2 | Name: #NEBULA_METREON 3 | Description: #NEBULA_METREON_DESC 4 | Icon: PlateArmor * #ff0000 5 | Color: #ff0000 6 | 7 | ABEM_nebulae::DealRandomDamage() 8 | ABEM_sensors::AddSightModifier(200, 0.5) 9 | LimitSeeableRange(2250*$SENSOR_RANGE_MULT) 10 | -------------------------------------------------------------------------------- /Rising Stars/data/statuses/space/MutaraNebula.txt: -------------------------------------------------------------------------------- 1 | Status: Mutara 2 | Name: #NEBULA_MUTARA 3 | Description: #NEBULA_MUTARA_DESC 4 | Icon: ResourceIcon::5 * #aa0000 5 | Color: #aa0000 6 | 7 | ABEM_nebulae::DisableShields() 8 | ABEM_sensors::AddSightModifier(200, 0.066) 9 | LimitSeeableRange(300*$SENSOR_RANGE_MULT) 10 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/upgrades/minor/Energy.txt: -------------------------------------------------------------------------------- 1 | Technology: Energy 2 | Name: #R_ENERGY 3 | Description: #R_ENERGY_DESC:1 4 | 5 | Icon: ResourceIcon::2 6 | Color: #42b4bd 7 | 8 | Category: Minor Upgrades 9 | Class: Boost 10 | 11 | Point Cost: 500 12 | Time Cost: 60 13 | 14 | AddEnergyIncome(1) 15 | -------------------------------------------------------------------------------- /Rising Stars/data/shaders/source/beam_ps.txt: -------------------------------------------------------------------------------- 1 | varying vec2 uv; 2 | uniform float cycle; 3 | uniform sampler2D texture; 4 | 5 | void main() { 6 | vec3 sample = texture2D(texture,uv - vec2(cycle, 0.0)).rgb; 7 | 8 | gl_FragColor.rgb = ((sample - vec3(0.5)) * 2.0 + gl_Color.rgb) * gl_Color.a; 9 | gl_FragColor.a = 0.0; 10 | } 11 | -------------------------------------------------------------------------------- /Rising Stars/data/traits/personality/Lavish.txt: -------------------------------------------------------------------------------- 1 | Trait: Lavish 2 | Name: #TRAIT_LAVISH 3 | Description: #TRAIT_LAVISH_DESC 4 | Category: Personality 5 | Order: 3 6 | 7 | Conflict: Frugal 8 | 9 | Color: #ffaaaa 10 | Icon: ResourceIconsSmall::32 11 | 12 | Gives Points: 1 13 | 14 | AddStatusOwnedPlanets(Lavish) 15 | -------------------------------------------------------------------------------- /Rising Stars/data/statuses/Blockaded.txt: -------------------------------------------------------------------------------- 1 | Status: Blockaded 2 | Name: #STATUS_BLOCKADED 3 | Description: #STATUS_BLOCKADED_DESC 4 | Icon: QuickbarIcons::7 5 | Color: #ff9000 6 | Show Duration: True 7 | 8 | Collapses: True 9 | ReduceProductionPerStack(1) 10 | RemoveOnOwnerChange() 11 | ABEM_conquest::ModLoyaltyFractional(-0.1) -------------------------------------------------------------------------------- /Rising Stars/data/statuses/DefenseSatellite.txt: -------------------------------------------------------------------------------- 1 | Status: DefenseSatellite 2 | Visible To: Nobody 3 | 4 | AddFleetEffectiveness(+1.0) 5 | AddSupportBonusHP(+1.0) 6 | AddFleetCommand(+256) 7 | 8 | AddStatus(WeaponControl) 9 | AllowFreeRaiding() 10 | AddRaidRange(-10000000) //Negative range resolves to "in the current system" 11 | -------------------------------------------------------------------------------- /Rising Stars/data/statuses/space/RadioactiveNebula.txt: -------------------------------------------------------------------------------- 1 | Status: Radioactive 2 | Name: #NEBULA_RADIOACTIVE 3 | Description: #NEBULA_RADIOACTIVE_DESC 4 | Icon: ResourceIcons::13 * #aa0000 5 | Color: #aa0000 6 | 7 | ABEM_nebulae::KillCrew() 8 | ABEM_sensors::AddSightModifier(200, 0.2) 9 | LimitSeeableRange(900*$SENSOR_RANGE_MULT) 10 | -------------------------------------------------------------------------------- /Rising Stars/data/statuses/space/TachyonNebula.txt: -------------------------------------------------------------------------------- 1 | Status: Tachyon 2 | Name: #NEBULA_TACHYON 3 | Description: #NEBULA_TACHYON_DESC 4 | Icon: ActionBarIcons::5 * #00aa00 5 | Color: #00aa00 6 | 7 | ABEM_nebulae::StatusFreeFTLSystem() 8 | ABEM_sensors::AddSightModifier(200, 0.5) 9 | LimitSeeableRange(2250*$SENSOR_RANGE_MULT) 10 | -------------------------------------------------------------------------------- /Rising Stars/data/statuses/traits/ancient/AncientCompressor.txt: -------------------------------------------------------------------------------- 1 | Status: AncientCompressor 2 | Visible To: Nobody 3 | 4 | ModEmpireAttribute(EmpireMassFactor, AddFactor, -0.08) 5 | 6 | IfAttributeGTE(Adaptation4, 1, AddResource(Research, 1)) 7 | IfAttributeGTE(AtroanAdaptation3, 1, ModEmpireAttribute(EmpireMassFactor, AddFactor, -0.016)) 8 | -------------------------------------------------------------------------------- /Rising Stars/data/statuses/traits/ancient/AncientDepot.txt: -------------------------------------------------------------------------------- 1 | Status: AncientDepot 2 | Visible To: Nobody 3 | 4 | IfAttributeGTE(Adaptation4, 1, AddFleetCommand(64)) 5 | IfAttributeGTE(AtroanAdaptation3, 1, AddLaborStorage(20)) 6 | IfAttributeGTE(AtroanAdaptation3, 1, AddDefenseReserve(2)) 7 | AddLaborStorage(100) 8 | AddDefenseReserve(10) 9 | -------------------------------------------------------------------------------- /Rising Stars/data/traits/_old/military/ManifestDestiny.txt: -------------------------------------------------------------------------------- 1 | Trait: ManifestDestiny 2 | Name: #TRAIT_MANIFEST_DESTINY 3 | Description: #TRAIT_MANIFEST_DESTINY_DESC 4 | 5 | Category: Personality 6 | 7 | Costs Points: 1 8 | 9 | Icon: StatusWar 10 | Color: #aaffaa 11 | 12 | ModAttribute(CaptureSupplyFactor, Multiply, 0.75) 13 | -------------------------------------------------------------------------------- /Rising Stars/data/buildings/civilian1/BerserkerUniversityThingy.txt: -------------------------------------------------------------------------------- 1 | Building: BerserkerLaborCamp 2 | Name: #BLD_LABORCAMP 3 | Description: #BLD_LABORCAMP_DESC 4 | Sprite: BuildingSprites::5*fa3 5 | 6 | Civilian: True 7 | 8 | Saturation: 1 Research 9 | Production: 0.75 Defense 10 | Production: 1.5 Labor 11 | RequireTrait(Berserkers) -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/upgrades/minor/Defense.txt: -------------------------------------------------------------------------------- 1 | Technology: Defense 2 | Name: #R_DEFENSE 3 | Description: #R_DEFENSE_DESC:2 4 | 5 | Icon: ResourceIcon::5 6 | Color: #af7926 7 | 8 | Category: Minor Upgrades 9 | Class: Boost 10 | 11 | Point Cost: 500 12 | Time Cost: 60 13 | 14 | AddGlobalDefenseIncome(2) 15 | -------------------------------------------------------------------------------- /Rising Stars/locales/english/RS_artifacts.txt: -------------------------------------------------------------------------------- 1 | ART_GUARDIAN_INACTIVE: Guardian Facility (Dormant) 2 | ART_GUARDIAN_INACTIVE_DESC: << 3 | This battered, immense phase-shifted facility appears to have been the place where the Guardian was constructed. If repaired and reactivated, it could be an incredibly valuable industrial and technological resource. 4 | >> -------------------------------------------------------------------------------- /Rising Stars/data/abilities/subsystem/Cloak.txt: -------------------------------------------------------------------------------- 1 | Ability: Cloak 2 | Name: #ABL_CLOAK 3 | Description: #ABL_CLOAK_DESC 4 | Icon: CloakingDevice 5 | 6 | Cooldown: 5 7 | 8 | ShowShipSizeValue(RESOURCE_ENERGY, 0.5, 0.005, ResourceIcon::2, #PER_SECOND, #42b4bd) 9 | RequireEnergyMaintenance(0.5, 0.005) 10 | 11 | IsStatusToggle(Cloaked) 12 | -------------------------------------------------------------------------------- /Rising Stars/data/artifacts/StellarGenerator.txt: -------------------------------------------------------------------------------- 1 | Artifact: StellarGenerator 2 | Name: #ART_STELLAR_GENERATOR 3 | Description: #ART_STELLAR_GENERATOR_DESC 4 | Frequency: 0.25 5 | 6 | Model: ArtifactAdvanced 7 | 8 | Ability: GenerateStar 9 | 10 | AI: ActivateNearOwnedSystem(2.0) 11 | Icon: FusionGen 12 | Strategic Icon: FusionGen 13 | -------------------------------------------------------------------------------- /Rising Stars/data/artifacts/PlanetGenerator.txt: -------------------------------------------------------------------------------- 1 | Artifact: PlanetGenerator 2 | Name: #ART_PLANET_GENERATOR 3 | Description: #ART_PLANET_GENERATOR_DESC 4 | Frequency: 0.5 5 | 6 | Model: ArtifactAdvanced 7 | 8 | Ability: GeneratePlanet 9 | 10 | AI: ActivateInOwnedSystem(4.0) 11 | Icon: PlanetGenerator 12 | Strategic Icon: PlanetGenerator 13 | -------------------------------------------------------------------------------- /Rising Stars/data/statuses/traits/ancient/AncientLab.txt: -------------------------------------------------------------------------------- 1 | Status: AncientLab 2 | Visible To: Nobody 3 | 4 | IfAttributeGTE(Adaptation4, 1, TriggerPeriodic(ABEM_cargo::AddGlobalCargo(BaseMaterial, 0.5), Interval = 6, Trigger Immediate = True)) 5 | AddResource(Research, 1) 6 | RepeatExtended(AddResource(Research, 1), Base Attribute = ResearchComplexExtraPressure) -------------------------------------------------------------------------------- /Rising Stars/data/systems/special/CoreBlackhole.txt: -------------------------------------------------------------------------------- 1 | System: CoreBlackhole 2 | MakeBlackhole(Radius = 20.0) 3 | 4 | MakePlanet(Orbit Spacing = 700:750) 5 | MakeAsteroidBelt(6) 6 | MakePlanet(Orbit Spacing = 850:900) 7 | MakePlanet(AncientHubworld, Grid Size = (26, 15), Conditions = False) 8 | ForceMakeCreepCamp(BlackHoleCamp, Force Aggression = True) 9 | -------------------------------------------------------------------------------- /Rising Stars/data/traits/personality/Frugal.txt: -------------------------------------------------------------------------------- 1 | Trait: Frugal 2 | Name: #TRAIT_FRUGAL 3 | Description: #TRAIT_FRUGAL_DESC 4 | Category: Personality 5 | Order: 2 6 | 7 | Conflict: Lavish 8 | Conflict: Ancient 9 | 10 | Color: #aaffaa 11 | Icon: ResourceClassIcons::0 12 | 13 | Costs Points: 1 14 | 15 | AddStatusOwnedPlanets(Frugal) 16 | -------------------------------------------------------------------------------- /Rising Stars/data/artifacts/invasion/InvSystem.txt: -------------------------------------------------------------------------------- 1 | Artifact: InvSystem 2 | Name: #INV_ART_SYSTEM 3 | Description: #INV_ART_SYSTEM_DESC 4 | 5 | Frequency: 0 6 | Tag: Invasion 7 | 8 | Ability: InvSystem 9 | Ability: InvSystemPlus 10 | 11 | AI: ActivateNearOwnedSystem(2.0) 12 | Icon: FusionGen*#ff7777 13 | Strategic Icon: FusionGen*#ff7777 14 | -------------------------------------------------------------------------------- /Rising Stars/data/abilities/shipmanagement/ScuttleDerelict.txt: -------------------------------------------------------------------------------- 1 | Ability: ScuttleDerelict 2 | Name: #ABL_SCUTTLEDERELICT 3 | Description: #ABL_SCUTTLEDERELICT_DESC 4 | Icon: Explosion_color 5 | 6 | Cooldown: 5 7 | Target: targ = Object 8 | Range: 600 9 | 10 | ABEM_hooks::TargetFilterStatus(targ, DerelictShip) 11 | ABEM_hooks::DestroyTarget(targ) 12 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/hurdles/FTLHurdle.txt: -------------------------------------------------------------------------------- 1 | Technology: FTLHurdle 2 | Name: #R_FTL_HURDLE 3 | Description: #R_FTL_HURDLE_DESC 4 | 5 | Icon: ResourceIcon::3 6 | Symbol: QuickbarIcons::3 7 | Color: #ff0000 8 | 9 | Category: Hurdles 10 | Class: Boost 11 | 12 | Point Cost: 0 13 | Time Cost: 80 14 | 15 | SecondaryFTLCost(500) 16 | -------------------------------------------------------------------------------- /Rising Stars/locales/english/RS_pickups.txt: -------------------------------------------------------------------------------- 1 | PICKUP_CRYS: Crystallurgical Knowledge 2 | PICKUP_CRYS_DESC: Unlocks the Crystalline Armor subsystem. 3 | 4 | PICKUP_DISRUPTOR: Disruptor Stash 5 | PICKUP_DISRUPTOR_DESC: Unlocks the Disruptor subsystem. 6 | 7 | PICKUP_PARTICLE_LANCE: Particle Lance Prototypes 8 | PICKUP_PARTICLE_LANCE_DESC: Unlocks the Particle Lance subsystem. -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/progenitor/Science.txt: -------------------------------------------------------------------------------- 1 | Technology: ProgenitorScience 2 | Name: #R_PROGENITOR_SCIENCE 3 | Icon: emp_portrait_cloak 4 | Color: #aaaaaa 5 | Description: #R_PROGENITOR_SCIENCE_DESC 6 | Blurb: 7 | Category: Progenitor 8 | Class: Keystone 9 | RequireUnlockTag(ProgenitorTech) 10 | AutoUnlockOnUnlockedTag(ProgenitorTech) 11 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/upgrades/minor/Tactics.txt: -------------------------------------------------------------------------------- 1 | Technology: Tactics 2 | Name: #R_TACTICS 3 | Description: #R_TACTICS_DESC:+10% 4 | 5 | Icon: PointsIcon 6 | Color: #b0ba05 7 | 8 | Category: Minor Upgrades 9 | Class: Boost 10 | 11 | Point Cost: 500 12 | Time Cost: 60 13 | 14 | ModAttribute(ExperienceGainFactor, AddFactor, 0.1) 15 | -------------------------------------------------------------------------------- /Rising Stars/data/resources/buildings/Altar.txt: -------------------------------------------------------------------------------- 1 | Resource: Altar 2 | Name: #ALTAR 3 | Description: #ALTAR_DESC 4 | Artificial: True 5 | Exportable: False 6 | Stealable: False 7 | 8 | Icon: ResourceIconsSmall::53 9 | Small Icon: ResourceIconsSmall::53 10 | 11 | Distribution: 0 12 | Level: 0 13 | Limitless Level: True 14 | Can Be Terraformed: False 15 | -------------------------------------------------------------------------------- /Rising Stars/data/resources/buildings/StellarWater.txt: -------------------------------------------------------------------------------- 1 | Resource: StellarWater 2 | Name: #WATER 3 | Description: 4 | Native Biome: Oceanic 5 | Class: WaterType 6 | 7 | Icon: ResourceIconsSmall::103 8 | Small Icon: ResourceIconsSmall::103 9 | Display Weight: -10 10 | 11 | Distribution: 0 12 | Level: 0 13 | Exportable: False 14 | Artificial: True 15 | -------------------------------------------------------------------------------- /Rising Stars/scripts/definitions/ringworlders.as: -------------------------------------------------------------------------------- 1 | import attributes; 2 | import hooks; 3 | import bonus_effects; 4 | 5 | class SetAsHome : EmpireTrigger { 6 | Document doc("Sets the empire home to the object."); 7 | 8 | #section server 9 | void activate(Object@ obj, Empire@ emp) const override { 10 | @emp.HomeObj = obj; 11 | } 12 | 13 | #section all 14 | } -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/upgrades/minor/Population.txt: -------------------------------------------------------------------------------- 1 | Technology: Population 2 | Name: #R_POPULATION 3 | Description: #R_POPULATION_DESC:1 4 | 5 | Icon: ResourceIcon::8 6 | Color: #b63fff 7 | 8 | Category: Minor Upgrades 9 | Class: Boost 10 | 11 | Point Cost: 600 12 | Time Cost: 80 13 | 14 | ModAttribute(PopulationLevel3Mod, Add, 1) 15 | -------------------------------------------------------------------------------- /Rising Stars/data/artifacts/invasion/InvStation.txt: -------------------------------------------------------------------------------- 1 | Artifact: InvStation 2 | Name: #INV_ART_STATION 3 | Description: #INV_ART_STATION_DESC 4 | 5 | Frequency: 0 6 | Tag: Invasion 7 | 8 | Ability: InvStation 9 | Ability: InvStationPlus 10 | 11 | AI: ActivateOnRemnantStation(4.0) 12 | Icon: SingularityCore*#ff7777 13 | Strategic Icon: SingularityCore*#ff7777 14 | -------------------------------------------------------------------------------- /Rising Stars/data/buildings/civilian2/BerserkerTechCenterThingy.txt: -------------------------------------------------------------------------------- 1 | Building: BerserkerSlaveCamp 2 | Name: #BLD_SLAVECAMP 3 | Description: #BLD_SLAVECAMP_DESC 4 | Sprite: Factory*#fa3 5 | 6 | Civilian: True 7 | Upgrades From: BerserkerLaborCamp 8 | 9 | Saturation: 2 Research 10 | Production: 1.175 Defense 11 | Production: 2.25 Labor 12 | RequireTrait(Berserkers) -------------------------------------------------------------------------------- /Rising Stars/data/resources/bonded/BoostWater.txt: -------------------------------------------------------------------------------- 1 | Resource: BoostWater 2 | Name: #BOOST_WATER 3 | Description: #BOOST_WATER_DESC:150% 4 | Native Biome: Oceanic 5 | Class: WaterType 6 | 7 | Icon: ResourceIconsSmall::101 8 | Small Icon: ResourceIconsSmall::101 9 | 10 | Distribution: 0 11 | Artificial: True 12 | Level: 0 13 | ModResourceEfficiencyBonus(+1.5) 14 | -------------------------------------------------------------------------------- /Rising Stars/data/resources/bonded/HeavyWater.txt: -------------------------------------------------------------------------------- 1 | Resource: HeavyWater 2 | Name: #HEAVY_WATER 3 | Description: #HEAVY_WATER_DESC:3 4 | Native Biome: Oceanic 5 | Class: WaterType 6 | 7 | Icon: ResourceIconsSmall::99 8 | Small Icon: ResourceIconsSmall::99 9 | 10 | Distribution: 0 11 | Artificial: True 12 | Level: 0 13 | 14 | AddRandomPressure(3, 180, 30) 15 | -------------------------------------------------------------------------------- /Rising Stars/data/statuses/StellarShield.txt: -------------------------------------------------------------------------------- 1 | Status: StellarShield 2 | Name: #STATUS_STELLAR_SHIELD 3 | Description: #STATUS_STELLAR_SHIELD_DESC 4 | Collapses: True 5 | Visible To: Everybody 6 | Icon: ResourceIcon::5 * #429cffff * #00ff00 7 | 8 | ABEM_hooks::ApplyToStars() 9 | RepeatStacks(ABEM_hooks::AddStellarShield(SV_StellarShieldCap, SV_StellarShieldRegen)) 10 | -------------------------------------------------------------------------------- /Rising Stars/data/subsystems/armor_base.txt: -------------------------------------------------------------------------------- 1 | Template: var/DamageResist 2 | Modifier: ResistFactor(factor) 3 | DamageResist := DamageResist + Base::DamageResist * (factor - 1) 4 | Modifier: ResistMult(factor) 5 | DamageResist := DamageResist * factor 6 | 7 | Template: tag/IsArmor 8 | Modifier: PenResistMod(mod) 9 | Hex.Resistance := Hex.Resistance + mod 10 | 11 | -------------------------------------------------------------------------------- /Rising Stars/data/abilities/subsystem/ShadowportUnpack.txt: -------------------------------------------------------------------------------- 1 | Ability: ShadowportUnpack 2 | Name: #ABL_SHADOWPORT_UNPACK 3 | Description: #ABL_SHADOWPORT_UNPACK_DESC 4 | Icon: techOrganization*#8f8 5 | Hotkey: G 6 | 7 | Target: dest = Point 8 | Range: 10 9 | 10 | RemoveStatus(ShadowportPacked) 11 | AddStatus(ShadowportUnpacked) 12 | 13 | 14 | TeleportTo(dest) 15 | -------------------------------------------------------------------------------- /Rising Stars/data/statuses/AdaptedFastRecharge.txt: -------------------------------------------------------------------------------- 1 | Status: AdaptedFastRecharge 2 | Name: #STATUS_FAST_RECHARGE 3 | Description: #STATUS_FAST_RECHARGE_ADAPTED_DESC 4 | Icon: ResourceIcon::5 * 429cffff * #00ff00 5 | Collapses: True 6 | 7 | AddBonusShield(Percentage = 20) 8 | ABEM_hooks::ApplyToLeaderAI() 9 | RepeatStacks(ABEM_hooks::RechargeShields(25, Percent = 0.01)) 10 | -------------------------------------------------------------------------------- /Rising Stars/data/constructions/DevelopSurface.txt: -------------------------------------------------------------------------------- 1 | Construction: DevelopSurface 2 | Labor Cost: 50 3 | Description: #C_TERRAFORMING_DESC 4 | Category: Planetary Development 5 | 6 | Name: #C_TERRAFORMING 7 | Icon: SequesteredSociety 8 | 9 | RequirePlanet() 10 | RequireNotTrait(StarChildren) 11 | RequireNotTrait(Ancient) 12 | ConsumeCargo(Ore,500) 13 | DevelopTiles(20) 14 | -------------------------------------------------------------------------------- /Rising Stars/data/resources/buildings/Soylent3.txt: -------------------------------------------------------------------------------- 1 | Resource: Soylent3 2 | Name: #SOYLENT3 3 | Description: #SOYLENT3_DESC 4 | Native Biome: Forest 5 | Class: Food 6 | 7 | Icon: ResourceIcons::5 8 | Small Icon: ResourceIconsSmall::17 9 | Display Weight: -10 10 | 11 | Distribution: 0 12 | Level: 0 13 | Exportable: False 14 | Artificial: True 15 | Stealable: False 16 | -------------------------------------------------------------------------------- /Rising Stars/data/resources/buildings/Soylent4.txt: -------------------------------------------------------------------------------- 1 | Resource: Soylent4 2 | Name: #SOYLENT4 3 | Description: #SOYLENT4_DESC 4 | Native Biome: Forest 5 | Class: Food 6 | 7 | Icon: ResourceIcons::5 8 | Small Icon: ResourceIconsSmall::17 9 | Display Weight: -10 10 | 11 | Distribution: 0 12 | Level: 0 13 | Exportable: False 14 | Artificial: True 15 | Stealable: False 16 | -------------------------------------------------------------------------------- /Rising Stars/data/abilities/subsystem/GateSequence.txt: -------------------------------------------------------------------------------- 1 | Ability: GateSequence 2 | Name: #ABL_GATE_SEQUENCE 3 | Description: #ABL_GATE_SEQUENCE_DESC 4 | Icon: AbilityIcons::1*#00c0ff 5 | 6 | Target: dest = Point 7 | Range: 10 8 | 9 | RemoveStatus(GatePacked) 10 | AddStatus(GateSequenced) 11 | 12 | ConsumeFTL(400) 13 | ShowFTLValue(400, #COST) 14 | 15 | TeleportTo(dest) 16 | -------------------------------------------------------------------------------- /Rising Stars/data/abilities/subsystem/GateUnpack.txt: -------------------------------------------------------------------------------- 1 | Ability: GateUnpack 2 | Name: #ABL_GATE_UNPACK 3 | Description: #ABL_GATE_UNPACK_DESC 4 | Icon: AbilityIcons::1 5 | Hotkey: G 6 | 7 | Target: dest = Point 8 | Range: 10 9 | 10 | RemoveStatus(GatePacked) 11 | AddStatus(GateUnpacked) 12 | 13 | ConsumeFTL(100) 14 | ShowFTLValue(100, #COST) 15 | 16 | TeleportTo(dest) 17 | -------------------------------------------------------------------------------- /Rising Stars/data/artifacts/invasion/InvResearch.txt: -------------------------------------------------------------------------------- 1 | Artifact: InvResearch 2 | Name: #INV_ART_RESEARCH 3 | Description: #INV_ART_RESEARCH_DESC 4 | 5 | Frequency: 0 6 | Tag: Invasion 7 | 8 | Ability: InvResearch 9 | Ability: InvResearchPlus 10 | 11 | AI: ActivateAsPressureBoost(4.0, 4) 12 | Icon: ProgenitorComputer*#ff7777 13 | Strategic Icon: ProgenitorComputer*#ff7777 14 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/hurdles/InfluenceHurdle.txt: -------------------------------------------------------------------------------- 1 | Technology: InfluenceHurdle 2 | Name: #R_INFLUENCE_HURDLE 3 | Description: #R_INFLUENCE_HURDLE_DESC 4 | 5 | Icon: ResourceIcon::1 6 | Symbol: QuickbarIcons::3 7 | Color: #ff0000 8 | 9 | Category: Hurdles 10 | Class: Boost 11 | 12 | Point Cost: 0 13 | Time Cost: 80 14 | 15 | SecondaryInfluenceCost(10) 16 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/upgrades/major/Wealth.txt: -------------------------------------------------------------------------------- 1 | Technology: Wealth 2 | Name: #R_WEALTH 3 | Description: #R_WEALTH_DESC:500k 4 | 5 | Icon: techEconomics * #b0d16a 6 | Color: #b0d16a 7 | 8 | Category: Special Upgrades 9 | Class: BigUpgrade 10 | 11 | Point Cost: 750 12 | Time Cost: 100 13 | 14 | ReduceResearchPenalty(750) 15 | AddPermanentIncome(500) 16 | -------------------------------------------------------------------------------- /Rising Stars/data/resources/buildings/BuildingWater.txt: -------------------------------------------------------------------------------- 1 | Resource: BuildingWater 2 | Name: #WATER 3 | Description: 4 | Native Biome: Oceanic 5 | Class: WaterType 6 | 7 | Icon: ResourceIconsSmall::103 8 | Small Icon: ResourceIconsSmall::103 9 | Display Weight: -10 10 | 11 | Distribution: 0 12 | Level: 0 13 | Exportable: False 14 | Artificial: True 15 | Stealable: False 16 | -------------------------------------------------------------------------------- /Rising Stars/data/buildings/special/AncientRuins.txt: -------------------------------------------------------------------------------- 1 | Building: AncientRuins 2 | Name: #BLD_ANCIENT_RUINS 3 | Description: #BLD_ANCIENT_RUINS_DESC 4 | Sprite: AncientRuin 5 | 6 | Size: 4x3 7 | 8 | AddToNativeResource(AddRandomPressure(1, 180, 0)) 9 | AddToNativeResource(AddRandomPressure(1, 180, 0)) 10 | AddToNativeResource(AddRandomPressure(1, 180, 0)) 11 | CannotBuildManually() 12 | -------------------------------------------------------------------------------- /Rising Stars/data/resources/buildings/Soylent1.txt: -------------------------------------------------------------------------------- 1 | Resource: Soylent1 2 | Name: #SOYLENT1 3 | Description: #SOYLENT1_DESC 4 | Native Biome: Forest 5 | Class: Food 6 | 7 | Icon: ResourceIconsSmall::104 8 | Small Icon: ResourceIconsSmall::104 9 | Display Weight: -10 10 | 11 | Distribution: 0 12 | Level: 0 13 | Exportable: False 14 | Artificial: True 15 | Stealable: False 16 | -------------------------------------------------------------------------------- /Rising Stars/data/resources/buildings/Soylent2.txt: -------------------------------------------------------------------------------- 1 | Resource: Soylent2 2 | Name: #SOYLENT2 3 | Description: #SOYLENT2_DESC 4 | Native Biome: Forest 5 | Class: Food 6 | 7 | Icon: ResourceIconsSmall::104 8 | Small Icon: ResourceIconsSmall::104 9 | Display Weight: -10 10 | 11 | Distribution: 0 12 | Level: 0 13 | Exportable: False 14 | Artificial: True 15 | Stealable: False 16 | -------------------------------------------------------------------------------- /Rising Stars/data/subsystems/flagships/hulls/GuardianHull.txt: -------------------------------------------------------------------------------- 1 | Subsystem: GuardianHull 2 | Name: #S_GUARDIANHULL 3 | Description: #S_GUARDIANHULL_DESC 4 | 5 | Tags: Applied:Hull, Category:Hulls, NoCore 6 | Hull: Flagship 7 | EvaluationOrder: -200 8 | BaseColor: #a702cc 9 | 10 | Module: Default 11 | Sprite: DesignationIcons::16 12 | DrawMode: 3 13 | 14 | Hook: AddStatus(IsGuardian) -------------------------------------------------------------------------------- /Rising Stars/data/resources/level2/PsionicReagents.txt: -------------------------------------------------------------------------------- 1 | Resource: PsionicReagents 2 | Name: #PSIONIC_REAGENTS 3 | Description: #PSIONIC_REAGENTS_DESC 4 | Native Biome: Forest 5 | 6 | Icon: ResourceIcons::37 7 | Small Icon: ResourceIconsSmall::37 8 | 9 | Level: 2 10 | Rarity: Uncommon 11 | Affinity: Influence 12 | 13 | Pressure: 7 Influence 14 | AddRegionStatus(PsionicProtected) 15 | -------------------------------------------------------------------------------- /Rising Stars/data/statuses/traits/ancient/AncientProduce.txt: -------------------------------------------------------------------------------- 1 | Status: AncientProduce 2 | Visible To: Nobody 3 | Collapses: True 4 | 5 | RepeatStacks(IfAttributeGTE(AtroanAdaptation2, 1, AddStatus(AncientProduceAdapted))) 6 | ProduceNativePressurePct(Per Stack = 0.1) 7 | Status: AncientProduceAdapted 8 | Collapses: True 9 | Visible To: Nobody 10 | ProduceNativePressurePct(Per Stack = 0.05) 11 | -------------------------------------------------------------------------------- /Rising Stars/data/traits/lifestyle/Evangelical.txt: -------------------------------------------------------------------------------- 1 | Trait: Evangelical 2 | Name: #TRAIT_EVANGELICAL 3 | Description: #TRAIT_EVANGELICAL_DESC 4 | Order: 4 5 | 6 | Icon: AttributeIcons::1 * #ffff00 7 | Color: #ffff00 8 | 9 | Category: Lifestyle 10 | Unique: Lifestyle 11 | 12 | ABEM_orbitals::DestroyModulesInEmpire(TradeOutpost) 13 | ABEM_orbitals::DestroyModulesInEmpire(AdaptedTradeOutpost) -------------------------------------------------------------------------------- /Rising Stars/data/artifacts/invasion/InvMoney.txt: -------------------------------------------------------------------------------- 1 | Artifact: InvMoney 2 | Name: #INV_ART_MONEY 3 | Description: #INV_ART_MONEY_DESC 4 | 5 | Frequency: 0 6 | Tag: Invasion 7 | 8 | Ability: InvMoney 9 | Ability: InvMoneyPlus 10 | 11 | AI: Value(4.0) 12 | Icon: CargoStorage*#ff7777 13 | Strategic Icon: CargoStorage*#ff7777 14 | 15 | Secondary Chance: 0.25 16 | Secondary AI: Value(4.0) 17 | -------------------------------------------------------------------------------- /Rising Stars/data/statuses/conditions/AncientRuins.txt: -------------------------------------------------------------------------------- 1 | Status: AncientRuins 2 | Name: #COND_ANCIENT_RUINS 3 | Description: #COND_ANCIENT_RUINS_DESC 4 | Icon: AncientRuin 5 | 6 | Condition Frequency: 0.25 7 | Condition Tier: 1 8 | Color: #8c4ec9 9 | 10 | TriggerCreate( SpawnBuilding(AncientRuins, (2, 2)) ) 11 | TriggerColonized( AddResearchPoints(500:1000, Modified = False, Penalized = False) ) 12 | -------------------------------------------------------------------------------- /Rising Stars/data/statuses/subsystems/GatePacked.txt: -------------------------------------------------------------------------------- 1 | Status: GatePacked 2 | Name: #STATUS_GATE_PACKED 3 | Description: #STATUS_GATE_PACKED_DESC 4 | Icon: ActionBarIcons::7 * #ff0000 5 | 6 | AddAccelerationBonus(18.0) 7 | 8 | AddBonusHP(-0.5) 9 | 10 | IfNotFTLSuppressed(GrantAbility(GateUnpack)) 11 | IfAttributeGTE(InstantFTLFactor, 1, GrantAbility(GateSequence)) 12 | 13 | ForceHoldFire() 14 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Rising Stars 2 | 3 | Instructions for modders forking this: 4 | 5 | 1. Follow the instructions outlined by Darloth in issue #20, located at https://github.com/DaloLorn/Rising-Stars/issues/20. 6 | 7 | 2. Create a .steam file containing the text `355873534` in the `Rising Stars` folder (the one containing the file `modinfo.txt`). This will prevent you from accidentally pushing your work to the Workshop instead of GitHub. -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/upgrades/minor/FTL.txt: -------------------------------------------------------------------------------- 1 | Technology: FTL 2 | Name: #R_DEV_FTL_INCOME 3 | Blurb: #R_DEV_FTL_INCOME_BLURB:0.5 4 | Description: #R_DEV_FTL_INCOME_DESC:0.5 5 | 6 | Icon: ResourceIcon::3 7 | Color: #00c0ff 8 | 9 | Category: Minor Upgrades 10 | Class: Boost 11 | 12 | Point Cost: 500 13 | Time Cost: 60 14 | Symbol: ResourceIcons::22 15 | 16 | AddFTLIncome(0.5) 17 | -------------------------------------------------------------------------------- /Rising Stars/data/resources/level2/Thorium.txt: -------------------------------------------------------------------------------- 1 | Resource: Thorium 2 | Name: #THORIUM 3 | Description: #THORIUM_DESC 4 | Native Biome: Forest 5 | 6 | Icon: ResourceIcons::35 7 | Small Icon: ResourceIconsSmall::35 8 | 9 | Level: 2 10 | Affinity: Energy 11 | 12 | Pressure: 7 Energy 13 | Terraform Cost: 1500 14 | Terraform Labor: 90 15 | ABEM_terraforming::TerraformRequireUnlockTag(Terraform4) 16 | -------------------------------------------------------------------------------- /Rising Stars/data/statuses/traits/ancient/AncientCore.txt: -------------------------------------------------------------------------------- 1 | Status: AncientCore 2 | Visible To: Nobody 3 | 4 | OnDisable(RemoveStatus(CoreProgrammed)) 5 | OnDisable(RemoveStatus(CoreAdapted)) 6 | OnDisable(RemoveStatus(CoreSpecialized)) 7 | Status: AncientTransmuter 8 | Visible To: Nobody 9 | 10 | Status: AncientMiner 11 | Visible To: Nobody 12 | 13 | Status: AncientStripTransmuter 14 | Visible To: Nobody -------------------------------------------------------------------------------- /Rising Stars/data/abilities/traits/ToggleOre.txt: -------------------------------------------------------------------------------- 1 | Ability: ActivateOre 2 | Name: #ABL_ORE_ON 3 | Description: #ABL_ORE_ON_DESC 4 | Icon: ResourceIconsSmall::65 5 | 6 | RemoveStatus(DisableOre) 7 | 8 | Ability: DisableOre 9 | Name: #ABL_ORE_OFF 10 | Description: #ABL_ORE_OFF_DESC 11 | Icon: ResourceIconsSmall::65*#f44 12 | 13 | AddStatus(DisableOre) 14 | ABEM_hooks::UserMustNotHaveStatus(DisableOre) 15 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/upgrades/minor/FTLStorage.txt: -------------------------------------------------------------------------------- 1 | Technology: FTLStorage 2 | Name: #R_DEV_FTL 3 | Description: #R_DEV_FTL_DESC:250 4 | 5 | Point Cost: 400 6 | Time Cost: 60 7 | 8 | Icon: ResourceIcon::3 9 | Color: #00c0ff 10 | Category: Minor Upgrades 11 | Class: Boost 12 | Symbol: FTLStorage 13 | Blurb: #R_DEV_FTL_BLURB:250 14 | 15 | AddFTLStorage(250) 16 | AddStoredFTL(250) 17 | -------------------------------------------------------------------------------- /Rising Stars/data/resources/level2/Medicines.txt: -------------------------------------------------------------------------------- 1 | Resource: Medicines 2 | Name: #MEDICINES 3 | Description: #MEDICINES_DESC 4 | Native Biome: Forest 5 | 6 | Icon: ResourceIcons::15 7 | Small Icon: ResourceIconsSmall::6 8 | 9 | Level: 2 10 | Affinity: Money 11 | 12 | Pressure: 7 Money 13 | Terraform Cost: 3000 14 | Terraform Labor: 180 15 | ABEM_terraforming::TerraformRequireUnlockTag(Terraform4) 16 | -------------------------------------------------------------------------------- /Rising Stars/data/statuses/space/CeruleanNebula.txt: -------------------------------------------------------------------------------- 1 | Status: Cerulean 2 | Name: #NEBULA_CERULEAN 3 | Description: #NEBULA_CERULEAN_DESC 4 | Icon: ResourceIcon::5 * #00ff00 5 | 6 | ABEM_nebulae::DisableShields() 7 | ABEM_nebulae::DisableStatus(Cloaked) 8 | ABEM_nebulae::DisableAbility(Cloak) 9 | ForceHoldFire() 10 | ABEM_sensors::AddSightModifier(200, 0.66) 11 | LimitSeeableRange(3000*$SENSOR_RANGE_MULT) 12 | -------------------------------------------------------------------------------- /Rising Stars/data/abilities/artifact/Telescope.txt: -------------------------------------------------------------------------------- 1 | Ability: Telescope 2 | Name: #ABL_TELESCOPE 3 | Description: #ABL_TELESCOPE_DESC 4 | Icon: VoteIcons::3 5 | Activate Sound: telescope_activate 6 | 7 | Energy Cost: 500 8 | Hotkey: T 9 | ReduceEnergyCostSystemFlag(0.75, CheapArtifacts) 10 | 11 | Target: targ = Object 12 | TargetFilterRegion(targ) 13 | 14 | Trigger(targ, GrantRegionVision(900, Hops = 1)) 15 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/upgrades/major/Abundance.txt: -------------------------------------------------------------------------------- 1 | Technology: Abundance 2 | Name: #R_ABUNDANCE 3 | Description: #R_ABUNDANCE_DESC:50% 4 | 5 | Icon: techEconomics * #2ffca8 6 | Color: #2ffca8 7 | 8 | Category: Special Upgrades 9 | Class: BigUpgrade 10 | 11 | Point Cost: 800 12 | Time Cost: 120 13 | 14 | ReduceResearchPenalty(800) 15 | ModAttribute(Tier3PressureFactor, Multiply, 1.5) 16 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/upgrades/major/Prosperity.txt: -------------------------------------------------------------------------------- 1 | Technology: Prosperity 2 | Name: #R_PROSPERITY 3 | Description: #R_PROSPERITY_DESC:35% 4 | 5 | Icon: techEconomics * #4f2cb4 6 | Color: #4f2cb4 7 | 8 | Category: Special Upgrades 9 | Class: BigUpgrade 10 | 11 | Point Cost: 700 12 | Time Cost: 80 13 | 14 | ReduceResearchPenalty(700) 15 | ModAttribute(WelfareEfficiency, Multiply, 1.35) 16 | -------------------------------------------------------------------------------- /Rising Stars/data/statuses/special/SingularityDoT.txt: -------------------------------------------------------------------------------- 1 | Status: SingularityDisruption 2 | Name: #STATUS_SINGULARITY_DISRUPTION 3 | Description: #STATUS_SINGULARITY_DISRUPTION_DESC 4 | Icon: ShieldImpactSmall*#ff88ff 5 | Color: #ff0000 6 | 7 | PlayParticles(SingularityDisruption, Scale = 1.2) 8 | ABEM_nebulae::DealRandomDamage(Damage = 500, Damage Percent = 0, Shield Percent = 0.025, Shield Multiplier = 1, Shields Only = True) 9 | -------------------------------------------------------------------------------- /Rising Stars/data/systems/unique/MorphSystem.txt: -------------------------------------------------------------------------------- 1 | System: MorphSystem 2 | Frequency: 0.01 3 | Unique: Global 4 | 5 | MakeStar(Temperature = 5778, Radius = 75) 6 | 7 | Repeat(3) 8 | MakePlanet(AsteroidAffinity) 9 | 10 | Repeat(2) 11 | MakeAsteroid(Resource = AsteroidAffinity) 12 | 13 | 14 | MakeAnomaly(MorphRed) 15 | MakeAnomaly(MorphBlue) 16 | MakeAnomaly(MorphGreen) 17 | AddAdjacentAnomalies(1) 18 | -------------------------------------------------------------------------------- /Rising Stars/data/traits/_old/foundation/Industrious.txt: -------------------------------------------------------------------------------- 1 | Trait: Industrious 2 | Name: #TRAIT_INDUSTRIOUS 3 | Description: #TRAIT_INDUSTRIOUS_DESC:10% 4 | Category: Foundation 5 | 6 | Color: #aaffaa 7 | Icon: DesignationIcons::4 8 | 9 | Costs Points: 1 10 | Order: 1 11 | Conflict: StarChildren 12 | Conflict: Ancient 13 | Conflict: VanguardRingworlders 14 | OnHomeworld( ModCivResourceMult(Labor, +0.10)) 15 | -------------------------------------------------------------------------------- /Rising Stars/data/resources/level2/Neutronium.txt: -------------------------------------------------------------------------------- 1 | Resource: Neutronium 2 | Name: #NEUTRONIUM 3 | Description: #NEUTRONIUM_DESC 4 | Native Biome: Mountains 5 | 6 | Icon: ResourceIcons::36 7 | Small Icon: ResourceIconsSmall::36 8 | 9 | Level: 2 10 | Affinity: Defense 11 | 12 | Pressure: 7 Defense 13 | Terraform Cost: 1500 14 | Terraform Labor: 90 15 | ABEM_terraforming::TerraformRequireUnlockTag(Terraform4) 16 | -------------------------------------------------------------------------------- /Rising Stars/data/statuses/subsystems/Shadowport.txt: -------------------------------------------------------------------------------- 1 | Status: Shadowport 2 | Visible To: Nobody 3 | 4 | OnEnable(AddStatus(ShadowportPacked)) 5 | OnDisable(RemoveStatus(ShadowportUnpacked)) 6 | OnDisable(RemoveStatus(ShadowportPacked)) 7 | 8 | CountAsPlanet() 9 | 10 | IsHomeObject() 11 | 12 | GrantAbility(ShadowportSteal) 13 | 14 | AddStatus(CanGiveCargo) #version>=132 15 | AddStatus(CanTakeCargo) #version>=132 -------------------------------------------------------------------------------- /Rising Stars/data/constructions/PurgeCorruption.txt: -------------------------------------------------------------------------------- 1 | Construction: PurgeCorruption 2 | Name: #CONS_PURGE_CORRUPTION 3 | Description: #CONS_PURGE_CORRUPTION_DESC 4 | 5 | Category: Infrastructure 6 | 7 | Time Cost: 60 8 | 9 | RequirePlanet() 10 | ABEM_races::ConsumeInfluencePerPopulation(1) 11 | ABEM_races::AddBuildCostPopulation(10) 12 | RemoveStatus(Corrupted) 13 | RemoveStatus(ShadowportSteal) -------------------------------------------------------------------------------- /Rising Stars/data/design_stats/hex_base.txt: -------------------------------------------------------------------------------- 1 | HexStat: HP 2 | Name: #S_HexHP 3 | Icon: AttributeIcons::6 4 | Color: #80ff80 5 | 6 | Variable: Hex.HP 7 | 8 | HexStat: DamageResist 9 | Name: #S_DR 10 | Color: #c6c33a 11 | Icon: HexagonSubsystems::0 12 | 13 | Variable: Hex.DamageResist 14 | 15 | HexStat: Mass 16 | Name: #S_MASS 17 | Icon: DesignationIcons::16 18 | Color: #aaaaaa 19 | 20 | CustomFormula: Mass 21 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/racial/Technicists.txt: -------------------------------------------------------------------------------- 1 | Technology: ImprovedLabs 2 | Name: #R_IMPROVEDLABS 3 | Description: #R_IMPROVEDLABS_DESC 4 | Category: Racial/DLC Replacements (DO NOT PLACE) 5 | Icon: ResourceIcons::17 6 | Symbol: ResourceIcon::4 7 | Color: #8c4ec9 8 | Point Cost: 500 9 | Time Cost: 90 10 | ModAttribute(ResearchProductionBoost, Add, 1) 11 | ModAttribute(ProgenitorTechProgress, Add, 3.3) 12 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/ftl/Fling.txt: -------------------------------------------------------------------------------- 1 | Technology: FlingBeacons 2 | Name: #R_ORB_FLING 3 | Icon: OrbitalIcons::2 4 | Point Cost: 1500 5 | Time Cost: 60 6 | Description: #R_ORB_FLING_DESC 7 | Class: Unlock 8 | Color: #00c0ff 9 | Category: FTL 10 | SkipOnUnlockedTag(HasTECH_Fling) 11 | ModAttribute(ProgenitorTechProgress, Add, 1.5) 12 | SkipOnUnlockedTag(HasFling) 13 | UnlockTag(HasTECH_Fling) 14 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/subsystems/weapons/VoidRay.txt: -------------------------------------------------------------------------------- 1 | Technology: VoidRay 2 | Name: #R_VOIDRAY 3 | Class: Unlock 4 | Point Cost: 500 5 | 6 | Category: Weapons 7 | 8 | 9 | Time Cost: 120 10 | Icon: AdaptiveLaser::2 11 | Color: #ff0314 12 | Description: #R_VOIDRAY_DESC 13 | ModAttribute(ProgenitorTechProgress, Add, 1.5) 14 | SkipOnUnlockedSubsystem(VoidRay) 15 | UnlockSubsystem(VoidRay) 16 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/upgrades/major/Obedience.txt: -------------------------------------------------------------------------------- 1 | Technology: Obedience 2 | Name: #R_OBEDIENCE 3 | Description: #R_OBEDIENCE_DESC:1 4 | 5 | Icon: techMilitia * #da742c 6 | Color: #da742c 7 | 8 | Category: Special Upgrades 9 | Class: BigUpgrade 10 | 11 | Point Cost: 800 12 | Time Cost: 100 13 | 14 | AddGlobalLoyalty(+1) 15 | 16 | ReduceResearchPenalty(800) 17 | SecondaryInfluenceCost(10) 18 | -------------------------------------------------------------------------------- /Rising Stars/data/resources/level2/Supercarbons.txt: -------------------------------------------------------------------------------- 1 | Resource: Supercarbons 2 | Name: #SUPERCARBONS 3 | Description: #SUPERCARBONS_DESC 4 | Native Biome: Volcanic 5 | 6 | Icon: ResourceIcons::39 7 | Small Icon: ResourceIconsSmall::39 8 | 9 | Level: 2 10 | Affinity: Labor 11 | 12 | Pressure: 12 Labor 13 | Terraform Cost: 1500 14 | Terraform Labor: 90 15 | ABEM_terraforming::TerraformRequireUnlockTag(Terraform4) 16 | -------------------------------------------------------------------------------- /Rising Stars/data/shipsets/progenitor/shipset.txt: -------------------------------------------------------------------------------- 1 | Shipset: Progenitor 2 | Name: Progenitor 3 | Available: Yes 4 | 5 | Hull: ProgenitorFlagMedium 6 | Hull: ProgenitorFlagTiny 7 | Hull: ProgenitorFlagSmall 8 | Hull: ProgenitorFlagLarge 9 | Hull: ProgenitorFlagVeryLarge 10 | Hull: ProgenitorSeedShip 11 | 12 | Hull: GevronStation 13 | 14 | Hull: GevronSatellite 15 | 16 | Hull: ProgenitorTiny 17 | Hull: ProgenitorSmall -------------------------------------------------------------------------------- /Rising Stars/data/subsystems/flagships/modifiers/Bulkhead.txt: -------------------------------------------------------------------------------- 1 | Template: hexVar/BuildCost, var/BaseHP, !tag/NoBulkhead, !tag/NoCore, !tag/IsArmor, !tag/SupportHull 2 | Module: Bulkhead 3 | Name: #BULKHEAD_NAME 4 | Description: #BULKHEAD_DESC 5 | 6 | Color: #eda1ff 7 | Sprite: HexagonSubsystems::0 * #cf00ff 8 | 9 | Hex.HP := 3.0 * Hex.HP 10 | 11 | AddModifier: HpFactor(1.5) 12 | AddModifier: BuildCostFactor(2.0) 13 | -------------------------------------------------------------------------------- /Rising Stars/data/artifacts/GuardianShipyard.txt: -------------------------------------------------------------------------------- 1 | Artifact: GuardianShipyard 2 | Name: #ART_GUARDIAN_INACTIVE 3 | Description: #ART_GUARDIAN_INACTIVE_DESC 4 | Icon: HullIcons::1 5 | Strategic Icon: HullIcons::1 6 | Model: Shipyard 7 | Material: GenericPBR_Shipyard 8 | Size: 50.0 9 | Mass: 30000000000 10 | Frequency: 0 11 | Can Donate: False 12 | Can Own: False 13 | Ability: ActivateGuardianShipyard 14 | Icon Size: 0.06 15 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/upgrades/major/EnergyStorage.txt: -------------------------------------------------------------------------------- 1 | Technology: EnergyStorage 2 | Name: #R_IMP_ENERGY_STORAGE 3 | Description: #R_IMP_ENERGY_STORAGE_DESC:250 4 | 5 | Icon: techIonization * #42b4bd 6 | Color: #42b4bd 7 | 8 | Category: Special Upgrades 9 | Class: BigUpgrade 10 | 11 | Point Cost: 800 12 | Time Cost: 130 13 | 14 | ReduceResearchPenalty(800) 15 | ModAttribute(FreeEnergyStorage, Add, 250) 16 | -------------------------------------------------------------------------------- /Rising Stars/data/artifacts/invasion/InvPlanet.txt: -------------------------------------------------------------------------------- 1 | Artifact: InvPlanet 2 | Name: #INV_ART_PLANET 3 | Description: #INV_ART_PLANET_DESC 4 | 5 | Frequency: 0 6 | Tag: Invasion 7 | 8 | Ability: InvPlanet 9 | Ability: InvPlanetPlus 10 | 11 | AI: ActivateInOwnedSystem(4.0) 12 | Icon: PlanetGenerator*#ff7777 13 | Strategic Icon: PlanetGenerator*#ff7777 14 | 15 | Secondary Chance: 0.25 16 | Secondary AI: ActivateInOwnedSystem(4.0) 17 | -------------------------------------------------------------------------------- /Rising Stars/data/artifacts/revenant/RevenantCore.txt: -------------------------------------------------------------------------------- 1 | Artifact: RevenantCore 2 | Name: #ART_REVENANT_CORE 3 | Description: #ART_REVENANT_CORE_DESC 4 | 5 | Size: 20 6 | Ability: RevenantCore 7 | 8 | Model: ArtifactAdvanced 9 | 10 | Strategic Icon: RevCore 11 | 12 | Mass: 500 13 | 14 | Spread Variable: ENABLE_REVENANT_PARTS 15 | Require Contestation: 60 16 | 17 | AI: RevenantPart() 18 | Icon Size: 0.04 19 | Icon: RevCore 20 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/upgrades/major/EmergencyShields.txt: -------------------------------------------------------------------------------- 1 | Technology: KeyEmergencyShields 2 | Name: #R_KEY_EMERGENCY_SHIELDS 3 | Description: #R_KEY_EMERGENCY_SHIELDS_DESC 4 | Class: BigUpgrade 5 | 6 | Point Cost: 800 7 | Time Cost: 100 8 | 9 | Icon: FissionReactor 10 | Color: #b88b00 11 | Category: Special Upgrades 12 | 13 | ReduceResearchPenalty(800) 14 | AddModifier(EmergencySupplies::AddHaveStatus(1.0)) 15 | -------------------------------------------------------------------------------- /Rising Stars/data/resources/level1/Oil.txt: -------------------------------------------------------------------------------- 1 | Resource: Oil 2 | Name: #OIL 3 | Description: #OIL_DESC 4 | Native Biome: Desert 5 | 6 | Icon: ResourceIcons::8 7 | Small Icon: ResourceIconsSmall::7 8 | 9 | Level: 1 10 | Rarity: Uncommon 11 | Affinity: Energy + Money 12 | 13 | Pressure: 2 Energy 14 | Pressure: 2 Money 15 | Terraform Cost: 1000 16 | Terraform Labor: 60 17 | ABEM_terraforming::TerraformRequireUnlockTag(Terraform2) 18 | -------------------------------------------------------------------------------- /Rising Stars/data/effects/Forcefield.txt: -------------------------------------------------------------------------------- 1 | Effect: ForcefieldBase 2 | Value: Regen 3 | Value: Capacity 4 | Value: CapacityMult 5 | 6 | Tick: ABEM_effects::ForcefieldTick 7 | 8 | Effect: ForcefieldDamage 9 | Value: Capacity 10 | 11 | Damage: ABEM_effects::ForcefieldDamage 12 | 13 | Effect: ForcefieldShutdown 14 | 15 | End: ABEM_effects::ForcefieldShutdown 16 | 17 | Effect: ForcefieldNoRepair 18 | Start: ABEM_effects::ForcefieldNoRepair -------------------------------------------------------------------------------- /Rising Stars/data/resources/level1/Glass.txt: -------------------------------------------------------------------------------- 1 | Resource: Glass 2 | Name: #GLASS 3 | Description: #GLASS_DESC 4 | Native Biome: Desert 5 | 6 | Icon: ResourceIcons::27 7 | Small Icon: ResourceIconsSmall::27 8 | 9 | Level: 1 10 | Rarity: Uncommon 11 | Affinity: Money 12 | 13 | Pressure: 3 Money 14 | Terraform Labor: 90 15 | Terraform Cost: 1500 16 | AddResource(Energy, 1) 17 | ABEM_terraforming::TerraformRequireUnlockTag(Terraform2) 18 | -------------------------------------------------------------------------------- /Rising Stars/data/statuses/traits/ancient/AncientDeveloper.txt: -------------------------------------------------------------------------------- 1 | Status: AncientDeveloper 2 | Visible To: Nobody 3 | 4 | IfAttributeGTE(Adaptation4, 1, AddResource(Defense, 1)) 5 | IfAttributeGTE(AtroanAdaptation3, 1, ModEmpireAttribute(EmpireSupportCapacityFactor, AddFactor, 0.06)) 6 | IfAttributeLT(AtroanAdaptation3, 1, ModEmpireAttribute(EmpireSupportCapacityFactor, AddFactor, 0.05)) 7 | ModEmpireAttribute(EmpireSupportCapacityMassFactor, AddFactor, 0.25) 8 | -------------------------------------------------------------------------------- /Rising Stars/data/abilities/subsystem/SelfDestruct.txt: -------------------------------------------------------------------------------- 1 | Ability: SelfDestruct 2 | Name: #ABL_SELF_DESTRUCT 3 | Description: #ABL_SELF_DESTRUCT_DESC 4 | Icon: AntimatterReactor * #ff0000 5 | 6 | SetInCombat() 7 | Destroy() 8 | Ability: RammingSpeedAbil 9 | Name: #ABL_RAMMING_SPEED 10 | Description: #ABL_RAMMING_SPEED_DESC 11 | Icon: RammingSpeed 12 | Cooldown: 140 13 | Activate Sound: RedAlert 14 | AddStatusSelf(JRamSpeed, Duration = 25) 15 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/upgrades/major/Laboratories.txt: -------------------------------------------------------------------------------- 1 | Technology: Laboratories 2 | Name: #R_LABORATORIES 3 | Description: #R_LABORATORIES_DESC:2 4 | 5 | Icon: ResearchComplex 6 | Symbol: ResourceIcon::4 7 | Color: #8c4ec9 8 | 9 | Category: Special Upgrades 10 | Class: BigUpgrade 11 | 12 | Point Cost: 1000 13 | Time Cost: 180 14 | 15 | ReduceResearchPenalty(1000) 16 | ModAttribute(ResearchComplexExtraPressure, Add, 2) 17 | -------------------------------------------------------------------------------- /Rising Stars/data/resources/level2/AncientCity.txt: -------------------------------------------------------------------------------- 1 | Resource: AncientCity 2 | Name: #ANCIENT_CITY 3 | Description: #ANCIENT_CITY_DESC 4 | Native Biome: Mountains 5 | 6 | Icon: ResourceIcons::38 7 | Small Icon: ResourceIconsSmall::38 8 | 9 | Level: 2 10 | Limitless Level: True 11 | Rarity: Uncommon 12 | Exportable: False 13 | Artificial: True 14 | Affinity: Influence + Research 15 | 16 | Pressure: 8 Influence 17 | Pressure: 2 Research 18 | -------------------------------------------------------------------------------- /Rising Stars/data/artifacts/revenant/RevenantCannon.txt: -------------------------------------------------------------------------------- 1 | Artifact: RevenantCannon 2 | Name: #ART_REVENANT_CANNON 3 | Description: #ART_REVENANT_CANNON_DESC 4 | 5 | Size: 20 6 | Ability: RevenantCannon 7 | 8 | Model: ArtifactAdvanced 9 | 10 | Strategic Icon: RevCannon 11 | 12 | Mass: 800 13 | 14 | Spread Variable: ENABLE_REVENANT_PARTS 15 | Require Contestation: 60 16 | 17 | AI: RevenantPart() 18 | Icon Size: 0.04 19 | Icon: RevCannon 20 | -------------------------------------------------------------------------------- /Rising Stars/data/artifacts/revenant/RevenantEngine.txt: -------------------------------------------------------------------------------- 1 | Artifact: RevenantEngine 2 | Name: #ART_REVENANT_ENGINE 3 | Description: #ART_REVENANT_ENGINE_DESC 4 | 5 | Size: 20 6 | Ability: RevenantEngine 7 | 8 | Model: ArtifactAdvanced 9 | 10 | Strategic Icon: RevEngine 11 | 12 | Mass: 500 13 | 14 | Spread Variable: ENABLE_REVENANT_PARTS 15 | Require Contestation: 60 16 | 17 | AI: RevenantPart() 18 | Icon Size: 0.04 19 | Icon: RevEngine 20 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/megaconstructions/StarForge.txt: -------------------------------------------------------------------------------- 1 | Technology: StarForge 2 | Name: #R_ORB_STARFORGE 3 | Description: #R_ORB_STARFORGE_DESC 4 | Class: Unlock 5 | Category: Megaconstructions 6 | 7 | Point Cost: 1200 8 | Time Cost: 180 9 | 10 | Icon: OrbitalIcons::16 11 | Color: #fff300 12 | 13 | UnlockTag(StarForgeUnlock) 14 | SkipOnUnlockedTag(StarForgeUnlock) 15 | ModAttribute(ProgenitorTechProgress, Add, 10) 16 | -------------------------------------------------------------------------------- /Rising Stars/data/abilities/artifact/TelescopeOre.txt: -------------------------------------------------------------------------------- 1 | Ability: TelescopeOre 2 | Name: #ABL_TELESCOPE 3 | Description: #ABL_TELESCOPEORE_DESC:400000 4 | Icon: VoteIcons::3 5 | Activate Sound: telescope_activate 6 | 7 | 8 | 9 | Target: targ = Object 10 | Range: 400000 * $FTL_MULT 11 | Cooldown: 180 12 | Hotkey: T 13 | TargetFilterRegion(targ) 14 | 15 | ShowFTLValue(100) 16 | ConsumeFTL(100) 17 | Trigger(targ, GrantRegionVision(Duration = 180)) 18 | -------------------------------------------------------------------------------- /Rising Stars/data/constructions/FTL/Exp_Gate.txt: -------------------------------------------------------------------------------- 1 | Construction: EXP_GateUnlock 2 | Name: #C_GATE_UNLOCK 3 | Time Cost: 300 4 | Description: #C_GATE_UNLOCK_DESC 5 | Icon: OrbitalIcons::1 6 | RequireAttributeLT(HasFlux) 7 | RequireNotTrait(Gate) 8 | RequireOnOrbital(EXP_GateCore) 9 | ModAttribute(GateConst, Add, 1) 10 | ModAttribute(ProgenitorTechProgress, Add, 3.5) 11 | RequireAttributeLT(GateConst) 12 | ConsumeFTL(200) 13 | UnlockSubsystem(GateModule) 14 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/megaconstructions/Ringworld.txt: -------------------------------------------------------------------------------- 1 | Technology: Ringworld 2 | Name: #R_ORB_RINGWORLD 3 | Description: #R_ORB_RINGWORLD_DESC 4 | Class: Unlock 5 | Category: Megaconstructions 6 | 7 | Point Cost: 2000 8 | Time Cost: 200 9 | 10 | Icon: PlanetType::14 11 | Color: #83ff40 12 | 13 | UnlockTag(RingworldUnlock) 14 | SkipOnUnlockedTag(RingworldUnlock) 15 | 16 | ModAttribute(ProgenitorTechProgress, Add, 10) 17 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/upgrades/major/RailgunKnockback.txt: -------------------------------------------------------------------------------- 1 | Technology: KeyRailgunKnockback 2 | Name: #R_KEY_RAILGUN_KNOCKBACK 3 | Description: #R_KEY_RAILGUN_KNOCKBACK_DESC 4 | Class: BigUpgrade 5 | 6 | Point Cost: 750 7 | Time Cost: 120 8 | 9 | Icon: Railgun::3 10 | Color: #238f59 11 | Category: Special Upgrades 12 | 13 | ReduceResearchPenalty(750) 14 | UnlockModule(RailgunKnockback) 15 | SkipOnUnlockedModule(RailgunKnockback) 16 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/upgrades/major/SupportSize.txt: -------------------------------------------------------------------------------- 1 | Technology: SupportSize 2 | Name: #R_SUPPORT_SIZE 3 | Description: #R_SUPPORT_SIZE_DESC:7 4 | 5 | Icon: techConstruction * #8ca2ff 6 | Symbol: ActionBarIcons::2 7 | Color: #8ca2ff 8 | 9 | Category: Special Upgrades 10 | Class: BigUpgrade 11 | 12 | Point Cost: 1200 13 | Time Cost: 160 14 | 15 | ReduceResearchPenalty(1200) 16 | AddModifier(SupportHull::IncreaseHexLimit(7)) 17 | -------------------------------------------------------------------------------- /Rising Stars/data/statuses/subsystems/ProgenitorComputer.txt: -------------------------------------------------------------------------------- 1 | Status: ProgenitorComputer 2 | Visible To: Nobody 3 | Unique: True 4 | 5 | AddStatusInitialCombat(ProgenitorCompBoost, Sys.Duration) 6 | 7 | Status: ProgenitorCompBoost 8 | Name: #STATUS_COMPUTER_BOOST 9 | Description: #STATUS_PROGENITOR_COMPUTER_BOOST_DESC 10 | Icon: QuickbarIcons::6 11 | Unique: True 12 | Show Duration: True 13 | 14 | ModFleetEffectivenessSubsystem(Sys.EfficiencyBoost) 15 | -------------------------------------------------------------------------------- /Rising Stars/data/statuses/traits/RRInitialRingworld.txt: -------------------------------------------------------------------------------- 1 | Status: RRInitialRingworld 2 | Visible To: Nobody 3 | Collapses: True 4 | 5 | 6 | 7 | OnEnable(ringworlders::SetAsHome()) 8 | IsHomeObject() 9 | OnEnable(SpawnBuilding(PlanetaryCannon, (12, 0), Develop = True)) 10 | OnEnable(GivePopulation(2)) 11 | OnEnable(SpawnBuilding(Factory, (4, 3), Develop = True)) 12 | AddStatus(Ringworld) 13 | AddDummyResource(Water, 1) 14 | AddDummyResource(Meat, 1) 15 | -------------------------------------------------------------------------------- /Rising Stars/data/systems/special/BlackHole.txt: -------------------------------------------------------------------------------- 1 | System: BlackHole 2 | Frequency: 0 3 | 4 | MakeBlackhole(Radius = 20.0) 5 | 6 | RepeatModified(1, $PLANET_FREQUENCY) 7 | MakePlanet(Orbit Spacing = 600:800) 8 | MakeAsteroidBelt(6) 9 | RepeatModified(1, $PLANET_FREQUENCY) 10 | MakePlanet(Orbit Spacing = 800:1000) 11 | MakePlanet(AncientHubworld, Grid Size = (26, 15), Conditions = False) 12 | ForceMakeCreepCamp(BlackHoleCamp, Force Aggression = True) 13 | -------------------------------------------------------------------------------- /Rising Stars/data/artifacts/revenant/RevenantChassis.txt: -------------------------------------------------------------------------------- 1 | Artifact: RevenantChassis 2 | Name: #ART_REVENANT_CHASSIS 3 | Description: #ART_REVENANT_CHASSIS_DESC 4 | 5 | Size: 20 6 | Ability: RevenantChassis 7 | 8 | Model: ArtifactAdvanced 9 | 10 | Strategic Icon: RevChassis 11 | 12 | Mass: 1000 13 | 14 | Spread Variable: ENABLE_REVENANT_PARTS 15 | Require Contestation: 60 16 | 17 | AI: RevenantPart() 18 | Icon Size: 0.04 19 | Icon: RevChassis 20 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/buildings/PlanetaryEngine.txt: -------------------------------------------------------------------------------- 1 | Technology: PlanetaryEngine 2 | Name: #R_BLD_PLANET_ENGINE 3 | Description: #R_BLD_PLANET_ENGINE_DESC 4 | Class: Unlock 5 | Category: Buildings 6 | 7 | Point Cost: 2000 8 | Time Cost: 180 9 | 10 | Icon: PlanetThruster 11 | Color: #00f3ff 12 | 13 | ModAttribute(ProgenitorTechProgress, Add, 5) 14 | UnlockTag(PlanetaryEngineUnlock) 15 | SkipOnUnlockedTag(PlanetaryEngineUnlock) 16 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/ftl/Gates.txt: -------------------------------------------------------------------------------- 1 | Technology: GateTech 2 | Name: #R_ORB_GATE 3 | Description: #R_ORB_GATE_DESC 4 | Icon: OrbitalIcons::1 5 | 6 | Point Cost: 2000 7 | Time Cost: 60 8 | 9 | 10 | Class: Unlock 11 | Color: #00c0ff 12 | Category: FTL 13 | 14 | 15 | ModAttribute(ProgenitorTechProgress, Add, 1.5) 16 | 17 | SkipOnUnlockedTag(HasTECH_Gate) 18 | UnlockTag(HasTECH_Gate) 19 | SkipOnUnlockedSubsystem(GateModule) 20 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/ftl/Slipstream.txt: -------------------------------------------------------------------------------- 1 | Technology: SS 2 | Name: #R_SYS_SLIPSTREAM 3 | Icon: TechIcons::57 4 | Point Cost: 1250 5 | Time Cost: 60 6 | Description: #R_SYS_SLIPSTREAM_DESC 7 | Class: Unlock 8 | Color: #00c0ff 9 | Category: FTL 10 | SkipOnUnlockedSubsystem(ExperimentalSlipstream) 11 | ModAttribute(ProgenitorTechProgress, Add, 1.5) 12 | SkipOnUnlockedSubsystem(Slipstream) 13 | UnlockSubsystem(ExperimentalSlipstream) 14 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/modifiers/QuantumBattery.txt: -------------------------------------------------------------------------------- 1 | Technology: QuantumBattery 2 | Name: #R_MOD_QUANTUM_BATTERY 3 | Description: #R_MOD_QUANTUM_BATTERY_DESC:1200 4 | Class: Unlock 5 | Category: Modifiers 6 | 7 | Point Cost: 500 8 | Time Cost: 90 9 | 10 | Color: #d8cc48 11 | Icon: QuantumBattery 12 | 13 | UnlockModule(QuantumBattery) 14 | SkipOnUnlockedModule(QuantumBattery) 15 | ModAttribute(ProgenitorTechProgress, Add, 5) 16 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/upgrades/major/FTLJammerCombat.txt: -------------------------------------------------------------------------------- 1 | Technology: FTLJammerCombat 2 | Name: #R_FTL_JAMMER_COMBAT 3 | Description: #R_FTL_JAMMER_COMBAT_DESC 4 | 5 | Icon: OrbitalIcons::9 * #ff0000 6 | Symbol: techImpact * #ff8000 7 | Color: #ff8080 8 | 9 | Category: Special Upgrades 10 | Class: BigUpgrade 11 | 12 | Point Cost: 750 13 | Time Cost: 140 14 | 15 | ReduceResearchPenalty(750) 16 | ModAttribute(FTLJammerCombat, Add, 1) 17 | -------------------------------------------------------------------------------- /Rising Stars/data/resources/level1/Deuterium.txt: -------------------------------------------------------------------------------- 1 | Resource: Deuterium 2 | Name: #DEUTERIUM 3 | Description: #DEUTERIUM_DESC 4 | Native Biome: Ice 5 | 6 | Icon: ResourceIcons::31 7 | Small Icon: ResourceIconsSmall::31 8 | 9 | Level: 1 10 | Rarity: Uncommon 11 | Affinity: Research + Defense 12 | 13 | Pressure: 2 Research 14 | Pressure: 2 Defense 15 | Terraform Labor: 45 16 | Terraform Cost: 750 17 | ABEM_terraforming::TerraformRequireUnlockTag(Terraform2) 18 | -------------------------------------------------------------------------------- /Rising Stars/data/subsystems/supports/special/SupportBulkhead.txt: -------------------------------------------------------------------------------- 1 | Template: hexVar/BuildCost, var/BaseHP, !tag/NoBulkhead, !tag/NoCore, !tag/IsArmor, tag/SupportShip 2 | Module: Bulkhead 3 | Name: #BULKHEAD_NAME 4 | Description: #BULKHEAD_DESC 5 | 6 | Color: #eda1ff 7 | Sprite: HexagonSubsystems::0 * #cf00ff 8 | 9 | Hex.HP := 3.0 * Hex.HP 10 | 11 | AddModifier: HpFactor(1.5) 12 | AddModifier: BuildCostFactor(2.0) 13 | AddModifier: LaborCostFactor(1.5) 14 | -------------------------------------------------------------------------------- /Rising Stars/data/orbitals/military/TractorBeam.txt: -------------------------------------------------------------------------------- 1 | Module: TractorBeam 2 | Name: #ORB_TRACTOR_BEAM 3 | Description: #ORB_TRACTOR_BEAM_DESC 4 | Blurb: #ORB_TRACTOR_BEAM_BLURB 5 | Icon: TractorGun::0 6 | Health: 2500 7 | Armor: 1500 8 | Maintenance: 50 9 | Build Cost: 500 10 | Labor Cost: 10 11 | Strategic Icon: TractorGun::0 12 | Distant Icon: TractorGun::0 13 | GrantAbility(OrbitalTractorBeam) 14 | ConsumeCargo(Ore, 500) 15 | RequireOnOrbital(MilitaryCore) 16 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/ftl/Hyperdrive.txt: -------------------------------------------------------------------------------- 1 | Technology: Hyperdrive 2 | Name: #R_SYS_HYPERDRIVE 3 | Point Cost: 1250 4 | Time Cost: 60 5 | Icon: TechIcons::34 6 | Description: #R_SYS_HYPERDRIVE_DESC 7 | Class: Unlock 8 | Color: #00c0ff 9 | Category: FTL 10 | SkipOnUnlockedSubsystem(ExperimentalHyperdrive) 11 | ModAttribute(ProgenitorTechProgress, Add, 1.5) 12 | SkipOnUnlockedSubsystem(Hyperdrive) 13 | UnlockSubsystem(ExperimentalHyperdrive) 14 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/modifiers/Bulkhead.txt: -------------------------------------------------------------------------------- 1 | Technology: Bulkhead 2 | Name: #R_MOD_BULKHEAD 3 | Description: #R_MOD_BULKHEAD_DESC 4 | Class: Unlock 5 | 6 | Point Cost: 400 7 | Time Cost: 60 8 | 9 | Icon: HexagonSubsystems::0 * #cf00ff 10 | Color: #eda1ff 11 | Category: Modifiers 12 | 13 | UnlockModule(Bulkhead) 14 | SkipOnUnlockedModule(Bulkhead) 15 | 16 | SecondaryMoneyCost(750) 17 | ModAttribute(ProgenitorTechProgress, Add, 0.2) 18 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/subsystems/hulls/MinerHull.txt: -------------------------------------------------------------------------------- 1 | Technology: MinerHull 2 | Name: #R_MINER_HULL 3 | Description: #R_MINER_HULL_DESC 4 | Class: Unlock 5 | Category: Hulls 6 | 7 | Point Cost: 600 8 | Time Cost: 120 9 | 10 | Icon: HullSubsystems::6 11 | Color: #ff0623 12 | 13 | UnlockSubsystem(MinerHull) 14 | SkipOnUnlockedSubsystem(MinerHull) 15 | 16 | SecondaryMoneyCost(700) 17 | ModAttribute(ProgenitorTechProgress, Add, 1.5) 18 | -------------------------------------------------------------------------------- /Rising Stars/data/constructions/FTL/Exp_Beacon.txt: -------------------------------------------------------------------------------- 1 | Construction: EXP_FlingCoreUnlock 2 | Name: #C_FLING_UNLOCK 3 | Time Cost: 300 4 | Description: #C_FLING_UNLOCK_DESC 5 | Icon: OrbitalIcons::2 6 | RequireAttributeLT(HasFlux) 7 | RequireNotTrait(Fling) 8 | RequireOnOrbital(EXP_FlingCore) 9 | ModAttribute(FlingBeaconConst, Add, 1) 10 | ModAttribute(ProgenitorTechProgress, Add, 3.5) 11 | RequireAttributeLT(FlingBeaconConst) 12 | ConsumeFTL(200) 13 | UnlockTag(HasFling) 14 | -------------------------------------------------------------------------------- /Rising Stars/data/influence/instant/Innovation.txt: -------------------------------------------------------------------------------- 1 | Card: Innovation 2 | Name: #CARD_INNOVATION 3 | Description: #CARD_INNOVATION_DESC 4 | 5 | DLC: Heralds 6 | 7 | Icon: CardIcons::29 8 | Color: #ff0000 9 | Class: Instant 10 | Rarity: Epic 11 | 12 | Base Purchase Cost: 8 13 | Placement Purchase Cost: 2 14 | 15 | OnOwner(ABEM_races::GiveRandomUnlock()) 16 | 17 | AI: BuyWeight(2.0) 18 | AI: PlayWeightUnconditionally(20.0) 19 | Max Uses: 2 20 | Can Overquality: False -------------------------------------------------------------------------------- /Rising Stars/data/orbitals/military/ArmorPlating.txt: -------------------------------------------------------------------------------- 1 | Module: ArmorPlating 2 | Name: #ORB_ARMOR_PLATING 3 | Description: #ORB_ARMOR_PLATING_DESC 4 | Blurb: #ORB_ARMOR_PLATING_BLURB 5 | Unique: False 6 | Distant Icon: techArmor 7 | Icon: techArmor 8 | Health: 5000 9 | Armor: 15000 10 | Maintenance: 5 11 | Build Cost: 200 12 | Labor Cost: 20 13 | Strategic Icon: techArmor 14 | ConsumeCargo(Ore, 250) 15 | ABEM_orbitals::IfHasModule(AddStatus(ArmorPlating), MilitaryCore) 16 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/upgrades/major/FTLCost.txt: -------------------------------------------------------------------------------- 1 | Technology: FTLCost 2 | Name: #R_FTL_COST 3 | Description: #R_FTL_COST_DESC:25% 4 | 5 | Icon: ResourceIcon::3 6 | Symbol: techPhaseHarmonics * #00c0ff 7 | Color: #00c0ff 8 | 9 | Category: Special Upgrades 10 | Class: BigUpgrade 11 | 12 | Point Cost: 750 13 | Time Cost: 100 14 | 15 | ReduceResearchPenalty(750) 16 | ModAttribute(FTLCostFactor, Multiply, 0.75) 17 | AddModifier(FTLCostFactor(0.75)) 18 | -------------------------------------------------------------------------------- /Rising Stars/data/resources/level1/Atium.txt: -------------------------------------------------------------------------------- 1 | Resource: Atium 2 | Name: #R_ATIUM 3 | Description: #R_ATIUM_DESC 4 | Native Biome: Desert 5 | DLC: Heralds 6 | 7 | Small Icon: ResourceIconsSmall::78 8 | 9 | Level: 1 10 | Rarity: Epic 11 | Affinity: Money 12 | 13 | Pressure: 5 Money 14 | Terraform Labor: 180 15 | Terraform Cost: 3000 16 | 17 | OnNative(GrantAllFleetVision(Require Heading Here = True)) 18 | ABEM_terraforming::TerraformRequireUnlockTag(Terraform4) 19 | -------------------------------------------------------------------------------- /Rising Stars/data/shaders/RS_shaders.txt: -------------------------------------------------------------------------------- 1 | Shader: Beam 2 | Vertex: data/shaders/source/base_uv_vs.txt 3 | Fragment: data/shaders/source/beam_ps.txt 4 | 5 | Variable: tex texture = 0 6 | Variable: float cycle = game_time_cycle 2.0 7 | 8 | Shader: NoisyBeam 9 | Vertex: data/shaders/source/base_uv_vs.txt 10 | Fragment: data/shaders/source/beam_noisy_ps.txt 11 | 12 | Variable: tex texture = 0 13 | Variable: tex noise = 1 14 | Variable: float cycle = game_time_cycle 8.0 15 | -------------------------------------------------------------------------------- /Rising Stars/data/statuses/traits/ancient/AncientReinforcer.txt: -------------------------------------------------------------------------------- 1 | Status: AncientReinforcer 2 | Visible To: Nobody 3 | 4 | IfAttributeGTE(Adaptation4, 1, ModEmpireAttribute(FleetEfficiencyFactor, AddFactor, 0.01)) 5 | 6 | IfAttributeGTE(AtroanAdaptation3, 1, ModEmpireAttribute(EmpireRepairFactor, AddFactor, 0.084)) 7 | IfAttributeLT(AtroanAdaptation3, 1, ModEmpireAttribute(EmpireRepairFactor, AddFactor, 0.07)) 8 | 9 | ModEmpireAttribute(EmpireRepairMassFactor, AddFactor, 0.25) 10 | -------------------------------------------------------------------------------- /Rising Stars/data/abilities/artifact/OverchargeFleet.txt: -------------------------------------------------------------------------------- 1 | Ability: OverchargeFleet 2 | Name: #ABL_OVERCHARGE_FLEET 3 | Description: #ABL_OVERCHARGE_FLEET_DESC 4 | Icon: ResourceIcon::2 5 | 6 | Energy Cost: 900 7 | 8 | Target: targ = Object 9 | TargetFilterFlagship(targ) 10 | TargetFilterOwned(targ) 11 | TargetFilterSameTerritory(targ) 12 | TargetFilterNotStatus(targ, PowerCell) 13 | 14 | Trigger(targ, AddStatus(PowerCell)) 15 | 16 | GiveAchievement(ACH_USE_ARTIFACT) 17 | -------------------------------------------------------------------------------- /Rising Stars/data/abilities/special/UnobtaniumMorph.txt: -------------------------------------------------------------------------------- 1 | Ability: UnobtaniumMorph 2 | Name: #ABL_MORPH_UNOBTANIUM 3 | Description: #ABL_MORPH_UNOBTANIUM_DESC 4 | Icon: ResourceIcons::26 5 | 6 | Target: targ = Object 7 | TargetFilterType(targ, Planet) 8 | TargetFilterAllied(targ) 9 | TargetFilterResourceNonUnique(targ) 10 | TargetFilterResourceNonArtificial(targ) 11 | TargetFilterResourceNot(targ, Plains) 12 | 13 | MorphResourceIntoNative(targ) 14 | AddStatusSelf(MorphedUnobtanium) -------------------------------------------------------------------------------- /Rising Stars/data/buildings/special/AncientCannon.txt: -------------------------------------------------------------------------------- 1 | Building: AncientCannon 2 | Name: #BLD_ANCIENT_CANNON 3 | Description: #BLD_ANCIENT_CANNON_DESC 4 | Sprite: PlanetaryArtilleryCannon 5 | 6 | Size: 6x2 7 | 8 | CannotBuildManually() 9 | 10 | IfNotSiege( AddTurret(QuantumArtillery, BaselineDamage = 2500, Range=3000, Radius=150, Reload=10.0, Speed=300, Spread=0.0, FireArc=3.14, Tracking=0.2, FireTolerance=0, BaselineSize = 100, MinRatio = 0.2, MaxRatio = 15, DamageType = 2) ) 11 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/modifiers/SpinalMount.txt: -------------------------------------------------------------------------------- 1 | Technology: SpinalMount 2 | Name: #R_SYS_SPINAL_MOUNT 3 | Description: #R_SYS_SPINAL_MOUNT_DESC 4 | Class: Unlock 5 | Category: Modifiers 6 | 7 | Point Cost: 600 8 | Time Cost: 120 9 | 10 | Icon: SpinalMount 11 | Color: #8edcef 12 | 13 | UnlockModule(SpinalMount) 14 | SkipOnUnlockedModule(SpinalMount) 15 | 16 | SecondaryMoneyCost(1000) 17 | 18 | ModAttribute(ProgenitorTechProgress, Add, 1.5) 19 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/subsystems/equipment/combat/SkipDrive.txt: -------------------------------------------------------------------------------- 1 | Technology: SkipDrive 2 | Name: #R_SYS_SKIP_DRIVE 3 | Description: #R_SYS_SKIP_DRIVE_DESC 4 | Class: Unlock 5 | Category: Equipment - Combat 6 | 7 | Point Cost: 500 8 | Time Cost: 90 9 | 10 | Icon: HexagonSubsystems::10 * #fff980 11 | Color: #fff980 12 | 13 | UnlockSubsystem(SkipDrive) 14 | SkipOnUnlockedSubsystem(SkipDrive) 15 | 16 | ModAttribute(ProgenitorTechProgress, Add, 2.5) 17 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/subsystems/weapons/MassDisruptor.txt: -------------------------------------------------------------------------------- 1 | Technology: MatterDisruptor 2 | Name: #R_SYS_MATTERDISRUPTOR 3 | Class: Unlock 4 | Point Cost: 600 5 | Time Cost: 120 6 | Icon: MatterDisruptor::2 7 | Description: #R_MATTERDISRUPTOR_DESC 8 | 9 | Category: Weapons 10 | 11 | Color: #06c0ff 12 | 13 | 14 | SkipOnUnlockedSubsystem(MatterDisruptor) 15 | ModAttribute(ProgenitorTechProgress, Add, 2.5) 16 | UnlockSubsystem(MatterDisruptor) 17 | -------------------------------------------------------------------------------- /Rising Stars/data/statuses/subsystems/GateModule.txt: -------------------------------------------------------------------------------- 1 | Status: GateModule 2 | Visible To: Nobody 3 | 4 | OnEnable(AddStatus(GateInit)) 5 | OnDisable(RemoveStatus(GateUnpacked)) 6 | OnDisable(RemoveStatus(GatePacked)) 7 | 8 | Status: GateInit 9 | Visible To: Nobody 10 | 11 | OnEnable(AddStatus(GatePacked)) 12 | IfNotFTLSuppressed(OnEnable(AddStatus(GateUnpacked))) 13 | IfNotFTLSuppressed(OnEnable(RemoveStatus(GatePacked))) 14 | IfNotFTLSuppressed(OnEnable(RemoveStatus(GateInit))) -------------------------------------------------------------------------------- /Rising Stars/data/traits/personality/Nimble.txt: -------------------------------------------------------------------------------- 1 | Trait: Nimble 2 | Name: #TRAIT_NIMBLE 3 | Description: #TRAIT_NIMBLE_DESC 4 | Category: Personality 5 | Order: 8 6 | 7 | Color: #aaffaa 8 | Icon: AttributeIcons::0 9 | 10 | Costs Points: 1 11 | Conflict: Clumsy 12 | 13 | AddModifier( ThrustMult(1.3) ) 14 | AddModifier( TurnThrustMult(1.3) ) 15 | AddModifier( HyperSpeedMult(1.3) ) 16 | AddModifier( SlipstreamMult(1.15) ) 17 | ModEmpireAttribute( FTLThrustFactor, Multiply, 0.7 ) -------------------------------------------------------------------------------- /Rising Stars/locales/english/RS_attitudes.txt: -------------------------------------------------------------------------------- 1 | ATT_XENOPHOBIC_PROGRESS: Maintain [b]$1 Military Starbase(s)[/b]. 2 | ATT_XENOPHOBIC_L2: Increases the support capacity of military starbases by 128 and increases their health by 10000. 3 | ATT_XENOPHOBIC_L3: Support ships assigned to military starbases independently move across the system to attack enemy fleets. 4 | ATT_COLLECTIVISM_PROGRESS: Maintain [b]$1 Asteroid Mining Base(s)[/b]. 5 | ATT_PROGRESSIVE_L5: Reduces the mass of all your ships and stations by 15%. -------------------------------------------------------------------------------- /Rising Stars/data/abilities/mining/BindAsteroid.txt: -------------------------------------------------------------------------------- 1 | Ability: BindAsteroid 2 | Name: #ABL_BIND_ASTEROID 3 | Description: #ABL_BIND_ASTEROID_DESC 4 | Icon: OreAsteroidIcon 5 | 6 | Range: 400 7 | 8 | Target: targ = Object 9 | Hotkey: B 10 | 11 | IsToggleTarget(targ, Check Range = False, Channels = False) 12 | TractorObject(targ, Max Distance = 600) 13 | PersistentBeamEffect(targ, #b8b8d8, Tractor, 0.5) 14 | AutoCastNearby(targ) 15 | 16 | ABEM_cargo::MaintainMiningBase(targ) 17 | -------------------------------------------------------------------------------- /Rising Stars/data/artifacts/Arcology.txt: -------------------------------------------------------------------------------- 1 | Artifact: Arcology 2 | Name: #ART_ARCOLOGY 3 | Description: #ART_ARCOLOGY_DESC 4 | Frequency: 0.5 5 | Natural: True 6 | 7 | Ability: DevelopPlanet 8 | 9 | AI: ActivateOnBestPlanet(5.0) 10 | Icon: Arcology 11 | Strategic Icon: Arcology 12 | 13 | Artifact: NatureDevice 14 | Name: #ART_ARCOLOGY 15 | Description: #ART_ARCOLOGY_DESC 16 | Frequency: 0 17 | 18 | Ability: DevelopPlanet 19 | Icon: Arcology 20 | Strategic Icon: Arcology 21 | -------------------------------------------------------------------------------- /Rising Stars/data/artifacts/ProtoPlanet.txt: -------------------------------------------------------------------------------- 1 | Artifact: ProtoPlanet 2 | Name: #ART_PROTO_PLANET 3 | Description: #ART_PROTO_PLANET_DESC 4 | Natural: True 5 | 6 | Model: Sphere_high 7 | Material: CrystalSurface 8 | Size: 5 9 | 10 | Icon: PlanetType::5 11 | Strategic Icon: PlanetType::5 12 | Icon Size: 0.02 13 | 14 | Orbit: True 15 | 16 | Ability: ProtoLevel0 17 | Ability: ProtoLevel1 18 | Ability: ProtoLevel2 19 | Ability: ProtoLevel3 20 | 21 | Time Frequency: 0.1 22 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/progenitor/Armor.txt: -------------------------------------------------------------------------------- 1 | Technology: ProgenitorArmor 2 | Name: #R_SYS_PROGENITOR_ARMOR 3 | Icon: ProgenitorArmor 4 | Color: #39b0ff 5 | Point Cost: 1500 6 | Time Cost: 180 7 | Class: Secret 8 | Blurb: 9 | Description: #R_SYS_PROGENITOR_ARMOR_DESC 10 | Category: Progenitor 11 | ModAttribute(ProgenitorTechProgress, Add, 15) 12 | AutoUnlockOnUnlockedTag(ProgenitorArmor) 13 | UnlockSubsystem(ProgenitorArmor) 14 | RequireUnlockTag(ProgenitorTech) 15 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/secret/Spire.txt: -------------------------------------------------------------------------------- 1 | Technology: Spire 2 | Name: #R_BLD_SPIRE 3 | Description: #R_BLD_SPIRE_DESC 4 | Class: Secret 5 | Category: Secret 6 | 7 | DLC: Heralds 8 | DLC Replace: DLCConnector 9 | 10 | Point Cost: 1000 11 | Time Cost: 120 12 | 13 | Icon: Spire 14 | Color: #cc3a7d 15 | 16 | UnlockTag(SpireUnlock) 17 | RequireEmpireAttributeGTE(MegacitiesBuilt, 5, #RESEARCH_REQ_MEGACITIES) 18 | ModAttribute(ProgenitorTechProgress, Add, 2.5) 19 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/subsystems/armor/CompositeArmor.txt: -------------------------------------------------------------------------------- 1 | Technology: CompositeArmor 2 | Name: #S_COMPOSITE_ARMOR 3 | Class: Unlock 4 | 5 | Point Cost: 500 6 | Time Cost: 90 7 | 8 | Icon: CompositeArmor 9 | Color: #676210 10 | Description: #R_COMPOSITE_ARMOR_DESC 11 | Category: Armor 12 | 13 | ModAttribute(ProgenitorTechProgress, Add, 2.5) 14 | SkipOnUnlockedSubsystem(CompositeArmor) 15 | UnlockSubsystem(CompositeArmor) 16 | SecondaryMoneyCost(750) 17 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/subsystems/armor/QuantumArmor.txt: -------------------------------------------------------------------------------- 1 | Technology: QuantumArmor 2 | Name: #S_QUANTUM_ARMOR 3 | Class: Unlock 4 | 5 | Point Cost: 1000 6 | Time Cost: 240 7 | 8 | Icon: QuantumArmor 9 | Color: #449944 10 | Description: #R_SYS_QUANTUM_ARMOR_DESC 11 | Category: Armor 12 | 13 | UnlockSubsystem(QuantumArmor) 14 | 15 | ModAttribute(ProgenitorTechProgress, Add, 5) 16 | SkipOnUnlockedSubsystem(QuantumArmor) 17 | SecondaryMoneyCost(2000) 18 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/subsystems/hulls/TitanHull.txt: -------------------------------------------------------------------------------- 1 | Technology: TitanHull 2 | Name: #R_SYS_TITAN_HULL 3 | Description: #R_SYS_TITAN_HULL_DESC 4 | Class: Unlock 5 | Category: Hulls 6 | 7 | Point Cost: 500 8 | Time Cost: 90 9 | 10 | Icon: DesignationIcons::16 11 | Color: #cc6a3a 12 | 13 | UnlockSubsystem(TitanHull) 14 | SkipOnUnlockedSubsystem(TitanHull) 15 | 16 | SecondaryEnergyCost(1500) 17 | 18 | ModAttribute(ProgenitorTechProgress, Add, 2.5) 19 | -------------------------------------------------------------------------------- /Rising Stars/data/traits/_old/foundation/SequesteredSociety.txt: -------------------------------------------------------------------------------- 1 | Trait: SequesteredSociety 2 | Name: #TRAIT_SEQUESTERED_SOCIETY 3 | Description: #TRAIT_SEQUESTERED_SOCIETY_DESC 4 | Category: Foundation 5 | 6 | Icon: SequesteredSociety 7 | Color: #aaffaa 8 | 9 | Costs Points: 1 10 | Conflict: StarChildren 11 | Conflict: Ancient 12 | Conflict: VanguardRingworlders 13 | 14 | TriggerHomeworld(AddStatus(SequesteredSociety), Run Post = True) 15 | TriggerHomeworld(DevelopTiles(25)) 16 | -------------------------------------------------------------------------------- /Rising Stars/data/abilities/traits/ToggleBaseMaterials.txt: -------------------------------------------------------------------------------- 1 | Ability: ActivateBaseMaterials 2 | Name: #ABL_MATERIALS_ON 3 | Description: #ABL_MATERIALS_ON_DESC 4 | Icon: ResourceIconsSmall::81 5 | 6 | RemoveStatus(DisableBaseMaterials) 7 | 8 | Ability: DisableBaseMaterials 9 | Name: #ABL_MATERIALS_OFF 10 | Description: #ABL_MATERIALS_OFF_DESC 11 | Icon: ResourceIconsSmall::81*#f88 12 | 13 | AddStatus(DisableBaseMaterials) 14 | ABEM_hooks::UserMustNotHaveStatus(DisableBaseMaterials) 15 | -------------------------------------------------------------------------------- /Rising Stars/data/constructions/FTL/Exp_Jumpdrive.txt: -------------------------------------------------------------------------------- 1 | Construction: EXP_JumpdriveUnlock 2 | Time Cost: 300 3 | Description: #C_JUMPDRIVE_UNLOCK_DESC 4 | Name: #C_JUMPDRIVE_UNLOCK 5 | Icon: Jumpdrive 6 | RequireAttributeLT(HasFlux) 7 | UnlockSubsystem(Jumpdrive) 8 | ConsumeFTL(200) 9 | RequireAttributeLT(JumpdriveConst) 10 | ModAttribute(ProgenitorTechProgress, Add, 3.5) 11 | ModAttribute(JumpdriveConst, Add, 1) 12 | RequireStatus(HasPrototypeJumpdrive) 13 | RequireNotTrait(Jumpdrive) 14 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/subsystems/shields/Forcefield.txt: -------------------------------------------------------------------------------- 1 | Technology: Forcefield 2 | Name: #R_FORCEFIELD 3 | Description: #R_FORCEFIELD_DESC 4 | Class: Unlock 5 | Icon: SupportShield*#50ffff 6 | Symbol: Forcefield*#00a4db 7 | Color: #00a4db 8 | Point Cost: 750 9 | Time Cost: 120 10 | Category: Shields 11 | SecondaryEnergyCost(1500) 12 | ModAttribute(ProgenitorTechProgress, Add, 2.5) 13 | SkipOnUnlockedSubsystem(Forcefield) 14 | UnlockSubsystem(Forcefield) 15 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/subsystems/weapons/Warhead.txt: -------------------------------------------------------------------------------- 1 | Technology: Warhead 2 | Name: #R_SYS_WARHEAD 3 | Description: #R_SYS_WARHEAD_DESC 4 | Class: Unlock 5 | Category: Weapons 6 | 7 | Point Cost: 600 8 | Time Cost: 120 9 | 10 | Icon: Warhead::0 11 | Color: #df123d 12 | 13 | DLC: Heralds 14 | DLC Replace: DLCConnector 15 | 16 | UnlockSubsystem(Warhead) 17 | SkipOnUnlockedSubsystem(Warhead) 18 | 19 | ModAttribute(ProgenitorTechProgress, Add, 1.5) 20 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/upgrades/major/BeamCycling.txt: -------------------------------------------------------------------------------- 1 | Technology: BeamCycling 2 | Name: #R_BEAM_CYCLING 3 | Description: #R_BEAM_CYCLING_DESC:30% 4 | 5 | Icon: Laser::3 6 | Symbol: techCooling * #c680ff 7 | Color: #80ffea 8 | 9 | Category: Special Upgrades 10 | Class: BigUpgrade 11 | 12 | Point Cost: 750 13 | Time Cost: 100 14 | 15 | AddModifier( tag/BeamBase::DurationMult(1.3) ) 16 | 17 | ReduceResearchPenalty(750) 18 | AffectsTaggedSubsystems(BeamBase) 19 | -------------------------------------------------------------------------------- /Rising Stars/data/traits/personality/Clumsy.txt: -------------------------------------------------------------------------------- 1 | Trait: Clumsy 2 | Name: #TRAIT_CLUMSY 3 | Description: #TRAIT_CLUMSY_DESC 4 | Category: Personality 5 | Order: 9 6 | 7 | Color: #ffaaaa 8 | Icon: AttributeIcons::0*#ff0000 9 | Gives Points: 1 10 | Conflict: Nimble 11 | 12 | 13 | AddModifier( ThrustMult(0.7) ) 14 | AddModifier( TurnThrustMult(0.7) ) 15 | AddModifier( HyperSpeedMult(0.7) ) 16 | AddModifier( SlipstreamMult(0.85) ) 17 | ModEmpireAttribute( FTLThrustFactor, Multiply, 1.3 ) -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/progenitor/PiercingDrones.txt: -------------------------------------------------------------------------------- 1 | Technology: PiercingDrones 2 | Icon: HexagonSubsystems::9 3 | Description: #R_SYS_PIERCING_DRONES_DESC 4 | Name: #R_SYS_PIERCING_DRONES 5 | Point Cost: 1500 6 | Time Cost: 180 7 | Class: Secret 8 | Blurb: 9 | Color: #d3de07 10 | Category: Progenitor 11 | ModAttribute(ProgenitorTechProgress, Add, 15) 12 | RequireUnlockTag(ProgenitorTech) 13 | AutoUnlockOnUnlockedTag(PiercingDrones) 14 | UnlockSubsystem(PiercingDrones) 15 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/megaconstructions/VacuumTelescope.txt: -------------------------------------------------------------------------------- 1 | Technology: VacuumTelescope 2 | Name: #R_ORB_VACUUM_TELESCOPE 3 | Description: #R_ORB_VACUUM_TELESCOPE_DESC 4 | Class: Unlock 5 | Category: Megaconstructions 6 | 7 | Point Cost: 900 8 | Time Cost: 180 9 | 10 | Icon: GuiOrbitalIcons::17 11 | Color: #fff300 12 | 13 | UnlockTag(VacuumTelescopeUnlock) 14 | SkipOnUnlockedTag(VacuumTelescopeUnlock) 15 | 16 | ModAttribute(ProgenitorTechProgress, Add, 5) 17 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/subsystems/equipment/support/OreProcessor.txt: -------------------------------------------------------------------------------- 1 | Technology: OreProcessor 2 | Name: #R_SYS_ORE_PROCESSOR 3 | Description: #R_SYS_ORE_PROCESSOR_DESC 4 | Class: Unlock 5 | Category: Equipment - Support 6 | 7 | Point Cost: 300 8 | Time Cost: 60 9 | 10 | Icon: SupportCommand * #8870ac 11 | Color: #8870ac 12 | 13 | UnlockSubsystem(OreProcessor) 14 | SkipOnUnlockedSubsystem(OreProcessor) 15 | 16 | ModAttribute(ProgenitorTechProgress, Add, 0.5) 17 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/subsystems/weapons/HyperLaser.txt: -------------------------------------------------------------------------------- 1 | Technology: HyperLaser 2 | Name: #R_SYS_HYPERLASER 3 | Description: #R_SYS_HYPERLASER_DESC 4 | Class: Unlock 5 | Category: Weapons 6 | 7 | Point Cost: 500 8 | Time Cost: 90 9 | 10 | Icon: HyperdenseLaser::0 11 | Color: #f9394d 12 | 13 | UnlockSubsystem(HyperLaser) 14 | SkipOnUnlockedSubsystem(HyperLaser) 15 | 16 | SecondaryEnergyCost(1500) 17 | 18 | ModAttribute(ProgenitorTechProgress, Add, 1.5) 19 | -------------------------------------------------------------------------------- /Rising Stars/data/sounds/RS_sfx.txt: -------------------------------------------------------------------------------- 1 | Sound: RedAlert 2 | File: data/sounds/status/Red Alert.ogg 3 | Volume: 0.25 4 | 5 | Sound: DOF_drone_fire1 6 | File: data/sounds/weapons/missile_fire_drone_1.ogg 7 | Volume: 1 8 | 9 | Sound: DOF_drone_fire2 10 | File: data/sounds/weapons/missile_fire_drone_2.ogg 11 | Volume: 1 12 | 13 | Sound: RS_drone_fire1 14 | File: data/sounds/weapons/Drone.ogg 15 | Volume: 1 16 | 17 | Sound: RS_drone_fire2 18 | File: data/sounds/weapons/Drone2.ogg 19 | Volume: 0.25 -------------------------------------------------------------------------------- /Rising Stars/data/constructions/MoonBase.txt: -------------------------------------------------------------------------------- 1 | Construction: MoonBase 2 | Name: #CONS_MOON_BASE 3 | Description: #CONS_MOON_BASE_DESC 4 | 5 | Category: Infrastructure 6 | 7 | Time Cost: 120 8 | Build Cost: 500 9 | 10 | RequireMoreMoonsThanStatus(MoonBase) 11 | RequireNotTrait(StarChildren) 12 | 13 | OnStart(AddStatus(MoonBase)) 14 | OnCancel(RemoveStatusInstance(MoonBase)) 15 | 16 | AddSurfaceArea(Moon, (5, 5)) 17 | TriggerGeneric(AddMaxPopulation(2)) 18 | 19 | AI:RegisterForUse(MoonBase) -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/modifiers/TargetSensor.txt: -------------------------------------------------------------------------------- 1 | Technology: TargetSensor 2 | Name: #R_MOD_TARGET_SENSOR 3 | Description: #R_MOD_TARGET_SENSOR_DESC 4 | Class: Unlock 5 | Category: Modifiers 6 | 7 | Point Cost: 500 8 | Time Cost: 120 9 | 10 | Icon: SupportCommand * #00ff00 11 | Color: #00ff00 12 | 13 | UnlockModule(TargetingSensor) 14 | SkipOnUnlockedModule(TargetingSensor) 15 | 16 | SecondaryMoneyCost(1000) 17 | ModAttribute(ProgenitorTechProgress, Add, 0.2) 18 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/subsystems/control/ZeroPoint.txt: -------------------------------------------------------------------------------- 1 | Technology: ZeroPoint 2 | Name: #S_ZPG 3 | Class: Unlock 4 | Icon: SingularityCore 5 | Description: #R_SYS_ZPG_DESC 6 | Color: #24ff99 7 | Category: Control, Power & Supply 8 | Symbol: ResourceIcon::2 9 | 10 | 11 | Point Cost: 1000 12 | Time Cost: 180 13 | 14 | ModAttribute(ProgenitorTechProgress, Add, 10) 15 | SkipOnUnlockedSubsystem(ZeroPoint) 16 | SecondaryEnergyCost(1750) 17 | UnlockSubsystem(ZeroPoint) 18 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/upgrades/major/DroneCount.txt: -------------------------------------------------------------------------------- 1 | Technology: DroneCount 2 | Name: #R_DRONE_COUNT 3 | Description: #R_DRONE_COUNT_DESC:50% 4 | 5 | Icon: MissileLauncher::3 6 | Symbol: techImpact*#af7600 7 | Color: #e6ed00 8 | 9 | Category: Special Upgrades 10 | Class: BigUpgrade 11 | 12 | Point Cost: 750 13 | Time Cost: 160 14 | 15 | ReduceResearchPenalty(750) 16 | AddModifier( DroneLauncher::DroneCountFactor(1.5) ) 17 | AddModifier( DroneLauncher::DamageMult(1.3) ) 18 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/upgrades/major/StationMaintenance.txt: -------------------------------------------------------------------------------- 1 | Technology: StationMaintenance 2 | Name: #R_STATION_MAINTENANCE 3 | Description: #R_STATION_MAINTENANCE_DESC:40% 4 | 5 | Icon: techConstruction * #30a67a 6 | Symbol: GuiOrbitalIcons::0 * #30a67a 7 | Color: #30a67a 8 | 9 | Category: Special Upgrades 10 | Class: BigUpgrade 11 | 12 | Point Cost: 1000 13 | Time Cost: 160 14 | 15 | ReduceResearchPenalty(1000) 16 | AddModifier(StationHull::MaintenanceModFactor(0.6)) 17 | -------------------------------------------------------------------------------- /Rising Stars/data/resources/level1/NativeGold.txt: -------------------------------------------------------------------------------- 1 | Resource: NativeGold 2 | Name: #NATIVE_GOLD 3 | Description: #NATIVE_GOLD_DESC 4 | Native Biome: Mountains 5 | 6 | Icon: ResourceIcons::30 7 | Small Icon: ResourceIconsSmall::30 8 | 9 | Level: 1 10 | Rarity: Rare 11 | Affinity: Money 12 | 13 | Pressure: 3 Money 14 | AddResource(Influence, 1) 15 | 16 | Asteroid Labor: 50 17 | Terraform Cost: 2000 18 | Terraform Labor: 120 19 | ABEM_terraforming::TerraformRequireUnlockTag(Terraform2) 20 | -------------------------------------------------------------------------------- /Rising Stars/data/statuses/subsystems/GateUnpacked.txt: -------------------------------------------------------------------------------- 1 | Status: GateUnpacked 2 | Name: #STATUS_GATE_UNPACKED 3 | Description: #STATUS_GATE_UNPACKED_DESC 4 | Icon: ActionBarIcons::7 5 | 6 | PersistentParticles(GateWormhole, Scale = 0.6) 7 | 8 | RepeatEmpireAttribute(FTLThrustFactor, FTLMaintenance(0.0005)) 9 | 10 | IfNotFTLShortage(IfNotFTLBlocked(IsGate())) 11 | IfNotFTLShortage(IfNotFTLBlocked(GlobalTradeNode())) 12 | 13 | DelayFTL() 14 | GrantAbility(GatePack) 15 | AddStatus(Untractorable) 16 | -------------------------------------------------------------------------------- /Rising Stars/data/abilities/traits/ShadowportSteal.txt: -------------------------------------------------------------------------------- 1 | Ability: ShadowportSteal 2 | Name: #ABL_RACKETEERING 3 | Description: #ABL_RACKETEERING_DESC 4 | Icon: techResupply*#d8a111 5 | Hotkey: C 6 | 7 | Target: targ = Object 8 | 9 | TargetFilterType(targ, Planet) 10 | ABEM_races::TargetFilterOwnedStatus(targ, Corrupted) 11 | 12 | TargetFilterOtherEmpire(targ) 13 | Trigger(targ, RemoveStatus(ShadowportSteal)) 14 | AddStatusTo(targ, ShadowportSteal, Set Origin Empire = True, Set Origin Object = True) 15 | -------------------------------------------------------------------------------- /Rising Stars/data/constructions/FTL/Exp_Hyperdrive.txt: -------------------------------------------------------------------------------- 1 | Construction: EXP_HyperdriveUnlock 2 | Time Cost: 300 3 | Description: #C_HYPERDRIVE_UNLOCK_DESC 4 | Name: #C_HYPERDRIVE_UNLOCK 5 | Icon: TechIcons::34 6 | RequireAttributeLT(HasFlux) 7 | UnlockSubsystem(Hyperdrive) 8 | ConsumeFTL(200) 9 | RequireAttributeLT(HyperdriveConst) 10 | ModAttribute(ProgenitorTechProgress, Add, 3.5) 11 | ModAttribute(HyperdriveConst, Add, 1) 12 | RequireStatus(HasPrototypeHyperdrive) 13 | RequireNotTrait(Hyperdrive) 14 | -------------------------------------------------------------------------------- /Rising Stars/data/constructions/FTL/Exp_Slipstream.txt: -------------------------------------------------------------------------------- 1 | Construction: EXP_SlipstreamUnlock 2 | Time Cost: 300 3 | Description: #C_SLIPSTREAM_UNLOCK_DESC 4 | Name: #C_SLIPSTREAM_UNLOCK 5 | Icon: TechIcons::57 6 | RequireAttributeLT(HasFlux) 7 | UnlockSubsystem(Slipstream) 8 | ConsumeFTL(200) 9 | RequireAttributeLT(SlipstreamConst) 10 | ModAttribute(ProgenitorTechProgress, Add, 3.5) 11 | ModAttribute(SlipstreamConst, Add, 1) 12 | RequireStatus(HasPrototypeSlipstream) 13 | RequireNotTrait(Slipstream) 14 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/megaconstructions/ArtificialPlanetoid.txt: -------------------------------------------------------------------------------- 1 | Technology: ArtificialPlanetoid 2 | Name: #R_ORB_ARTIFICIAL_PLANETOID 3 | Description: #R_ORB_ARTIFICIAL_PLANETOID_DESC 4 | Class: Unlock 5 | Category: Megaconstructions 6 | 7 | Point Cost: 1000 8 | Time Cost: 200 9 | 10 | Icon: PlanetType::1 11 | Color: #f3ff00 12 | 13 | UnlockTag(ArtificialPlanetoidUnlock) 14 | SkipOnUnlockedTag(ArtificialPlanetoidUnlock) 15 | ModAttribute(ProgenitorTechProgress, Add, 5) 16 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/subsystems/armor/NeutronArmor.txt: -------------------------------------------------------------------------------- 1 | Technology: NeutronArmor 2 | Name: #R_SYS_NEUTRON_ARMOR 3 | Description: #R_SYS_NEUTRON_ARMOR_DESC 4 | Class: Unlock 5 | Category: Armor 6 | 7 | Point Cost: 500 8 | Time Cost: 180 9 | 10 | Icon: PlateArmor * #449944 11 | Color: #449944 12 | 13 | UnlockSubsystem(NeutronArmor) 14 | SkipOnUnlockedSubsystem(NeutronArmor) 15 | 16 | SecondaryMoneyCost(2000) 17 | 18 | ModAttribute(ProgenitorTechProgress, Add, 2.5) 19 | -------------------------------------------------------------------------------- /Rising Stars/data/resources/level2/DegenerateMatter.txt: -------------------------------------------------------------------------------- 1 | Resource: DegenerateMatter 2 | Name: #DEGENERATE_MATTER 3 | Description: #DEGENERATE_MATTER_DESC 4 | Native Biome: Oceanic 5 | 6 | Icon: ResourceIcons::42 7 | Small Icon: ResourceIconsSmall::42 8 | 9 | Level: 2 10 | Affinity: Research 11 | 12 | Asteroid Frequency: 0.035 13 | Asteroid Labor: 70 14 | 15 | Pressure: 7 Research 16 | Terraform Cost: 1500 17 | Terraform Labor: 90 18 | ABEM_terraforming::TerraformRequireUnlockTag(Terraform4) 19 | -------------------------------------------------------------------------------- /Rising Stars/data/subsystems/flagships/modifiers/TargetingSensor.txt: -------------------------------------------------------------------------------- 1 | Template: hexVar/BuildCost, var/BaseHP, tag/Weapon, var/Range, var/BaseSupplyCost, !tag/SupportHull 2 | Module: TargetingSensor 3 | Name: #TARGETINGSENSOR_NAME 4 | Description: #TARGETINGSENSOR_DESC 5 | 6 | Color: #00ff00 7 | Sprite: SupportCommand * #00ff00 8 | 9 | AddModifier: BuildCostFactor(1.5) 10 | AddModifier: SupplyCostMult(1.2) 11 | AddModifier: optional SpreadMult(0.5) 12 | 13 | Range := Range + Base::Range * 0.6 14 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/progenitor/ShipComputer.txt: -------------------------------------------------------------------------------- 1 | Technology: ProgenitorComputer 2 | Icon: ProgenitorComputer 3 | Description: #R_SYS_PROGENITORCOMPUTER_DESC 4 | Name: #R_SYS_PROGENITORCOMPUTER 5 | Point Cost: 1500 6 | Time Cost: 180 7 | Class: Secret 8 | Blurb: 9 | Color: #de8508 10 | Category: Progenitor 11 | ModAttribute(ProgenitorTechProgress, Add, 15) 12 | RequireUnlockTag(ProgenitorTech) 13 | AutoUnlockOnUnlockedTag(ProgenitorComputer) 14 | UnlockSubsystem(ProgenitorComputer) 15 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/progenitor/SolarOrbital.txt: -------------------------------------------------------------------------------- 1 | Technology: ProgenitorSolarOrbital 2 | Icon: TechIcons::20 3 | Description: #R_PROGENITOR_SOLARORBITAL_DESC 4 | Name: #R_PROGENITOR_SOLARORBITAL 5 | Point Cost: 1500 6 | Time Cost: 180 7 | Class: Secret 8 | Blurb: 9 | Color: #1ddede 10 | Category: Progenitor 11 | ModAttribute(ProgenitorTechProgress, Add, 10) 12 | RequireUnlockTag(ProgenitorTech) 13 | AutoUnlockOnUnlockedTag(ProgenitorSolarOrbital) 14 | UnlockTag(ProgenitorSolarOrbital) 15 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/satellites/RingHabitat.txt: -------------------------------------------------------------------------------- 1 | Technology: RingHabitat 2 | Name: #R_ORB_RING_HABITAT 3 | Description: #R_ORB_RING_HABITAT_DESC 4 | Class: Unlock 5 | Category: Satellites 6 | 7 | DLC: Heralds 8 | DLC Replace: DLCConnector 9 | 10 | Point Cost: 600 11 | Time Cost: 120 12 | 13 | Icon: GuiOrbitalIcons::11 14 | Color: #ffdc40 15 | 16 | UnlockTag(RingHabitatUnlock) 17 | SkipOnUnlockedTag(RingHabitatUnlock) 18 | ModAttribute(ProgenitorTechProgress, Add, 1.5) 19 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/subsystems/control/AntimatterGen.txt: -------------------------------------------------------------------------------- 1 | Technology: AntimatterGen 2 | Name: #R_SYS_ANTIMATTER 3 | Description: #R_SYS_ANTIMATTER_DESC 4 | Class: Unlock 5 | Category: Control, Power & Supply 6 | 7 | Point Cost: 500 8 | Time Cost: 90 9 | 10 | Icon: AntimatterGen 11 | Color: #5ade8b 12 | 13 | UnlockSubsystem(AntimatterGen) 14 | SkipOnUnlockedSubsystem(AntimatterGen) 15 | 16 | SecondaryEnergyCost(1000) 17 | ModAttribute(ProgenitorTechProgress, Add, 2.5) 18 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/subsystems/equipment/combat/BoardingParty.txt: -------------------------------------------------------------------------------- 1 | Technology: BoardingParty 2 | Name: #R_BOARDING_PARTY 3 | Description: #R_BOARDING_PARTY_DESC 4 | Class: Unlock 5 | Category: Equipment - Combat 6 | Symbol: ABEMShuttle 7 | Color: #ff4827 8 | Icon: BoardingParty 9 | Point Cost: 750 10 | Time Cost: 120 11 | SecondaryInfluenceCost(12) 12 | ModAttribute(ProgenitorTechProgress, Add, 1) 13 | SkipOnUnlockedSubsystem(BoardingParty) 14 | UnlockSubsystem(BoardingParty) 15 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/subsystems/hulls/JuggernautHull.txt: -------------------------------------------------------------------------------- 1 | Technology: JuggernautHull 2 | Name: #R_SYS_JUGGERNAUT_HULL 3 | Description: #R_SYS_JUGGERNAUT_HULL_DESC 4 | Class: Unlock 5 | Category: Hulls 6 | 7 | Point Cost: 600 8 | Time Cost: 120 9 | 10 | Icon: HullSubsystems::5 11 | Color: #ff0623 12 | 13 | UnlockSubsystem(JuggernautHull) 14 | SkipOnUnlockedSubsystem(JuggernautHull) 15 | 16 | SecondaryEnergyCost(1000) 17 | ModAttribute(ProgenitorTechProgress, Add, 0.75) 18 | -------------------------------------------------------------------------------- /Rising Stars/data/resources/level1/LuxuryMaterials.txt: -------------------------------------------------------------------------------- 1 | Resource: LuxuryMaterials 2 | Name: #LUXURY_MATERIALS 3 | Description: #LUXURY_MATERIALS_DESC 4 | Native Biome: Desert 5 | 6 | Icon: ResourceIcons::16 7 | Small Icon: ResourceIconsSmall::32 8 | 9 | Level: 1 10 | Rarity: Uncommon 11 | Affinity: Influence 12 | 13 | Pressure: 3 Influence 14 | Terraform Labor: 45 15 | Terraform Cost: 750 16 | 17 | IfType(Planet, AddStatus(Happy)) 18 | ABEM_terraforming::TerraformRequireUnlockTag(Terraform2) 19 | -------------------------------------------------------------------------------- /Rising Stars/data/orbitals/economy/MonoColonyBooster.txt: -------------------------------------------------------------------------------- 1 | Module: MonoColonyBooster 2 | Name: #ORB_MONO_COLONY 3 | Description: #ORB_MONO_COLONY_DESC 4 | Blurb: #ORB_MONO_COLONY_BLURB 5 | Icon: GuiOrbitalIcons::4 6 | Distant Icon: OrbitalIcons::4 7 | Health: 5000 8 | Armor: 3000 9 | Build Cost: 100 10 | Labor Cost: 10 11 | Maintenance: 10 12 | Size: 5 13 | RequireTrait(Mechanoid) 14 | RequireOnOrbital(EconomyCore) 15 | FTLMaintenance(0.05) 16 | GlobalTradeNode() 17 | SetSystemFlag(MonoColonyDiscount) 18 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/subsystems/shields/ShieldHardener.txt: -------------------------------------------------------------------------------- 1 | Technology: ShieldHardener 2 | Name: #R_SYS_SHIELD_HARDENER 3 | Description: #R_SYS_SHIELD_HARDENER_DESC 4 | Class: Unlock 5 | Category: Shields 6 | 7 | Point Cost: 500 8 | Time Cost: 90 9 | 10 | Icon: ShieldHardener 11 | Color: #681be3 12 | 13 | UnlockSubsystem(ShieldHardener) 14 | SkipOnUnlockedSubsystem(ShieldHardener) 15 | 16 | SecondaryEnergyCost(1500) 17 | 18 | ModAttribute(ProgenitorTechProgress, Add, 2.5) 19 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/upgrades/major/PowerGeneration.txt: -------------------------------------------------------------------------------- 1 | Technology: PowerGeneration 2 | Name: #R_POWER_GENERATION 3 | Description: #R_POWER_GENERATION_DESC:25% 4 | 5 | Icon: FissionReactor 6 | Symbol: techIonization * #42b4bd 7 | Color: #00a4db 8 | 9 | Category: Special Upgrades 10 | Class: BigUpgrade 11 | 12 | Point Cost: 750 13 | Time Cost: 120 14 | 15 | AddModifier( tag/IsReactor::PowerMult(1.25) ) 16 | 17 | ReduceResearchPenalty(750) 18 | AffectsTaggedSubsystems(IsReactor) 19 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/ftl/Jumpdrive.txt: -------------------------------------------------------------------------------- 1 | Technology: Jumpdrive 2 | Name: #R_SYS_JUMPDRIVE 3 | Point Cost: 1250 4 | Time Cost: 60 5 | Icon: Jumpdrive 6 | Description: #R_SYS_JUMPDRIVE_DESC 7 | Class: Unlock 8 | Color: #00c0ff 9 | Category: FTL 10 | SkipOnUnlockedSubsystem(ExperimentalJumpdrive) 11 | ModAttribute(ProgenitorTechProgress, Add, 1.5) 12 | SkipOnUnlockedSubsystem(Jumpdrive) 13 | UnlockSubsystem(ExperimentalJumpdrive) 14 | 15 | DLC: Heralds 16 | DLC Replace: DLCConnector 17 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/subsystems/equipment/combat/GravitonCondenser.txt: -------------------------------------------------------------------------------- 1 | Technology: GravitonCondenser 2 | Name: #R_SYS_GRAVITON_CONDENSER 3 | Description: #R_SYS_GRAVITON_CONDENSER_DESC 4 | Class: Unlock 5 | Category: Equipment - Combat 6 | 7 | Point Cost: 1500 8 | Time Cost: 140 9 | 10 | Icon: TractorGun::0 * #e45500 11 | Color: #e45500 12 | 13 | UnlockSubsystem(GravitonCondenser) 14 | SkipOnUnlockedSubsystem(GravitonCondenser) 15 | 16 | ModAttribute(ProgenitorTechProgress, Add, 2) 17 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/subsystems/equipment/combat/IonCannon.txt: -------------------------------------------------------------------------------- 1 | Technology: IonCannon 2 | Name: #R_SYS_ION_CANNON 3 | Description: #R_SYS_ION_CANNON_DESC 4 | Class: Unlock 5 | Category: Equipment - Combat 6 | 7 | Point Cost: 500 8 | Time Cost: 90 9 | 10 | Icon: HexagonSubsystems::6 * #ff8d00 11 | Color: #ff8d00 12 | 13 | UnlockSubsystem(IonCannon) 14 | SkipOnUnlockedSubsystem(IonCannon) 15 | 16 | SecondaryEnergyCost(1000) 17 | 18 | ModAttribute(ProgenitorTechProgress, Add, 1.5) 19 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/subsystems/propulsion/GravityEngine.txt: -------------------------------------------------------------------------------- 1 | Technology: GravityEngine 2 | Name: #R_SYS_GRAVITY_ENGINE 3 | Description: #R_SYS_GRAVITY_ENGINE_DESC 4 | Class: Unlock 5 | Category: Propulsion 6 | 7 | Point Cost: 500 8 | Time Cost: 90 9 | 10 | Icon: HexagonSubsystems::5 11 | Color: #e0f946 12 | 13 | UnlockSubsystem(GravityEngine) 14 | SkipOnUnlockedSubsystem(GravityEngine) 15 | 16 | SecondaryEnergyCost(1000) 17 | 18 | ModAttribute(ProgenitorTechProgress, Add, 2.5) 19 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/secret/FlareBomb.txt: -------------------------------------------------------------------------------- 1 | Technology: FlareBomb 2 | Name: #R_FLARE_BOMB 3 | Description: #R_FLARE_BOMB_DESC 4 | Class: Secret 5 | Category: Secret 6 | 7 | Point Cost: 2000 8 | Time Cost: 120 9 | 10 | DLC: Heralds 11 | DLC Replace: DLCConnector 12 | 13 | Icon: MissileLauncher::0 * #e45500 14 | Color: #e45500 15 | 16 | UnlockSubsystem(FlareBomb) 17 | RequireEmpireAttributeGTE(ArtifactsActivated, 20, #RESEARCH_REQ_ARTIFACTS) 18 | ModAttribute(ProgenitorTechProgress, Add, 3) 19 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/subsystems/equipment/support/TroopPods.txt: -------------------------------------------------------------------------------- 1 | Technology: TroopPods 2 | Name: #R_SYS_TROOP_PODS 3 | Description: #R_SYS_TROOP_PODS_DESC 4 | Class: Unlock 5 | Category: Equipment - Support 6 | 7 | Point Cost: 600 8 | Time Cost: 120 9 | 10 | Icon: TroopPods 11 | Color: #dd3b4e 12 | 13 | DLC: Heralds 14 | DLC Replace: DLCConnector 15 | 16 | UnlockSubsystem(TroopPods) 17 | SkipOnUnlockedSubsystem(TroopPods) 18 | 19 | ModAttribute(ProgenitorTechProgress, Add, 1.5) 20 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/subsystems/weapons/Disruptor.txt: -------------------------------------------------------------------------------- 1 | Technology: Disruptor 2 | Name: #R_SYS_DISRUPTOR 3 | Description: #R_SYS_DISRUPTOR_DESC 4 | Class: Unlock 5 | Category: Weapons 6 | 7 | DLC: Heralds 8 | DLC Replace: DLCConnector 9 | 10 | Point Cost: 500 11 | Time Cost: 90 12 | 13 | Icon: Laser::0 14 | Color: #f0e5b5 15 | 16 | UnlockSubsystem(Disruptor) 17 | SkipOnUnlockedSubsystem(Disruptor) 18 | 19 | SecondaryFTLCost(250) 20 | ModAttribute(ProgenitorTechProgress, Add, 2) 21 | -------------------------------------------------------------------------------- /Rising Stars/data/resources/level1/RareMetals.txt: -------------------------------------------------------------------------------- 1 | Resource: RareMetals 2 | Name: #RARE_METALS 3 | Description: #RARE_METALS_DESC 4 | Native Biome: Mountains 5 | 6 | Icon: ResourceIcons::12 7 | Small Icon: ResourceIconsSmall::11 8 | 9 | Level: 1 10 | Rarity: Rare 11 | Affinity: Research 12 | 13 | Asteroid Frequency: 0.1 14 | Asteroid Labor: 50 15 | 16 | Pressure: 3 Research 17 | AddIncome(80) 18 | Terraform Cost: 1000 19 | Terraform Labor: 60 20 | ABEM_terraforming::TerraformRequireUnlockTag(Terraform2) 21 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Automatically set files to CRLF. 2 | * text=auto 3 | *.txt eol=crlf 4 | *.as eol=crlf 5 | 6 | # Make sure binary files aren't tampered with. 7 | *.png binary 8 | 9 | # Custom for Visual Studio 10 | *.cs diff=csharp 11 | 12 | # Standard to msysgit 13 | *.doc diff=astextplain 14 | *.DOC diff=astextplain 15 | *.docx diff=astextplain 16 | *.DOCX diff=astextplain 17 | *.dot diff=astextplain 18 | *.DOT diff=astextplain 19 | *.pdf diff=astextplain 20 | *.PDF diff=astextplain 21 | *.rtf diff=astextplain 22 | *.RTF diff=astextplain -------------------------------------------------------------------------------- /Rising Stars/data/abilities/subsystem/BusterBeam.txt: -------------------------------------------------------------------------------- 1 | Ability: BusterBeam 2 | Name: #ABL_BUSTER_BEAM 3 | Description: #ABL_BUSTER_BEAM_DESC 4 | Icon: BusterMachine 5 | 6 | Range: 2000 7 | 8 | Target: targ = Object 9 | TargetFilterType(targ, Planet) 10 | TargetFilterAttackable(targ) 11 | 12 | IsToggleTarget(targ, Range Margin = 1.5) 13 | CooldownOnDeactivate(targ, 300) 14 | PersistentBeamEffect(targ, #e900ff, Tractor, Width = 3.0) 15 | 16 | DealPlanetDamageOverTime(targ, 7000000) 17 | 18 | OffensiveToTarget(targ) 19 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/subsystems/equipment/support/CloakPlating.txt: -------------------------------------------------------------------------------- 1 | Technology: CloakPlating 2 | Name: #R_SYS_CLOAKPLATING 3 | Description: #R_SYS_CLOAKPLATING_DESC 4 | Class: Unlock 5 | Category: Equipment - Support 6 | 7 | Point Cost: 500 8 | Time Cost: 90 9 | 10 | Icon: PlateArmor * #5188e6a0 11 | Color: #5188e6 12 | 13 | UnlockSubsystem(CloakPlating) 14 | SkipOnUnlockedSubsystem(CloakPlating) 15 | 16 | SecondaryEnergyCost(750) 17 | 18 | ModAttribute(ProgenitorTechProgress, Add, 1.0) 19 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/subsystems/propulsion/Ramjet.txt: -------------------------------------------------------------------------------- 1 | Technology: Ramjet 2 | Name: #R_SYS_RAMJET 3 | Description: #R_SYS_RAMJET_DESC 4 | Class: Unlock 5 | Category: Propulsion 6 | 7 | Point Cost: 600 8 | Time Cost: 120 9 | 10 | DLC: Heralds 11 | DLC Replace: DLCConnector 12 | 13 | Icon: ResearchIcons::0 14 | Color: #629b26 15 | 16 | UnlockSubsystem(Ramjet) 17 | SkipOnUnlockedSubsystem(Ramjet) 18 | 19 | SecondaryMoneyCost(1000) 20 | 21 | ModAttribute(ProgenitorTechProgress, Add, 1) 22 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/secret/ArtificialMoon.txt: -------------------------------------------------------------------------------- 1 | Technology: ArtificialMoon 2 | Name: #R_ARTIFICIAL_MOON 3 | Description: #R_ARTIFICIAL_MOON_DESC 4 | Class: Secret 5 | Category: Secret 6 | 7 | DLC: Heralds 8 | DLC Replace: DLCConnector 9 | 10 | Point Cost: 1000 11 | Time Cost: 120 12 | 13 | Icon: PlanetType::4 14 | Color: #cc3a7d 15 | 16 | UnlockTag(ArtificialMoonUnlock) 17 | RequireEmpireAttributeGTE(RingHabitatsBuilt, 5, #RESEARCH_REQ_RING_HABITATS) 18 | ModAttribute(ProgenitorTechProgress, Add, 3) 19 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/subsystems/equipment/combat/SelfDestruct.txt: -------------------------------------------------------------------------------- 1 | Technology: SelfDestruct 2 | Name: #R_SYS_SELF_DESTRUCT 3 | Description: #R_SYS_SELF_DESTRUCT_DESC 4 | Class: Unlock 5 | Category: Equipment - Combat 6 | 7 | Point Cost: 500 8 | Time Cost: 90 9 | 10 | Icon: AntimatterReactor * #ff0000 11 | Color: #ff0000 12 | 13 | UnlockSubsystem(SelfDestruct) 14 | SkipOnUnlockedSubsystem(SelfDestruct) 15 | 16 | SecondaryEnergyCost(1500) 17 | 18 | ModAttribute(ProgenitorTechProgress, Add, 1.25) 19 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/subsystems/equipment/support/CloakingDevice.txt: -------------------------------------------------------------------------------- 1 | Technology: CloakingDevice 2 | Name: #R_SYS_CLOAKING_DEVICE 3 | Description: #R_SYS_CLOAKING_DEVICE_DESC 4 | Class: Unlock 5 | Category: Equipment - Support 6 | 7 | Point Cost: 500 8 | Time Cost: 90 9 | 10 | Icon: CloakingDevice 11 | Color: #5188e6 12 | 13 | UnlockSubsystem(CloakingDevice) 14 | SkipOnUnlockedSubsystem(CloakingDevice) 15 | 16 | SecondaryEnergyCost(750) 17 | 18 | ModAttribute(ProgenitorTechProgress, Add, 2.5) 19 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/upgrades/major/GravitonChanneling.txt: -------------------------------------------------------------------------------- 1 | Technology: GravitonChanneling 2 | Name: #R_GRAVITON_CHANNELING 3 | Description: #R_GRAVITON_CHANNELING_DESC:50% 4 | 5 | Icon: HexagonSubsystems::5 6 | Symbol: techPropulsion*#a77751 7 | Color: #e0f946 8 | 9 | Category: Special Upgrades 10 | Class: BigUpgrade 11 | 12 | Point Cost: 800 13 | Time Cost: 100 14 | 15 | ReduceResearchPenalty(800) 16 | AddModifier( GravityEngine::ThrustMult(1.5) ) 17 | AddModifier( GravityEngine::PowerUseFactor(2.0) ) 18 | -------------------------------------------------------------------------------- /Rising Stars/data/resources/level1/LocalAsteroidField.txt: -------------------------------------------------------------------------------- 1 | Resource: LocalAsteroidField 2 | Name: #LOCAL_ASTEROID_FIELD 3 | Description: #LOCAL_ASTEROID_FIELD_DESC 4 | Native Biome: Desert 5 | 6 | Icon: ResourceIcons::28 7 | Small Icon: ResourceIconsSmall::28 8 | 9 | Level: 1 10 | Limitless Level: True 11 | Exportable: False 12 | Rarity: Uncommon 13 | Affinity: Labor 14 | 15 | Pressure: 10 Labor 16 | RepeatPlanetLevel(AddPressureCap(2), Base = 5) 17 | ModCivResourceMult(Labor, +0.5) #version>=71 18 | AsteroidGraphics() 19 | -------------------------------------------------------------------------------- /Rising Stars/data/statuses/subsystems/GateSequenced.txt: -------------------------------------------------------------------------------- 1 | Status: GateSequenced 2 | Name: #STATUS_GATE_SEQUENCED 3 | Description: #STATUS_GATE_SEQUENCED_DESC 4 | Icon: ActionBarIcons::7*#00c0ff 5 | 6 | PersistentParticles(GateWormhole, Scale = 0.6) 7 | PersistentParticles(Tear, Scale = 0.6) 8 | 9 | RepeatExtended(FTLMaintenance(0.0005), FTLThrustFactor, InstantFTLFactor) 10 | 11 | IfNotFTLShortage(IsGate()) 12 | IfNotFTLShortage(GlobalTradeNode()) 13 | 14 | DelayFTL() 15 | GrantAbility(GatePack) 16 | AddStatus(Untractorable) 17 | -------------------------------------------------------------------------------- /Rising Stars/data/traits/lifestyle/Pacifists.txt: -------------------------------------------------------------------------------- 1 | Trait: Pacifists 2 | Name: #TRAIT_PACIFISTS 3 | Description: #TRAIT_PACIFISTS_DESC 4 | Order: 9 5 | 6 | Category: Lifestyle 7 | Unique: Lifestyle 8 | 9 | Icon: CardIcons::6 10 | Color: #00ffa4 11 | AI Support: False 12 | 13 | AddStatusOwnedPlanets(Pacifists) 14 | 15 | ModAttribute(FleetEfficiencyFactor, Add, -0.15) 16 | OnDLC(Heralds, UnlockSubsystem(BroadcastAntenna)) 17 | ABEM_glory::SetGloryMeter(PacifistGlory, 4) 18 | 19 | OnHomeworld(AddPlanetResource(Allondium)) 20 | -------------------------------------------------------------------------------- /Rising Stars/data/abilities/artifact/EquipIonCannon.txt: -------------------------------------------------------------------------------- 1 | Ability: EquipIonCannon 2 | Name: #ABL_EQUIP_ION_CANNON 3 | Description: #ABL_EQUIP_ION_CANNON_DESC 4 | Icon: HexagonSubsystems::6 * #ff8d00 5 | Activate Sound: generic_activate_1 6 | 7 | Energy Cost: 1000 8 | ReduceEnergyCostSystemFlag(0.75, CheapArtifacts) 9 | 10 | Target: targ = Object 11 | TargetFilterFlagship(targ) 12 | TargetFilterOwned(targ) 13 | TargetFilterSameTerritory(targ) 14 | TargetFilterNotStatus(targ, IonCannon) 15 | 16 | Trigger(targ, AddStatus(IonCannon)) 17 | -------------------------------------------------------------------------------- /Rising Stars/data/abilities/artifact/EquipSkipDrive.txt: -------------------------------------------------------------------------------- 1 | Ability: EquipSkipDrive 2 | Name: #ABL_EQUIP_SKIP_DRIVE 3 | Description: #ABL_EQUIP_SKIP_DRIVE_DESC 4 | Icon: GuiOrbitalIcons::2 * #ff0000 5 | Activate Sound: generic_activate_1 6 | 7 | Energy Cost: 1000 8 | ReduceEnergyCostSystemFlag(0.75, CheapArtifacts) 9 | 10 | Target: targ = Object 11 | TargetFilterFlagship(targ) 12 | TargetFilterOwned(targ) 13 | TargetFilterSameTerritory(targ) 14 | TargetFilterNotStatus(targ, SkipDrive) 15 | 16 | Trigger(targ, AddStatus(SkipDrive)) 17 | -------------------------------------------------------------------------------- /Rising Stars/data/buildings/civilian2/TechCenter.txt: -------------------------------------------------------------------------------- 1 | Building: TechCenter 2 | Name: #BLD_TECHCENTER 3 | Description: #BLD_TECHCENTER_DESC 4 | Sprite: BuildingSprites::9 5 | 6 | Civilian: True 7 | Upgrades From: University 8 | 9 | Saturation: 2 Research 10 | Production: 1.5 Research 11 | RepeatExtended(AddResource(Research, 0.1), Base Attribute = ResearchProductionBoost) 12 | ShowAttributeValue(Inefficiency Reduction, ResearchProductionBoost, Multiplier = 20, Icon = Plus, Suffix = %, Hide Zero = True) 13 | RequireNotTrait(Berserkers) 14 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/modifiers/QuantumCompressor.txt: -------------------------------------------------------------------------------- 1 | Technology: QuantumCompressor 2 | Name: #R_MOD_QUANTUM_COMPRESSOR 3 | Description: #R_MOD_QUANTUM_COMPRESSOR_DESC 4 | Class: Unlock 5 | Category: Modifiers 6 | 7 | DLC: Heralds 8 | DLC Replace: DLCConnector 9 | 10 | Point Cost: 600 11 | Time Cost: 120 12 | 13 | Color: #69eaf2 14 | Icon: QuantumCompressor 15 | 16 | UnlockModule(QuantumCompressor) 17 | SkipOnUnlockedModule(QuantumCompressor) 18 | ModAttribute(ProgenitorTechProgress, Add, 2.5) 19 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/subsystems/armor/LiquidArmor.txt: -------------------------------------------------------------------------------- 1 | Technology: LiquidArmor 2 | Name: #R_SYS_LIQUID_ARMOR 3 | Description: #R_SYS_LIQUID_ARMOR_DESC 4 | Class: Unlock 5 | Category: Armor 6 | 7 | Point Cost: 500 8 | Time Cost: 120 9 | 10 | Icon: PlateArmor * #91692c 11 | Color: #91692c 12 | 13 | UnlockSubsystem(LiquidArmor) 14 | UnlockSubsystem(SupportLiquidArmor) 15 | SkipOnUnlockedSubsystem(LiquidArmor) 16 | 17 | SecondaryMoneyCost(1000) 18 | 19 | ModAttribute(ProgenitorTechProgress, Add, 1.5) 20 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/subsystems/weapons/MuonCannon.txt: -------------------------------------------------------------------------------- 1 | Technology: MuonCannon 2 | Name: #R_SYS_MUON_CANNON 3 | Description: #R_SYS_MUON_CANNON_DESC 4 | Class: Unlock 5 | Category: Weapons 6 | 7 | Point Cost: 500 8 | Time Cost: 90 9 | 10 | Icon: Railgun::2 11 | Color: #8f2399 12 | 13 | SkipOnUnlockedSubsystem(MuonBattery) 14 | UnlockSubsystem(MuonBattery) 15 | AddModifier(Railgun::SetMuonEnhanced(1)) 16 | 17 | SecondaryInfluenceCost(12) 18 | 19 | ModAttribute(ProgenitorTechProgress, Add, 2.5) 20 | -------------------------------------------------------------------------------- /Rising Stars/data/resources/special/OreRate.txt: -------------------------------------------------------------------------------- 1 | Resource: OreRate 2 | Name: #R_ORE_RATE 3 | Description: #R_ORE_RATE_DESC 4 | Native Biome: Crystallic 5 | 6 | Icon: ResourceIconsSmall::65 7 | Small Icon: ResourceIconsSmall::65 8 | 9 | Rarity: Common 10 | Distribution: 0 11 | Frequency: 0 12 | Level: 0 13 | Stealable: False 14 | Exportable: False 15 | 16 | TriggerPeriodic(ABEM_cargo::AddGlobalCargo(Ore, 1), Interval = 1) 17 | IfAttributeGTE(OptimizedCores, 1, TriggerPeriodic(ABEM_cargo::AddGlobalCargo(Ore, 0.5), Interval = 1)) 18 | -------------------------------------------------------------------------------- /Rising Stars/data/system_lists/SpatialAnomaly.txt: -------------------------------------------------------------------------------- 1 | SystemList: SpatialAnomaly 2 | System: CeruleanNebula 3 | Frequency: 1 4 | 5 | System: MetreonNebula 6 | Frequency: 2 7 | 8 | System: TachyonNebula 9 | Frequency: 4 10 | 11 | System: RadioactiveNebula 12 | Frequency: 4 13 | 14 | System: MetaphasicNebula 15 | Frequency: 4 16 | 17 | System: EconomicNebula 18 | Frequency: 1 19 | 20 | System: EmptySpace 21 | Frequency: 2 22 | 23 | System: Type1Nebula 24 | Frequency: 4 25 | 26 | System: BlackHole 27 | Frequency: 0.5 -------------------------------------------------------------------------------- /Rising Stars/scripts/shared/include/map.as: -------------------------------------------------------------------------------- 1 | #priority init 1501 2 | import maps; 3 | 4 | const int DEFAULT_SYSTEM_COUNT = 60; 5 | // BEGIN NON-MIT CODE - DOF (Scaling) 6 | const double DEFAULT_SPACING = 130000.0; 7 | const double MIN_SPACING = 130000.0; 8 | // END NON-MIT CODE 9 | 10 | void init() { 11 | auto@ mapClass = getClass("Map"); 12 | for(uint i = 0, cnt = THIS_MODULE.classCount; i < cnt; ++i) { 13 | auto@ cls = THIS_MODULE.classes[i]; 14 | if(cls !is mapClass && cls.implements(mapClass)) 15 | cls.create(); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Rising Stars/data/orbitals/military/IonCannon.txt: -------------------------------------------------------------------------------- 1 | Module: IonCannon 2 | Name: #ORB_ION_CANNON 3 | Description: #ORB_ION_CANNON_DESC 4 | Blurb: #ORB_ION_CANNON_BLURB 5 | Icon: HexagonSubsystems::6 * #ff8d00 6 | Health: 2500 7 | Armor: 1500 8 | Maintenance: 50 9 | Build Cost: 500 10 | Labor Cost: 15 11 | Strategic Icon: HexagonSubsystems::6 * #ff8d00 12 | Distant Icon: HexagonSubsystems::6 * #ff8d00 13 | GrantAbility(IonCannon) 14 | ConsumeCargo(Ore, 500) 15 | RequireOnOrbital(MilitaryCore) 16 | RequireSubsystemUnlocked(IonCannon) 17 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/subsystems/hulls/CarrierHull.txt: -------------------------------------------------------------------------------- 1 | Technology: CarrierHull 2 | Name: #R_SYS_CARRIER_HULL 3 | Description: #R_SYS_CARRIER_HULL_DESC 4 | Class: Unlock 5 | Category: Hulls 6 | 7 | DLC: Heralds 8 | DLC Replace: DLCConnector 9 | 10 | Point Cost: 600 11 | Time Cost: 120 12 | 13 | Icon: HullSubsystems::0 14 | Color: #d6d300 15 | 16 | UnlockSubsystem(CarrierHull) 17 | SkipOnUnlockedSubsystem(CarrierHull) 18 | 19 | SecondaryMoneyCost(1000) 20 | ModAttribute(ProgenitorTechProgress, Add, 1) 21 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/subsystems/armor/NilingArmor.txt: -------------------------------------------------------------------------------- 1 | Technology: NilingArmor 2 | Name: #R_SYS_NILINGARMOR 3 | Description: #R_SYS_NILINGARMOR_DESC 4 | Class: Unlock 5 | Category: Armor 6 | 7 | DLC: Heralds 8 | DLC Replace: DLCConnector 9 | 10 | Point Cost: 1000 11 | Time Cost: 180 12 | 13 | Icon: NilingArmor 14 | Color: #9dffb9 15 | 16 | UnlockSubsystem(NilingArmor) 17 | SkipOnUnlockedSubsystem(NilingArmor) 18 | 19 | SecondaryEnergyCost(1500) 20 | 21 | ModAttribute(ProgenitorTechProgress, Add, 4) 22 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/subsystems/equipment/support/ConstructionBay.txt: -------------------------------------------------------------------------------- 1 | Technology: ConstructionBay 2 | Name: #R_SYS_CONSTRUCTION_BAY 3 | Description: #R_SYS_CONSTRUCTION_BAY_DESC 4 | Class: Unlock 5 | Category: Equipment - Support 6 | 7 | Point Cost: 500 8 | Time Cost: 60 9 | 10 | Icon: ComputerCore * #fca404 11 | Color: #fca404 12 | 13 | UnlockSubsystem(ConstructionBay) 14 | SkipOnUnlockedSubsystem(ConstructionBay) 15 | 16 | SecondaryMoneyCost(1000) 17 | 18 | ModAttribute(ProgenitorTechProgress, Add, 0.5) 19 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/subsystems/weapons/FlakBattery.txt: -------------------------------------------------------------------------------- 1 | Technology: FlakBattery 2 | Name: #R_SYS_FLAK_BATTERY 3 | Description: #R_SYS_FLAK_BATTERY_DESC 4 | Class: Unlock 5 | Category: Weapons 6 | 7 | DLC: Heralds 8 | DLC Replace: DLCConnector 9 | 10 | Point Cost: 600 11 | Time Cost: 120 12 | 13 | Icon: Flak::0 14 | Color: #41fdc1 15 | 16 | UnlockSubsystem(FlakBattery) 17 | SkipOnUnlockedSubsystem(FlakBattery) 18 | 19 | SecondaryEnergyCost(1000) 20 | 21 | ModAttribute(ProgenitorTechProgress, Add, 1) 22 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/subsystems/weapons/PulseBolt.txt: -------------------------------------------------------------------------------- 1 | Technology: PulseBolt 2 | Name: #R_SYS_PULSE_BOLT 3 | Description: #R_SYS_PULSE_BOLT_DESC 4 | Class: Unlock 5 | Category: Weapons 6 | 7 | Point Cost: 600 8 | Time Cost: 120 9 | 10 | DLC: Heralds 11 | DLC Replace: DLCConnector 12 | 13 | Icon: HyperdenseLaser::0 14 | Color: #7390db 15 | 16 | UnlockSubsystem(PulseBolt) 17 | SkipOnUnlockedSubsystem(PulseBolt) 18 | 19 | SecondaryEnergyCost(1500) 20 | 21 | ModAttribute(ProgenitorTechProgress, Add, 1.5) 22 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/upgrades/major/BuildCost.txt: -------------------------------------------------------------------------------- 1 | Technology: BuildCost 2 | Name: #R_KEY_BUILD_COST 3 | Description: #R_KEY_BUILD_COST_DESC 4 | Class: BigUpgrade 5 | 6 | Point Cost: 750 7 | Time Cost: 120 8 | 9 | Icon: ResourceIcon::6 10 | Color: #b1b4b6 11 | Symbol: OrbitalIcons::3*#f09030 12 | Category: Special Upgrades 13 | 14 | ReduceResearchPenalty(750) 15 | AddModifier(hull/Flagship::BuildCostFactor(0.5)) 16 | AddModifier(hull/Flagship::LaborCostFactor(2.0)) 17 | ModAttribute(DrydockCostFactor, Multiply, 0.8) 18 | -------------------------------------------------------------------------------- /Rising Stars/data/resources/level1/Hadocite.txt: -------------------------------------------------------------------------------- 1 | Resource: Hadocite 2 | Name: #HADOCITE 3 | Description: #HADOCITE_DESC 4 | Native Biome: Volcanic 5 | 6 | Icon: ResourceIcons::29 7 | Small Icon: ResourceIconsSmall::29 8 | 9 | Level: 1 10 | Rarity: Epic 11 | Affinity: Defense 12 | 13 | Pressure: 5 Defense 14 | Terraform Cost: 1500 15 | Terraform Labor: 90 16 | 17 | IfType(Orbital, AddTurret(WaveBeam, Range=3000, DPS=100, Duration=4, Cooldown=0, Tracking=0.4)) #version<59 18 | ABEM_terraforming::TerraformRequireUnlockTag(Terraform4) 19 | -------------------------------------------------------------------------------- /Rising Stars/data/subsystems/supports/special/SupportTargetingSensor.txt: -------------------------------------------------------------------------------- 1 | Template: hexVar/BuildCost, var/BaseHP, tag/Weapon, var/Range, var/BaseSupplyCost, tag/SupportShip 2 | Module: TargetingSensor 3 | Name: #TARGETINGSENSOR_NAME 4 | Description: #TARGETINGSENSOR_DESC 5 | 6 | Color: #00ff00 7 | Sprite: SupportCommand * #00ff00 8 | 9 | AddModifier: BuildCostFactor(3.0) 10 | AddModifier: LaborCostFactor(2.0) 11 | AddModifier: SupplyCostMult(2.0) 12 | AddModifier: optional SpreadMult(0.5) 13 | 14 | Range := Range + Base::Range * 0.5 15 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/secret/ColossusHull.txt: -------------------------------------------------------------------------------- 1 | Technology: ColossusHull 2 | Name: #R_SYS_COLOSSUS_HULL 3 | Description: #R_SYS_COLOSSUS_HULL_DESC 4 | Class: Secret 5 | Category: Secret 6 | 7 | Point Cost: 1000 8 | Time Cost: 60 9 | 10 | DLC: Heralds 11 | DLC Replace: DLCConnector 12 | 13 | Icon: DesignationIcons::16 14 | Color: #cc3a7d 15 | 16 | RequireBuildShipsWith(TitanHull, 3) 17 | 18 | UnlockSubsystem(ColossusHullNew) 19 | SkipOnUnlockedSubsystem(ColossusHullNew) 20 | ModAttribute(ProgenitorTechProgress, Add, 5) 21 | -------------------------------------------------------------------------------- /Rising Stars/data/abilities/traits/MinePlanet.txt: -------------------------------------------------------------------------------- 1 | Ability: MinePlanet 2 | Name: #ABL_MINE_PLANET 3 | Description: #ABL_MINE_PLANET_DESC 4 | Icon: QuickbarIcons::4 5 | 6 | Range: 500 7 | Target: targ = Object 8 | 9 | TargetFilterType(targ, Planet) 10 | ABEM_hooks::TargetFilterStatus(targ, Barren) 11 | TargetFilterNotAllied(targ, Allow Null = True) 12 | 13 | RequireCargoSpace() 14 | 15 | IsToggleTarget(targ) 16 | PersistentBeamEffect(targ, #91692c, Tractor) 17 | 18 | ABEM_races::MineCargoFromPlanet(targ, Ore, Sys.PlanetMiningRate:10, 400000) 19 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/subsystems/control/ShipComputer.txt: -------------------------------------------------------------------------------- 1 | Technology: ShipComputer 2 | Name: #R_SYS_SHIP_COMPUTER 3 | Description: #R_SYS_SHIP_COMPUTER_DESC 4 | Class: Unlock 5 | Category: Control, Power & Supply 6 | 7 | Point Cost: 500 8 | Time Cost: 90 9 | 10 | Icon: RSComputer 11 | Color: #ffa4a0 12 | 13 | UnlockSubsystem(ShipComputer) 14 | OnDLC(Heralds, UnlockSubsystem(AICore)) 15 | SkipOnUnlockedSubsystem(ShipComputer) 16 | 17 | SecondaryEnergyCost(1000) 18 | 19 | ModAttribute(ProgenitorTechProgress, Add, 1.5) 20 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/subsystems/control/SolarPanel.txt: -------------------------------------------------------------------------------- 1 | Technology: SolarPanel 2 | Name: #R_SYS_SOLARPANEL 3 | Description: #R_SYS_SOLARPANEL_DESC 4 | Class: Unlock 5 | Category: Control, Power & Supply 6 | 7 | Point Cost: 600 8 | Time Cost: 120 9 | 10 | Icon: SolarPanel 11 | Color: #64fff9 12 | 13 | UnlockSubsystem(SolarPanel) 14 | SkipOnUnlockedSubsystem(SolarPanel) 15 | 16 | DLC: Heralds 17 | DLC Replace: DLCConnector 18 | 19 | SecondaryInfluenceCost(15) 20 | 21 | ModAttribute(ProgenitorTechProgress, Add, 1) 22 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/subsystems/equipment/support/Simulator.txt: -------------------------------------------------------------------------------- 1 | Technology: Simulator 2 | Name: #R_SYS_SIMULATOR 3 | Description: #R_SYS_SIMULATOR_DESC 4 | Class: Unlock 5 | Category: Equipment - Support 6 | 7 | Point Cost: 600 8 | Time Cost: 120 9 | 10 | Icon: Simulator 11 | Color: #f17757 12 | 13 | UnlockSubsystem(Simulator) 14 | SkipOnUnlockedSubsystem(Simulator) 15 | 16 | DLC: Heralds 17 | DLC Replace: DLCConnector 18 | 19 | SecondaryInfluenceCost(10) 20 | 21 | ModAttribute(ProgenitorTechProgress, Add, 2) 22 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/subsystems/shields/DeflectorArray.txt: -------------------------------------------------------------------------------- 1 | Technology: DeflectorArray 2 | Name: #R_SYS_DEFLECTOR_ARRAY 3 | Description: #R_SYS_DEFLECTOR_ARRAY_DESC 4 | Class: Unlock 5 | Category: Shields 6 | 7 | DLC: Heralds 8 | DLC Replace: DLCConnector 9 | 10 | Point Cost: 600 11 | Time Cost: 120 12 | 13 | Icon: Dish 14 | Color: #348c99 15 | 16 | UnlockSubsystem(DeflectorArray) 17 | SkipOnUnlockedSubsystem(DeflectorArray) 18 | 19 | SecondaryEnergyCost(1500) 20 | ModAttribute(ProgenitorTechProgress, Add, 2.5) 21 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/upgrades/major/MissileRange.txt: -------------------------------------------------------------------------------- 1 | Technology: MissileRange 2 | Name: #R_MISSILE_RANGE 3 | Description: #R_MISSILE_RANGE_DESC:25% 4 | 5 | Icon: MissileLauncher::3 6 | Symbol: techTargeting*#80ffea 7 | Color: #80ffea 8 | 9 | Category: Special Upgrades 10 | Class: BigUpgrade 11 | 12 | Point Cost: 750 13 | Time Cost: 100 14 | 15 | AddModifier( tag/MissileBase::RangeMult(1.25) ) 16 | 17 | AddModifier( tag/MissileBase::SpeedMult(1.25) ) 18 | ReduceResearchPenalty(750) 19 | AffectsTaggedSubsystems(MissileBase) 20 | -------------------------------------------------------------------------------- /Rising Stars/data/resources/bonded/ClearWater.txt: -------------------------------------------------------------------------------- 1 | Resource: ClearWater 2 | Name: #CLEAR_WATER 3 | Description: #CLEAR_WATER_DESC:150% 4 | Native Biome: Oceanic 5 | Class: WaterType 6 | 7 | Icon: ResourceIconsSmall::100 8 | Small Icon: ResourceIconsSmall::100 9 | 10 | Distribution: 0 11 | Artificial: True 12 | Level: 0 13 | 14 | ConvertResource(Influence, 1.0, Money) 15 | ConvertResource(Defense, 1.0, Money) 16 | ConvertResource(Research, 1.0, Money) 17 | ConvertResource(Energy, 1.0, Money) 18 | ConvertResource(Labor, 0.9, Money) #version<49 19 | -------------------------------------------------------------------------------- /Rising Stars/data/statuses/traits/NylliNutrients.txt: -------------------------------------------------------------------------------- 1 | Status: NylliFood 2 | Name: Hydroponics Station 3 | Collapses: True 4 | Unique: False 5 | Visible To: Nobody 6 | Icon: Megafarm 7 | RepeatStacks(AddPlanetResource(Soylent1)) 8 | RemoveOnOwnerChange() 9 | ABEM_orbitals::ApplyToOwned() 10 | Status: NylliWater 11 | Name: Water Reclamation Facility 12 | Collapses: True 13 | Unique: False 14 | Visible To: Nobody 15 | Icon: Hydrogenator 16 | RepeatStacks(AddPlanetResource(BuildingWater)) 17 | ABEM_orbitals::ApplyToOwned() 18 | RemoveOnOwnerChange() 19 | -------------------------------------------------------------------------------- /Rising Stars/data/abilities/mining/SwarmerBindAsteroid.txt: -------------------------------------------------------------------------------- 1 | Ability: SwarmerBindAsteroid 2 | Name: #ABL_BIND_ASTEROID 3 | Description: #ABL_BIND_ASTEROID_DESC 4 | Icon: OreAsteroidIcon 5 | 6 | Range: 400 7 | 8 | Target: targ = Object 9 | Hotkey: B 10 | 11 | IsToggleTarget(targ, Check Range = False, Channels = False) 12 | TractorObject(targ, Max Distance = 600) 13 | PersistentBeamEffect(targ, #b8b8d8, Tractor, 0.5) 14 | AutoCastNearby(targ) 15 | 16 | ABEM_cargo::MaintainMiningBase(targ, Package Size = 325.0, Mining Rate = 2.5, Minimum Mining Rate = 0.75) 17 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/satellites/SolarSatellite.txt: -------------------------------------------------------------------------------- 1 | Technology: SolarSatellite 2 | Name: #R_ORB_SOLAR_SATELLITE 3 | Description: #R_ORB_SOLAR_SATELLITE_DESC 4 | Class: Unlock 5 | Category: Satellites 6 | 7 | DLC: Heralds 8 | DLC Replace: DLCConnector 9 | 10 | Point Cost: 250 11 | Time Cost: 90 12 | 13 | Icon: GuiOrbitalIcons::13 14 | Color: #ffdc40 15 | 16 | SecondaryEnergyCost(650) 17 | UnlockTag(SolarSatelliteUnlock) 18 | SkipOnUnlockedTag(SolarSatelliteUnlock) 19 | 20 | ModAttribute(ProgenitorTechProgress, Add, 1) 21 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/subsystems/armor/NanoMesh.txt: -------------------------------------------------------------------------------- 1 | Technology: NanoMesh 2 | Name: #R_SYS_NANOMESH 3 | Description: #R_SYS_NANOMESH_DESC 4 | Class: Unlock 5 | Category: Armor 6 | 7 | Point Cost: 500 8 | Time Cost: 90 9 | 10 | DLC: Heralds 11 | DLC Replace: DLCConnector 12 | 13 | Icon: NanoMesh 14 | Color: #a9a9a9 15 | 16 | UnlockSubsystem(NanoMesh) 17 | UnlockSubsystem(SupportNanoMesh) 18 | SkipOnUnlockedSubsystem(NanoMesh) 19 | 20 | SecondaryInfluenceCost(12) 21 | 22 | ModAttribute(ProgenitorTechProgress, Add, 3) 23 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/subsystems/equipment/combat/EmergencySupplies.txt: -------------------------------------------------------------------------------- 1 | Technology: EmergencySupplies 2 | Name: #R_SYS_EMERGENCY_SUPPLIES 3 | Description: #R_SYS_EMERGENCY_SUPPLIES_DESC 4 | Class: Unlock 5 | Category: Equipment - Combat 6 | 7 | Point Cost: 500 8 | Time Cost: 90 9 | 10 | Icon: AntimatterReactor * #b8b800 11 | Color: #b88b00 12 | 13 | UnlockSubsystem(EmergencySupplies) 14 | SkipOnUnlockedSubsystem(EmergencySupplies) 15 | 16 | SecondaryEnergyCost(500) 17 | 18 | ModAttribute(ProgenitorTechProgress, Add, 2) 19 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/subsystems/hulls/DestroyerHull.txt: -------------------------------------------------------------------------------- 1 | Technology: DestroyerHull 2 | Name: #R_SYS_DESTROYER_HULL 3 | Description: #R_SYS_DESTROYER_HULL_DESC 4 | Class: Unlock 5 | Category: Hulls 6 | 7 | DLC: Heralds 8 | DLC Replace: DLCConnector 9 | 10 | Point Cost: 600 11 | Time Cost: 120 12 | 13 | Icon: HullSubsystems::1 14 | Color: #ff8080 15 | 16 | UnlockSubsystem(DestroyerHull) 17 | SkipOnUnlockedSubsystem(DestroyerHull) 18 | 19 | SecondaryMoneyCost(1000) 20 | 21 | ModAttribute(ProgenitorTechProgress, Add, 1) 22 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/subsystems/weapons/DroneLauncher.txt: -------------------------------------------------------------------------------- 1 | Technology: DroneLauncher 2 | Name: #R_SYS_DRONELAUNCHER 3 | Description: #R_SYS_DRONELAUNCHER_DESC 4 | Class: Unlock 5 | Category: Weapons 6 | 7 | DLC: Heralds 8 | DLC Replace: DLCConnector 9 | 10 | Point Cost: 500 11 | Time Cost: 80 12 | 13 | Icon: MissileLauncher::0 14 | Color: #e6ed00 15 | 16 | UnlockSubsystem(DroneLauncher) 17 | SkipOnUnlockedSubsystem(DroneLauncher) 18 | 19 | SecondaryMoneyCost(1000) 20 | ModAttribute(ProgenitorTechProgress, Add, 2.5) 21 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/subsystems/weapons/ParticleLance.txt: -------------------------------------------------------------------------------- 1 | Technology: ParticleLance 2 | Name: #R_SYS_PARTICLELANCE 3 | Description: #R_SYS_PARTICLELANCE_DESC 4 | Class: Unlock 5 | Category: Weapons 6 | 7 | DLC: Heralds 8 | DLC Replace: DLCConnector 9 | 10 | Point Cost: 500 11 | Time Cost: 90 12 | 13 | Icon: ParticleLance::2 14 | Color: #ff7600 15 | 16 | UnlockSubsystem(ParticleLance) 17 | SkipOnUnlockedSubsystem(ParticleLance) 18 | 19 | SecondaryFTLCost(250) 20 | 21 | ModAttribute(ProgenitorTechProgress, Add, 3) 22 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/subsystems/weapons/ShockMissiles.txt: -------------------------------------------------------------------------------- 1 | Technology: ShockMissiles 2 | Name: #R_SYS_SHOCKMISSILES 3 | Description: #R_SYS_SHOCKMISSILES_DESC 4 | Class: Unlock 5 | Category: Weapons 6 | 7 | DLC: Heralds 8 | DLC Replace: DLCConnector 9 | 10 | Point Cost: 500 11 | Time Cost: 90 12 | 13 | Icon: MissileLauncher::0 14 | Color: #444ca0 15 | 16 | UnlockSubsystem(ShockMissiles) 17 | SkipOnUnlockedSubsystem(ShockMissiles) 18 | 19 | SecondaryMoneyCost(750) 20 | 21 | ModAttribute(ProgenitorTechProgress, Add, 1) 22 | -------------------------------------------------------------------------------- /Rising Stars/data/orbitals/special/RemnantEnergyCore.txt: -------------------------------------------------------------------------------- 1 | Module: RemnantEnergyCore 2 | Name: #ORB_REMNANT_ENERGY_CORE 3 | Blurb: #ORB_REMNANT_ENERGY_CORE_BLURB 4 | Description: #ORB_REMNANT_ENERGY_CORE_DESC 5 | Icon: GuiOrbitalIcons::12 6 | 7 | Core: True 8 | Standalone: True 9 | 10 | Build Cost: 400 11 | Labor Cost: 25 12 | 13 | Health: 5000 14 | Armor: 2000 15 | 16 | Model: Research_Station 17 | Material: GenericPBR_Research_Station 18 | 19 | CannotBuildManually() 20 | 21 | Strategic Icon: OrbitalIcons::12 22 | 23 | AddEnergyIncome(+0.6) 24 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/satellites/DefenseSatellite.txt: -------------------------------------------------------------------------------- 1 | Technology: DefenseSatellite 2 | Name: #R_ORB_DEFENSE_SATELLITE 3 | Description: #R_ORB_DEFENSE_SATELLITE_DESC 4 | Class: Unlock 5 | Category: Satellites 6 | 7 | DLC: Heralds 8 | DLC Replace: DLCConnector 9 | 10 | Point Cost: 275 11 | Time Cost: 90 12 | 13 | Icon: GuiOrbitalIcons::14 14 | Color: #ffdc40 15 | 16 | SecondaryMoneyCost(500) 17 | UnlockTag(DefenseSatelliteUnlock) 18 | SkipOnUnlockedTag(DefenseSatelliteUnlock) 19 | ModAttribute(ProgenitorTechProgress, Add, 0.5) 20 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/subsystems/control/ShieldedAntimatter.txt: -------------------------------------------------------------------------------- 1 | Technology: ShieldedAntimatter 2 | Name: #S_SHIELDED_AMGEN 3 | Class: Unlock 4 | 5 | Time Cost: 180 6 | Point Cost: 750 7 | 8 | 9 | 10 | Icon: ShieldedAntimatterGen 11 | Description: #R_SYS_SHIELDED_AMGEN_DESC 12 | Color: #33ffcc 13 | Category: Control, Power & Supply 14 | Symbol: ResourceIcon::2 15 | ModAttribute(ProgenitorTechProgress, Add, 5) 16 | UnlockSubsystem(ShieldedAntimatter) 17 | SecondaryEnergyCost(1250) 18 | SkipOnUnlockedSubsystem(ShieldedAntimatter) 19 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/unlocks/subsystems/propulsion/BoosterEngine.txt: -------------------------------------------------------------------------------- 1 | Technology: BoosterEngine 2 | Name: #R_SYS_BOOSTER_ENGINE 3 | Description: #R_SYS_BOOSTER_ENGINE_DESC 4 | Class: Unlock 5 | Category: Propulsion 6 | 7 | DLC: Heralds 8 | DLC Replace: DLCConnector 9 | 10 | Point Cost: 450 11 | Time Cost: 100 12 | 13 | Icon: ResearchIcons::1 14 | Color: #8872bb 15 | 16 | UnlockSubsystem(BoosterEngine) 17 | SkipOnUnlockedSubsystem(BoosterEngine) 18 | 19 | SecondaryEnergyCost(750) 20 | ModAttribute(ProgenitorTechProgress, Add, 0.5) 21 | -------------------------------------------------------------------------------- /Rising Stars/data/resources/level1/Marble.txt: -------------------------------------------------------------------------------- 1 | Resource: Marble 2 | Name: #R_MARBLE 3 | Description: #R_MARBLE_DESC 4 | Native Biome: Mountains 5 | DLC: Heralds 6 | 7 | Small Icon: ResourceIconsSmall::77 8 | 9 | Pressure: 1 Defense 10 | Pressure: 1 Energy 11 | Pressure: 1 Influence 12 | 13 | Affinity: Defense 14 | Affinity: Energy 15 | Affinity: Influence 16 | 17 | Level: 1 18 | Rarity: Rare 19 | Terraform Labor: 60 20 | Terraform Cost: 1000 21 | 22 | ModBuildingConstructRate(+0.5) 23 | ABEM_terraforming::TerraformRequireUnlockTag(Terraform2) 24 | -------------------------------------------------------------------------------- /Rising Stars/data/statuses/subsystems/ShadowportUnpacked.txt: -------------------------------------------------------------------------------- 1 | Status: ShadowportUnpacked 2 | Name: #STATUS_SHADOWPORT_UNPACKED 3 | Description: #STATUS_SHADOWPORT_UNPACKED_DESC 4 | Icon: techOrganization*#8f8 5 | 6 | AddBonusHP(+1.0) 7 | AddBonusShield(+1.0) 8 | 9 | AddMoneyIncome(400.0) 10 | AllowConstruction(Ships = True, Orbitals = True, Asteroids = True, Terraforming = True) 11 | AddLaborIncome(7) 12 | AddLaborEmpireAttribute(FactoryLaborMod) 13 | 14 | InterdictMovement() 15 | DelayFTL() 16 | GrantAbility(ShadowportPack) 17 | AddStatus(Untractorable) 18 | -------------------------------------------------------------------------------- /Rising Stars/data/resources/level1/Silicon.txt: -------------------------------------------------------------------------------- 1 | Resource: Silicon 2 | Name: #R_SILICON 3 | Description: #R_SILICON_DESC 4 | Native Biome: Desert 5 | DLC: Heralds 6 | 7 | Small Icon: ResourceIconsSmall::76 8 | 9 | Pressure: 1 Money 10 | Pressure: 2 Research 11 | 12 | Affinity: Research 13 | Affinity: Money 14 | 15 | Level: 1 16 | Rarity: Rare 17 | 18 | Asteroid Frequency: 0.02 19 | Asteroid Labor: 50 20 | Terraform Cost: 1000 21 | Terraform Labor: 60 22 | 23 | ModPopulationGrowth(+0.3) 24 | ABEM_terraforming::TerraformRequireUnlockTag(Terraform2) 25 | -------------------------------------------------------------------------------- /Rising Stars/data/subsystems/flagships/modifiers/ProjectileImpulse.txt: -------------------------------------------------------------------------------- 1 | Template: tag/IsRailgun, var/Impulse 2 | Module: ProjectileImpulse 3 | Name: #S_RAILGUN_KNOCKBACK 4 | Description: #S_RAILGUN_KNOCKBACK_DESC 5 | Color: #238f59 6 | Sprite: TechIcons::57 7 | Hex.HP := 3.0 * Hex.HP 8 | Hex.BuildCost := 2.0 * Hex.BuildCost 9 | Hex.LaborCost := 2.0 * Hex.LaborCost 10 | Hex.MaintainCost := 2.0 * Hex.MaintainCost 11 | Unique: True 12 | AddModifier: optional PierceFactor(0.0) 13 | AddModifier: optional RangeMult(1.5) 14 | AddModifier: AddRailgunKnockback(30) 15 | -------------------------------------------------------------------------------- /Rising Stars/data/orbitals/military/ShieldArray.txt: -------------------------------------------------------------------------------- 1 | Module: ShieldArray 2 | Name: #ORB_SHIELD_ARRAY 3 | Description: #ORB_SHIELD_ARRAY_DESC 4 | Blurb: #ORB_SHIELD_ARRAY_BLURB 5 | Unique: False 6 | Distant Icon: ShieldGen 7 | Icon: ShieldGen 8 | Health: 2500 9 | Armor: 1500 10 | Maintenance: 20 11 | Build Cost: 200 12 | Labor Cost: 25 13 | Strategic Icon: ShieldGen 14 | Shield Capacity: 6000 15 | Shield Regeneration: 6.25 16 | RequireUnlockTag(ShieldGenerator) 17 | ConsumeCargo(Ore, 250) 18 | 19 | ABEM_orbitals::IfHasModule(AddStatus(ShieldArray), MilitaryCore) 20 | -------------------------------------------------------------------------------- /Rising Stars/data/research/rising_stars/secret/HyperfieldSequencing.txt: -------------------------------------------------------------------------------- 1 | Technology: HyperfieldSequencing 2 | Name: #R_HYPERFIELD_SEQUENCING 3 | Description: #R_HYPERFIELD_SEQUENCING_DESC 4 | 5 | Class: Secret 6 | Category: Secret 7 | 8 | Point Cost: 1000 9 | Time Cost: 160 10 | 11 | DLC: Heralds 12 | DLC Replace: DLCConnector 13 | 14 | Icon: ActionBarIcons::5 15 | Color: #00c0ff 16 | 17 | RequireEmpireAttributeGTE(FTLEnergySpent, 4000, #RESEARCH_REQ_FTLSPENT) 18 | 19 | ModAttribute(InstantFTLFactor, Add, 2) 20 | ModAttribute(ProgenitorTechProgress, Add, 3) 21 | --------------------------------------------------------------------------------