-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
34 changed files
with
724 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
/*-------------------------------------------------------------------- | ||
B727-100 | ||
--------------------------------------------------------------------*/ | ||
// Graphics | ||
#include "B727_100_graphic.pnml" | ||
|
||
// Switch | ||
#include "B727_100_switch.pnml" | ||
|
||
/*-------------------------------------------------------------------- | ||
Aircraft info | ||
--------------------------------------------------------------------*/ | ||
item(FEAT_AIRCRAFT, B727_100, 7113){ | ||
property { | ||
name: string(STR_B727_100_NAME); | ||
climates_available: ALL_CLIMATES; | ||
introduction_date: date(1961, 1, 1); | ||
aircraft_type: AIRCRAFT_TYPE_SMALL; | ||
sprite_id: SPRITE_ID_NEW_AIRCRAFT; | ||
|
||
//spec | ||
speed: 990km/h; | ||
|
||
//Model | ||
model_life: VEHICLE_NEVER_EXPIRES; | ||
vehicle_life: 30; | ||
retire_early: 0; | ||
reliability_decay: 0; | ||
|
||
//Cargo | ||
passenger_capacity: 131; | ||
mail_capacity: 15; | ||
acceleration: 27; | ||
refittable_cargo_classes: NO_CARGO_CLASS; | ||
non_refittable_cargo_classes: NO_CARGO_CLASS; | ||
cargo_allow_refit: [PASS]; | ||
cargo_disallow_refit: []; | ||
|
||
//Costs | ||
refit_cost: 100; | ||
|
||
//Flags | ||
misc_flags: bitmask(AIRCRAFT_FLAG_2CC); | ||
sound_effect: SOUND_JET; | ||
} | ||
|
||
graphics { | ||
default: sw_B727_100; | ||
purchase: sw_B727_100_purchase; | ||
loading_speed: 26; | ||
cost_factor: 1150; | ||
running_cost_factor: 120; | ||
cargo_subtype_text: sw_Boeing_727_100_cargo_subtype_text; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/*-------------------------------------------------------------------- | ||
Graphics | ||
--------------------------------------------------------------------*/ | ||
|
||
/*-------------------------------------------------------------------- | ||
구매정보 | ||
--------------------------------------------------------------------*/ | ||
spriteset(set_B727_100_purchase, "src\Aircraft\Boeing\B727\B727_100\B727_100.png"){ | ||
tmpl_B727_100_purchase(0, 0) | ||
} | ||
|
||
/*-------------------------------------------------------------------- | ||
1. Boeing 727-100 Manufacturer | ||
--------------------------------------------------------------------*/ | ||
|
||
spriteset(set_B727_100, "src\Aircraft\Boeing\B727\B727_100\B727_100.png"){ | ||
tp_B727_100(0, 0) | ||
} | ||
|
||
/*-------------------------------------------------------------------- | ||
구매정보 | ||
--------------------------------------------------------------------*/ | ||
switch(FEAT_TRAINS, SELF, sw_B727_100_purchase, cargo_subtype) { | ||
set_B727_100_purchase; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/*-------------------------------------------------------------------- | ||
스위치 | ||
--------------------------------------------------------------------*/ | ||
switch(FEAT_AIRCRAFT, SELF, sw_Boeing_727_100_cargo_subtype_text, cargo_subtype) { | ||
1: return string(STR_REFIT_LIVERY_Boeing); // 제조사 | ||
2: return string(STR_REFIT_LIVERY_Boeing); // 대한항공 | ||
return string(STR_REFIT_LIVERY_Boeing); | ||
} | ||
|
||
switch(FEAT_AIRCRAFT, SELF, sw_B727_100, cargo_subtype) { | ||
1: set_B727_100; // 제조사 | ||
2: set_B727_100; // 대한항공 | ||
set_B727_100; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
/*-------------------------------------------------------------------- | ||
B727-100 | ||
--------------------------------------------------------------------*/ | ||
// Graphics | ||
#include "B727_100C_graphic.pnml" | ||
|
||
// Switch | ||
#include "B727_100C_switch.pnml" | ||
|
||
/*-------------------------------------------------------------------- | ||
Aircraft info | ||
--------------------------------------------------------------------*/ | ||
item(FEAT_AIRCRAFT, B727_100C, 7114){ | ||
property { | ||
name: string(STR_B727_100C_NAME); | ||
climates_available: ALL_CLIMATES; | ||
introduction_date: date(1961, 1, 1); | ||
aircraft_type: AIRCRAFT_TYPE_SMALL; | ||
sprite_id: SPRITE_ID_NEW_AIRCRAFT; | ||
variant_group: B727_100; | ||
|
||
//spec | ||
speed: 990km/h; | ||
|
||
//Model | ||
model_life: VEHICLE_NEVER_EXPIRES; | ||
vehicle_life: 30; | ||
retire_early: 0; | ||
reliability_decay: 0; | ||
|
||
//Cargo | ||
passenger_capacity: 131; | ||
mail_capacity: 100; | ||
acceleration: 27; | ||
refittable_cargo_classes: NO_CARGO_CLASS; | ||
non_refittable_cargo_classes: NO_CARGO_CLASS; | ||
cargo_allow_refit: [PASS]; | ||
cargo_disallow_refit: []; | ||
|
||
//Costs | ||
refit_cost: 100; | ||
|
||
//Flags | ||
misc_flags: bitmask(AIRCRAFT_FLAG_2CC); | ||
sound_effect: SOUND_JET; | ||
} | ||
|
||
graphics { | ||
default: sw_B727_100C; | ||
purchase: sw_B727_100C_purchase; | ||
loading_speed: 26; | ||
cost_factor: 1150; | ||
running_cost_factor: 120; | ||
cargo_subtype_text: sw_Boeing_727_100C_cargo_subtype_text; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/*-------------------------------------------------------------------- | ||
Graphics | ||
--------------------------------------------------------------------*/ | ||
|
||
/*-------------------------------------------------------------------- | ||
구매정보 | ||
--------------------------------------------------------------------*/ | ||
spriteset(set_B727_100C_purchase, "src\Aircraft\Boeing\B727\B727_100C\B727_100C.png"){ | ||
tmpl_B727_100_purchase(0, 0) | ||
} | ||
|
||
/*-------------------------------------------------------------------- | ||
1. Boeing 727-100C Manufacturer | ||
--------------------------------------------------------------------*/ | ||
|
||
spriteset(set_B727_100C, "src\Aircraft\Boeing\B727\B727_100C\B727_100C.png"){ | ||
tp_B727_100(0, 0) | ||
} | ||
|
||
/*-------------------------------------------------------------------- | ||
구매정보 | ||
--------------------------------------------------------------------*/ | ||
switch(FEAT_TRAINS, SELF, sw_B727_100C_purchase, cargo_subtype) { | ||
set_B727_100C_purchase; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/*-------------------------------------------------------------------- | ||
스위치 | ||
--------------------------------------------------------------------*/ | ||
switch(FEAT_AIRCRAFT, SELF, sw_Boeing_727_100C_cargo_subtype_text, cargo_subtype) { | ||
1: return string(STR_REFIT_LIVERY_Boeing); // 제조사 | ||
2: return string(STR_REFIT_LIVERY_Boeing); // 대한항공 | ||
return string(STR_REFIT_LIVERY_Boeing); | ||
} | ||
|
||
switch(FEAT_AIRCRAFT, SELF, sw_B727_100C, cargo_subtype) { | ||
1: set_B727_100C; // 제조사 | ||
2: set_B727_100C; // 대한항공 | ||
set_B727_100C; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
/*-------------------------------------------------------------------- | ||
B727-100QC | ||
--------------------------------------------------------------------*/ | ||
// Graphics | ||
#include "B727_100QC_graphic.pnml" | ||
|
||
// Switch | ||
#include "B727_100QC_switch.pnml" | ||
|
||
/*-------------------------------------------------------------------- | ||
Aircraft info | ||
--------------------------------------------------------------------*/ | ||
item(FEAT_AIRCRAFT, B727_100QC, 7115){ | ||
property { | ||
name: string(STR_B727_100QC_NAME); | ||
climates_available: ALL_CLIMATES; | ||
introduction_date: date(1961, 1, 1); | ||
aircraft_type: AIRCRAFT_TYPE_SMALL; | ||
sprite_id: SPRITE_ID_NEW_AIRCRAFT; | ||
variant_group: B727_100; | ||
|
||
//spec | ||
speed: 990km/h; | ||
|
||
//Model | ||
model_life: VEHICLE_NEVER_EXPIRES; | ||
vehicle_life: 30; | ||
retire_early: 0; | ||
reliability_decay: 0; | ||
|
||
//Cargo | ||
passenger_capacity: 131; | ||
mail_capacity: 100; | ||
acceleration: 27; | ||
refittable_cargo_classes: NO_CARGO_CLASS; | ||
non_refittable_cargo_classes: NO_CARGO_CLASS; | ||
cargo_allow_refit: [PASS]; | ||
cargo_disallow_refit: []; | ||
|
||
//Costs | ||
refit_cost: 100; | ||
|
||
//Flags | ||
misc_flags: bitmask(AIRCRAFT_FLAG_2CC); | ||
sound_effect: SOUND_JET; | ||
} | ||
|
||
graphics { | ||
default: sw_B727_100QC; | ||
purchase: sw_B727_100QC_purchase; | ||
loading_speed: 26; | ||
cost_factor: 1150; | ||
running_cost_factor: 120; | ||
cargo_subtype_text: sw_Boeing_727_100QC_cargo_subtype_text; | ||
} | ||
} |
25 changes: 25 additions & 0 deletions
25
src/Aircraft/Boeing/B727/B727_100QC/B727_100QC_graphic.pnml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/*-------------------------------------------------------------------- | ||
Graphics | ||
--------------------------------------------------------------------*/ | ||
|
||
/*-------------------------------------------------------------------- | ||
구매정보 | ||
--------------------------------------------------------------------*/ | ||
spriteset(set_B727_100QC_purchase, "src\Aircraft\Boeing\B727\B727_100QC\B727_100QC.png"){ | ||
tmpl_B727_100_purchase(0, 0) | ||
} | ||
|
||
/*-------------------------------------------------------------------- | ||
1. Boeing 727-100QC Manufacturer | ||
--------------------------------------------------------------------*/ | ||
|
||
spriteset(set_B727_100QC, "src\Aircraft\Boeing\B727\B727_100QC\B727_100QC.png"){ | ||
tp_B727_100(0, 0) | ||
} | ||
|
||
/*-------------------------------------------------------------------- | ||
구매정보 | ||
--------------------------------------------------------------------*/ | ||
switch(FEAT_TRAINS, SELF, sw_B727_100QC_purchase, cargo_subtype) { | ||
set_B727_100QC_purchase; | ||
} |
14 changes: 14 additions & 0 deletions
14
src/Aircraft/Boeing/B727/B727_100QC/B727_100QC_switch.pnml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/*-------------------------------------------------------------------- | ||
스위치 | ||
--------------------------------------------------------------------*/ | ||
switch(FEAT_AIRCRAFT, SELF, sw_Boeing_727_100QC_cargo_subtype_text, cargo_subtype) { | ||
1: return string(STR_REFIT_LIVERY_Boeing); // 제조사 | ||
2: return string(STR_REFIT_LIVERY_Boeing); // 대한항공 | ||
return string(STR_REFIT_LIVERY_Boeing); | ||
} | ||
|
||
switch(FEAT_AIRCRAFT, SELF, sw_B727_100QC, cargo_subtype) { | ||
1: set_B727_100QC; // 제조사 | ||
2: set_B727_100QC; // 대한항공 | ||
set_B727_100QC; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
/*-------------------------------------------------------------------- | ||
B727-100QF | ||
--------------------------------------------------------------------*/ | ||
// Graphics | ||
#include "B727_100QF_graphic.pnml" | ||
|
||
// Switch | ||
#include "B727_100QF_switch.pnml" | ||
|
||
/*-------------------------------------------------------------------- | ||
Aircraft info | ||
--------------------------------------------------------------------*/ | ||
item(FEAT_AIRCRAFT, B727_100QF, 7116){ | ||
property { | ||
name: string(STR_B727_100QF_NAME); | ||
climates_available: ALL_CLIMATES; | ||
introduction_date: date(1961, 1, 1); | ||
aircraft_type: AIRCRAFT_TYPE_SMALL; | ||
sprite_id: SPRITE_ID_NEW_AIRCRAFT; | ||
variant_group: B727_100; | ||
|
||
//spec | ||
speed: 990km/h; | ||
|
||
//Model | ||
model_life: VEHICLE_NEVER_EXPIRES; | ||
vehicle_life: 30; | ||
retire_early: 0; | ||
reliability_decay: 0; | ||
|
||
//Cargo | ||
passenger_capacity: 0; | ||
mail_capacity: 0; | ||
acceleration: 27; | ||
refittable_cargo_classes: NO_CARGO_CLASS; | ||
non_refittable_cargo_classes: NO_CARGO_CLASS; | ||
cargo_allow_refit: [GOOD, MAIL, OIL_, LVST, COAL, GRAI, WOOD, IORE, STEL, VALU, PAPR, WHEA, FOOD, GOLD, RUBR, FRUT, MAIZ, CORE, WATR, DIAM, SUGR, BATT, BUBL, COLA, CTCD, FZDR, PLST, SWET, TOFF, TOYS, AORE, RCYC, SGBT, FICR, MNSP, METL, ACID, BEER, STAL, ALUM, NH3_, BEAN, BDMT, CBLK, STCB, CASS, CSTI, CMNT, RFPR, CHLO, CLAY, SOAP, CTAR, JAVA, COKE, COPR, EOIL, POWR, ENSP, BOOM, FMSP, FECR, FERT, FISH, GLAS, KAOL, LIME, MNO2, MILK, NITR, NUTS, O2__, COAT, PEAT, PETR, PHOS, IRON, PIPE, PLAS, POTA, PORE, QLME, SALT, SAND, SCMT, SLAG, SASH, LYE_, STST, STSE, STSH, STWR, GRVL, SULP, WDPR, TYRE, VBOD, VENG, VPTS, VEHI, WOOL, ZINC]; | ||
cargo_disallow_refit: []; | ||
|
||
//Costs | ||
refit_cost: 100; | ||
|
||
//Flags | ||
misc_flags: bitmask(AIRCRAFT_FLAG_2CC); | ||
sound_effect: SOUND_JET; | ||
} | ||
|
||
graphics { | ||
default: sw_B727_100QF; | ||
purchase: sw_B727_100QF_purchase; | ||
loading_speed: 26; | ||
cost_factor: 1150; | ||
mail_capacity: return 160; | ||
running_cost_factor: 120; | ||
cargo_subtype_text: sw_Boeing_727_100QF_cargo_subtype_text; | ||
} | ||
} |
Oops, something went wrong.