Difference between revisions of "Description Mission - atom description"

From Nebuchadnezzar Modding Wiki
Jump to navigation Jump to search
Line 8: Line 8:
 
|-
 
|-
 
|title || locale string || obligatory || Mission title.
 
|title || locale string || obligatory || Mission title.
 +
|-
 +
|period || int2 || obligatory || Time period of the mission. Use negative number of BC.
 +
|-
 +
|period_in_title || bool || obligatory || Show mission period in it's title.
 +
|-
 +
|map || texture || obligatory || Mission description image.
 +
|-
 +
|short_description || locale string || obligatory || Mission summary description. Shown in screen with missions list.
 +
|-
 +
|long_description || vec_1D'''['''locale string''']''' || obligatory || Paragrpahs of mission full description. Shown in mission screen and Mission adviser tab.
 
|}
 
|}
  

Revision as of 17:37, 16 April 2021

<- back to all classes

General description

  • Contains mission description used in the mission screens.

Properties description

Name Type Default value /
Obligatory
Description
title locale string obligatory Mission title.
period int2 obligatory Time period of the mission. Use negative number of BC.
period_in_title bool obligatory Show mission period in it's title.
map texture obligatory Mission description image.
short_description locale string obligatory Mission summary description. Shown in screen with missions list.
long_description vec_1D[locale string] obligatory Paragrpahs of mission full description. Shown in mission screen and Mission adviser tab.

Properties in detail

Example

atom ('city.nz.13.jerusalem',
{
atom ('mission.description.nz.11',
{
    title = "@mission.nz.11",
    period = {-722, -705},
    period_in_title = true,
    map = "images/ui/maps/mission_11.png",
    short_description = "@mission.nz.11.desc",
    long_description = {
        "@mission.nz.11.a",
        "@mission.nz.11.b",
        "@mission.nz.11.c",
        "@mission.nz.11.d",
    },
    city = "@mission.nz.11.city",
    city_description = {
        "@mission.nz.11.city.a",
    },
    victory = "images/ui/victory_image.png",
})
})