This file contains hidden or 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
| gource -f -1920x1080 --seconds-per-day 1 --key --auto-skip-seconds 1 |
This file contains hidden or 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
| // C++ | |
| #include "../Engine/Logger.h" | |
| Log(LOG_INFO) << "We have UFO " << ruleDeploy->getUfoName() << "!"; |
This file contains hidden or 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
| - type: ADVENT_HIDEOUT | |
| commands: | |
| - type: addLine | |
| direction: both | |
| rects: | |
| - [1, 1, 3, 3] | |
| - type: checkBlock #Position 1,0 | |
| label: 100 | |
| blocks: [8, 9, 10, 11, 12, 13, 14, 15] | |
| rects: |
This file contains hidden or 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
| - type: STR_ADVANCED_BIO_LABORATORY | |
| requires: | |
| - STR_ADVANCED_BIO_LABORATORY | |
| spriteShape: 1 | |
| spriteFacility: 871 #TODO | |
| maxAllowedPerBase: 1 | |
| provideBaseFunc: [BIOLAB] | |
| buildCost: 120000 | |
| buildTime: 26 | |
| monthlyCost: 80000 |
This file contains hidden or 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
| - type: STR_SKULLJACK | |
| categories: [STR_XCOM_TECH, STR_EQUIPMENT, STR_PSI, STR_CONCEALABLE, STR_UNDERWATER, STR_SPACE] | |
| requires: | |
| - STR_SKULLJACK | |
| size: 0.1 | |
| costSell: 80000 | |
| weight: 5 | |
| bigSprite: 794 | |
| floorSprite: 724 | |
| handSprite: 824 |
This file contains hidden or 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
| class RuleEventScript | |
| { | |
| private: | |
| std::string _type; | |
| std::vector<std::pair<size_t, WeightedOptions*> > _eventWeights; | |
| int _firstMonth, _lastMonth, _executionOdds, _maxEvents, _minDifficulty, _maxDifficulty; | |
| std::map<std::string, bool> _researchTriggers; | |
| public: | |
| /// Creates a new event script. | |
| RuleEventScript(const std::string& type); |