@@ -321,7 +321,7 @@ public void generate(SectorAPI sector) {
321
321
planet6 .getSpec ().setCloudColor (new Color (245 , 255 , 254 , 195 ));
322
322
323
323
SectorEntityToken STR = system .addCustomEntity ("corvus_abandoned_station" ,
324
- "前哨站 " , "station_side04" , "neutral" );
324
+ "Aosnit Abandoned Station " , "station_side04" , "neutral" );
325
325
326
326
STR .setCircularOrbitPointingDown (system .getEntityById ("SGB_planet6" ), 45 , 300 , 30 );
327
327
STR .setCustomDescriptionId ("SGB_planet6_platform" );
@@ -367,15 +367,15 @@ public void generate(SectorAPI sector) {
367
367
planet7 .getSpec ().setCloudColor (new Color (200 , 200 , 200 , 150 ));
368
368
369
369
//为星系生成指定跳跃点
370
- JumpPointAPI jumpPoint = Global .getFactory ().createJumpPoint ("inside_point" , "SGB Jump-point " );
370
+ JumpPointAPI jumpPoint = Global .getFactory ().createJumpPoint ("inside_point" , "Aosnit Inner-System Jump Point " );
371
371
OrbitAPI orbit = Global .getFactory ().createCircularOrbit (planet1 , 0 , 1000 , 30 );
372
372
jumpPoint .setOrbit (orbit );
373
373
jumpPoint .setRelatedPlanet (planet1 );
374
374
jumpPoint .setStandardWormholeToHyperspaceVisual ();
375
375
system .addEntity (jumpPoint );
376
376
377
377
//为星系生成指定跳跃点
378
- JumpPointAPI jumpPoint2 = Global .getFactory ().createJumpPoint ("inside_point2" , "SGB Jump-point " );
378
+ JumpPointAPI jumpPoint2 = Global .getFactory ().createJumpPoint ("inside_point2" , "Ougest Gravity Well " );
379
379
OrbitAPI orbit2 = Global .getFactory ().createCircularOrbit (star , 40 , 3500 , 360 );
380
380
jumpPoint2 .setOrbit (orbit2 );
381
381
jumpPoint2 .setRelatedPlanet (planet1 );
@@ -394,19 +394,19 @@ public void generate(SectorAPI sector) {
394
394
395
395
//生成星门
396
396
SectorEntityToken gate = system .addCustomEntity ("SGB_gate" , // unique id 设置星门id
397
- "星门 " , // name - if null, defaultName from custom_entities.json will be used 设置你星门的名字
397
+ "Aosnit Gate " , // name - if null, defaultName from custom_entities.json will be used 设置你星门的名字
398
398
"inactive_gate" , // type of object, defined in custom_entities.json 设置标签(让系统识别这是个星门)根据custom_entities.json设置
399
399
null ); // faction
400
400
401
401
402
402
gate .setCircularOrbit (star , 5 , 3080f , 350f );
403
403
404
404
//设置你星系的永久稳定点建筑
405
- SectorEntityToken A = system .addCustomEntity ("SGB_A" , "中继通讯基座" , "comm_relay" , "SGB" );
405
+ SectorEntityToken A = system .addCustomEntity (null , null , "comm_relay" , "SGB" );
406
406
A .setCircularOrbit (star , 180f , 2900f , 365f );
407
- SectorEntityToken B = system .addCustomEntity ("SGB_B" , "中继导航浮标" , "nav_buoy" , "SGB" );
407
+ SectorEntityToken B = system .addCustomEntity (null , null , "nav_buoy" , "SGB" );
408
408
B .setCircularOrbit (star , 220f , 2500f , 365f );
409
- SectorEntityToken C = system .addCustomEntity ("SGB_C" , "中继传感器阵列" , "sensor_array" , "SGB" );
409
+ SectorEntityToken C = system .addCustomEntity (null , null , "sensor_array" , "SGB" );
410
410
C .setCircularOrbit (star , 240f , 2900f , 365f );
411
411
412
412
}
0 commit comments