-
-
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
13 changed files
with
131 additions
and
2 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
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 "DC_9_30_graphic.pnml" | ||
|
||
// Switch | ||
#include "DC_9_30_switch.pnml" | ||
|
||
/*-------------------------------------------------------------------- | ||
항공기정보 | ||
--------------------------------------------------------------------*/ | ||
item(FEAT_AIRCRAFT, DC_9_30, 7009){ | ||
property { | ||
name: string(STR_DC_9_30_NAME); | ||
climates_available: ALL_CLIMATES; | ||
introduction_date: date(1965, 1, 1); | ||
aircraft_type: AIRCRAFT_TYPE_SMALL; | ||
sprite_id: SPRITE_ID_NEW_AIRCRAFT; | ||
|
||
//spec | ||
speed: 913km/h; | ||
|
||
//Model | ||
model_life: VEHICLE_NEVER_EXPIRES; | ||
vehicle_life: 25; | ||
retire_early: 0; | ||
reliability_decay: 0; | ||
|
||
//Cargo | ||
passenger_capacity: 115; | ||
mail_capacity: 12; | ||
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_DC_9_30; | ||
purchase: sw_DC_9_30_purchase; | ||
loading_speed: 43; | ||
cost_factor: 830; | ||
running_cost_factor: 120; | ||
cargo_subtype_text: sw_DC_9_30_cargo_subtype_text; | ||
} | ||
} |
33 changes: 33 additions & 0 deletions
33
src/Aircraft/McDonnellDouglas/DC_9_30/DC_9_30_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,33 @@ | ||
/*-------------------------------------------------------------------- | ||
Graphics | ||
--------------------------------------------------------------------*/ | ||
|
||
/*-------------------------------------------------------------------- | ||
구매정보 | ||
--------------------------------------------------------------------*/ | ||
spriteset(set_DC_9_30_purchase, "src\Aircraft\McDonnellDouglas\DC_9_30\DC_9_30.png"){ | ||
tmpl_DC_9_30_purchase(0, 0) | ||
} | ||
|
||
/*-------------------------------------------------------------------- | ||
1. DC-9-30 제조사 | ||
--------------------------------------------------------------------*/ | ||
|
||
spriteset(set_DC_9_30_default, "src\Aircraft\McDonnellDouglas\DC_9_30\DC_9_30.png"){ | ||
tp_DC_9_30(0, 0) | ||
} | ||
|
||
/*-------------------------------------------------------------------- | ||
2. DC-9-30 대한항공 | ||
--------------------------------------------------------------------*/ | ||
|
||
spriteset(set_DC_9_30_korean, "src\Aircraft\McDonnellDouglas\DC_9_30\DC_9_30_korean.png"){ | ||
tp_DC_9_30(0, 0) | ||
} | ||
|
||
/*-------------------------------------------------------------------- | ||
구매정보 | ||
--------------------------------------------------------------------*/ | ||
switch(FEAT_TRAINS, SELF, sw_DC_9_30_purchase, cargo_subtype) { | ||
set_DC_9_30_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,14 @@ | ||
/*-------------------------------------------------------------------- | ||
스위치 | ||
--------------------------------------------------------------------*/ | ||
switch(FEAT_AIRCRAFT, SELF, sw_DC_9_30_cargo_subtype_text, cargo_subtype) { | ||
1: return string(STR_REFIT_LIVERY_DC_9_30_default); // 제조사 | ||
2: return string(STR_REFIT_LIVERY_DC_9_30_korean); // 대한항공 | ||
return string(STR_REFIT_LIVERY_DC_9_30_default); | ||
} | ||
|
||
switch(FEAT_AIRCRAFT, SELF, sw_DC_9_30, cargo_subtype) { | ||
1: set_DC_9_30_default; // 제조사 | ||
2: set_DC_9_30_korean; // 대한항공 | ||
set_DC_9_30_default; | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,5 +11,6 @@ A320_200, //7007 | |
A321_200, //7002 | ||
A330_300, //7005 | ||
ATR_72_500, //7008 | ||
DC_9_30, //7009 | ||
|
||
]); |
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