-
-
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
6 changed files
with
98 additions
and
0 deletions.
There are no files selected for viewing
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 @@ | ||
/*-------------------------------------------------------------------- | ||
B787-8 Dreamliner | ||
--------------------------------------------------------------------*/ | ||
// Graphics | ||
#include "B757_300_graphic.pnml" | ||
|
||
// Switch | ||
#include "B757_300_switch.pnml" | ||
|
||
/*-------------------------------------------------------------------- | ||
항공기정보 | ||
--------------------------------------------------------------------*/ | ||
item(FEAT_AIRCRAFT, B757_300, 7111){ | ||
property { | ||
name: string(STR_B757_300_NAME); | ||
climates_available: ALL_CLIMATES; | ||
introduction_date: date(1999, 1, 1); | ||
aircraft_type: AIRCRAFT_TYPE_LARGE; | ||
sprite_id: SPRITE_ID_NEW_AIRCRAFT; | ||
variant_group: B757_200; | ||
|
||
//spec | ||
speed: 926km/h; | ||
|
||
//Model | ||
model_life: VEHICLE_NEVER_EXPIRES; | ||
vehicle_life: 30; | ||
retire_early: 0; | ||
reliability_decay: 0; | ||
|
||
//Cargo | ||
passenger_capacity: 295; | ||
mail_capacity: 20; | ||
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_B757_300; | ||
purchase: sw_B757_300_purchase; | ||
loading_speed: 26; | ||
cost_factor: 890; | ||
running_cost_factor: 120; | ||
cargo_subtype_text: sw_Boeing_757_300_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,26 @@ | ||
/*-------------------------------------------------------------------- | ||
Graphics | ||
--------------------------------------------------------------------*/ | ||
|
||
/*-------------------------------------------------------------------- | ||
Purchase Info | ||
--------------------------------------------------------------------*/ | ||
spriteset(set_B757_300_purchase, "src\Aircraft\Boeing\B757\B757_300\B757_300.png"){ | ||
tmpl_B787_10_purchase(0, 0) | ||
} | ||
|
||
/*-------------------------------------------------------------------- | ||
1. Boeing 757-300 Manufacturer | ||
--------------------------------------------------------------------*/ | ||
|
||
spriteset(set_B757_300, "src\Aircraft\Boeing\B757\B757_300\B757_300.png"){ | ||
tp_B787_10(0, 0) | ||
} | ||
|
||
|
||
/*-------------------------------------------------------------------- | ||
구매정보 | ||
--------------------------------------------------------------------*/ | ||
switch(FEAT_TRAINS, SELF, sw_B757_300_purchase, cargo_subtype) { | ||
set_B757_300_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_757_300_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_B757_300, cargo_subtype) { | ||
1: set_B757_300; // 제조사 | ||
2: set_B757_300; // 대한항공 | ||
set_B757_300; | ||
} |
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