-
-
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
23 changed files
with
287 additions
and
5 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
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,54 @@ | ||
/*-------------------------------------------------------------------- | ||
A321-200 | ||
--------------------------------------------------------------------*/ | ||
// Graphics | ||
#include "A380_800_graphic.pnml" | ||
|
||
// Switch | ||
#include "A380_800_switch.pnml" | ||
|
||
/*-------------------------------------------------------------------- | ||
항공기정보 | ||
--------------------------------------------------------------------*/ | ||
item(FEAT_AIRCRAFT, A380_800, 7010){ | ||
property { | ||
name: string(STR_A380_800_NAME); | ||
climates_available: ALL_CLIMATES; | ||
introduction_date: date(2005, 1, 1); | ||
aircraft_type: AIRCRAFT_TYPE_LARGE; | ||
sprite_id: SPRITE_ID_NEW_AIRCRAFT; | ||
|
||
//spec | ||
speed: 1016km/h; | ||
|
||
//Model | ||
model_life: VEHICLE_NEVER_EXPIRES; | ||
vehicle_life: 25; | ||
retire_early: 0; | ||
reliability_decay: 0; | ||
|
||
//Cargo | ||
passenger_capacity: 652; | ||
mail_capacity: 69; | ||
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); | ||
} | ||
|
||
graphics { | ||
default: sw_A380_800; | ||
purchase: sw_A380_800_purchase; | ||
loading_speed: 43; | ||
cost_factor: 1400; | ||
running_cost_factor: 120; | ||
cargo_subtype_text: sw_Airbus_A380_800_cargo_subtype_text; | ||
} | ||
} |
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,41 @@ | ||
/*-------------------------------------------------------------------- | ||
Graphics | ||
--------------------------------------------------------------------*/ | ||
|
||
/*-------------------------------------------------------------------- | ||
구매정보 | ||
--------------------------------------------------------------------*/ | ||
spriteset(set_A380_800_purchase, "src\Aircraft\Airbus\A380_800\A380_800.png"){ | ||
tmpl_A380_800_purchase(0, 0) | ||
} | ||
|
||
/*-------------------------------------------------------------------- | ||
1. 에어버스 A380-800 제조사 | ||
--------------------------------------------------------------------*/ | ||
|
||
spriteset(set_A380_800_default, "src\Aircraft\Airbus\A380_800\A380_800.png"){ | ||
tp_A380_800(0, 0) | ||
} | ||
|
||
/*-------------------------------------------------------------------- | ||
2. 에어버스 A380-800 대한항공 | ||
--------------------------------------------------------------------*/ | ||
|
||
spriteset(set_A380_800_korean, "src\Aircraft\Airbus\A380_800\A380_800_Korean.png"){ | ||
tp_A380_800(0, 0) | ||
} | ||
|
||
/*-------------------------------------------------------------------- | ||
2. 에어버스 A380-800 아시아나항공 | ||
--------------------------------------------------------------------*/ | ||
|
||
spriteset(set_A380_800_asiana, "src\Aircraft\Airbus\A380_800\A380_800_Asiana.png"){ | ||
tp_A380_800(0, 0) | ||
} | ||
|
||
/*-------------------------------------------------------------------- | ||
구매정보 | ||
--------------------------------------------------------------------*/ | ||
switch(FEAT_TRAINS, SELF, sw_A380_800_purchase, cargo_subtype) { | ||
set_A380_800_purchase; | ||
} |
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,16 @@ | ||
/*-------------------------------------------------------------------- | ||
스위치 | ||
--------------------------------------------------------------------*/ | ||
switch(FEAT_AIRCRAFT, SELF, sw_Airbus_A380_800_cargo_subtype_text, cargo_subtype) { | ||
1: return string(STR_REFIT_LIVERY_Airbus_A380_800_default); // 제조사 | ||
2: return string(STR_REFIT_LIVERY_Airbus_A380_800_korean); // 대한항공 | ||
3: return string(STR_REFIT_LIVERY_Airbus_A380_800_asiana); // 아시아나항공 | ||
return string(STR_REFIT_LIVERY_Airbus_A380_800_default); | ||
} | ||
|
||
switch(FEAT_AIRCRAFT, SELF, sw_A380_800, cargo_subtype) { | ||
1: set_A380_800_default; // 제조사 | ||
2: set_A380_800_korean; // 대한항공 | ||
3: set_A380_800_asiana; // 아시아나항공 | ||
set_A380_800_default; | ||
} |
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,54 @@ | ||
/*-------------------------------------------------------------------- | ||
B737-800 | ||
--------------------------------------------------------------------*/ | ||
// Graphics | ||
#include "B747_400_graphic.pnml" | ||
|
||
// Switch | ||
#include "B747_400_switch.pnml" | ||
|
||
/*-------------------------------------------------------------------- | ||
항공기정보 | ||
--------------------------------------------------------------------*/ | ||
item(FEAT_AIRCRAFT, B747_400, 7011){ | ||
property { | ||
name: string(STR_B747_400_NAME); | ||
climates_available: ALL_CLIMATES; | ||
introduction_date: date(1986, 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: 416; | ||
mail_capacity: 52; | ||
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); | ||
} | ||
|
||
graphics { | ||
default: sw_B747_400; | ||
purchase: sw_B747_400_purchase; | ||
loading_speed: 26; | ||
cost_factor: 1150; | ||
running_cost_factor: 120; | ||
cargo_subtype_text: sw_Boeing_747_400_cargo_subtype_text; | ||
} | ||
} |
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,41 @@ | ||
/*-------------------------------------------------------------------- | ||
Graphics | ||
--------------------------------------------------------------------*/ | ||
|
||
/*-------------------------------------------------------------------- | ||
구매정보 | ||
--------------------------------------------------------------------*/ | ||
spriteset(set_B747_400_purchase, "src\Aircraft\Boeing\B747_400\B747_400.png"){ | ||
tmpl_B747_400_purchase(0, 0) | ||
} | ||
|
||
/*-------------------------------------------------------------------- | ||
1. 보잉 747-400 제조사 | ||
--------------------------------------------------------------------*/ | ||
|
||
spriteset(set_B747_400, "src\Aircraft\Boeing\B747_400\B747_400.png"){ | ||
tp_B747_400(0, 0) | ||
} | ||
|
||
/*-------------------------------------------------------------------- | ||
2. 보잉 747-400 대한항공 | ||
--------------------------------------------------------------------*/ | ||
|
||
spriteset(set_B747_400_korean, "src\Aircraft\Boeing\B747_400\B747_400_Korean.png"){ | ||
tp_B747_400(0, 0) | ||
} | ||
|
||
/*-------------------------------------------------------------------- | ||
3. 보잉 747-400 아시아나항공 | ||
--------------------------------------------------------------------*/ | ||
|
||
spriteset(set_B747_400_asiana, "src\Aircraft\Boeing\B747_400\B747_400_asiana.png"){ | ||
tp_B747_400(0, 0) | ||
} | ||
|
||
/*-------------------------------------------------------------------- | ||
구매정보 | ||
--------------------------------------------------------------------*/ | ||
switch(FEAT_TRAINS, SELF, sw_B747_400_purchase, cargo_subtype) { | ||
set_B747_400_purchase; | ||
} |
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,16 @@ | ||
/*-------------------------------------------------------------------- | ||
스위치 | ||
--------------------------------------------------------------------*/ | ||
switch(FEAT_AIRCRAFT, SELF, sw_Boeing_747_400_cargo_subtype_text, cargo_subtype) { | ||
1: return string(STR_REFIT_LIVERY_Boeing_747_400_default); // 제조사 | ||
2: return string(STR_REFIT_LIVERY_Boeing_747_400_korean); // 대한항공 | ||
3: return string(STR_REFIT_LIVERY_Boeing_747_400_asiana); // 아시아나항공 | ||
return string(STR_REFIT_LIVERY_Boeing_747_400_default); | ||
} | ||
|
||
switch(FEAT_AIRCRAFT, SELF, sw_B747_400, cargo_subtype) { | ||
1: set_B747_400; // 제조사 | ||
2: set_B747_400_korean; // 대한항공 | ||
3: set_B747_400_asiana; // 아시아나항공 | ||
set_B747_400; | ||
} |
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
Oops, something went wrong.