-
-
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
12 changed files
with
119 additions
and
22 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
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
10 changes: 5 additions & 5 deletions
10
.../B747/B747_100BSF/B747_100BSF_switch.pnml → ...ng/B747/B747_100SF/B747_100SF_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 |
---|---|---|
@@ -1,14 +1,14 @@ | ||
/*-------------------------------------------------------------------- | ||
스위치 | ||
--------------------------------------------------------------------*/ | ||
switch(FEAT_AIRCRAFT, SELF, sw_Boeing_747_100BSF_cargo_subtype_text, cargo_subtype) { | ||
switch(FEAT_AIRCRAFT, SELF, sw_Boeing_747_100SF_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_B747_100BSF, cargo_subtype) { | ||
1: set_B747_100BSF; // 제조사 | ||
2: set_B747_100BSF; // 대한항공 | ||
set_B747_100BSF; | ||
switch(FEAT_AIRCRAFT, SELF, sw_B747_100SF, cargo_subtype) { | ||
1: set_B747_100SF; // 제조사 | ||
2: set_B747_100SF; // 대한항공 | ||
set_B747_100SF; | ||
} |
File renamed without changes
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 @@ | ||
/*-------------------------------------------------------------------- | ||
B747-200F | ||
--------------------------------------------------------------------*/ | ||
// Graphics | ||
#include "B747_200F_graphic.pnml" | ||
|
||
// Switch | ||
#include "B747_200F_switch.pnml" | ||
|
||
/*-------------------------------------------------------------------- | ||
Aircraft info | ||
--------------------------------------------------------------------*/ | ||
item(FEAT_AIRCRAFT, B747_200F, 7089){ | ||
property { | ||
name: string(STR_B747_200F_NAME); | ||
climates_available: ALL_CLIMATES; | ||
introduction_date: date(1974, 1, 1); | ||
aircraft_type: AIRCRAFT_TYPE_LARGE; | ||
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: 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_B747_200F; | ||
purchase: sw_B747_200F_purchase; | ||
loading_speed: 26; | ||
mail_capacity: return 1000; | ||
cost_factor: 1150; | ||
running_cost_factor: 120; | ||
cargo_subtype_text: sw_Boeing_747_200F_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_B747_200F_purchase, "src\Aircraft\Boeing\B747\B747_200F\B747_200F.png"){ | ||
tmpl_B747_100_purchase(0, 0) | ||
} | ||
|
||
/*-------------------------------------------------------------------- | ||
1. Boeing 747-200F Manufacturer | ||
--------------------------------------------------------------------*/ | ||
|
||
spriteset(set_B747_200F, "src\Aircraft\Boeing\B747\B747_200F\B747_200F.png"){ | ||
tp_B747_100(0, 0) | ||
} | ||
|
||
/*-------------------------------------------------------------------- | ||
구매정보 | ||
--------------------------------------------------------------------*/ | ||
switch(FEAT_TRAINS, SELF, sw_B747_200F_purchase, cargo_subtype) { | ||
set_B747_200F_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_747_200F_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_B747_200F, cargo_subtype) { | ||
1: set_B747_200F; // 제조사 | ||
2: set_B747_200F; // 대한항공 | ||
set_B747_200F; | ||
} |
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