| Line 43: |
Line 43: |
| | |All [[Modding#features|features]] that this software can implement. | | |All [[Modding#features|features]] that this software can implement. |
| | |} | | |} |
| | + | |
| | + | Example taken form the test mod: |
| | + | <pre><SoftwareType> |
| | + | <Name>Test Software</Name> |
| | + | <Description>This is part of a test mod. If you develop a perfect version, 50% of the population will want it, but 10% might randomly not want it.</Description> |
| | + | <Random>0.1</Random> |
| | + | <Popularity>0.5</Popularity> |
| | + | <OSSpecific>TRUE</OSSpecific> |
| | + | <OneClient>FALSE</OneClient> |
| | + | <InHouse>FALSE</InHouse> |
| | + | <Category>Test</Category> |
| | + | <NameGenerator>testgen</NameGenerator> |
| | + | <Needs> |
| | + | <Name>Visual Tool</Name> |
| | + | </Needs> |
| | + | <Features> |
| | + | <Feature Forced="TRUE"> |
| | + | <Name>Test feat 1</Name> |
| | + | <Description>This feature will always be selected unless superseded by a feature with this as "From".</Description> |
| | + | <DevTime>2</DevTime> |
| | + | <Innovation>0</Innovation> |
| | + | <Usability>1</Usability> |
| | + | <Stability>1</Stability> |
| | + | <CodeArt>1</CodeArt> |
| | + | <Dependencies></Dependencies> |
| | + | </Feature> |
| | + | <Feature From="Test feat 1"> |
| | + | <Name>Test feat 2</Name> |
| | + | <Description>This feature takes 6 months to make and has 4/6 Usability.</Description> |
| | + | <DevTime>6</DevTime> |
| | + | <Innovation>1</Innovation> |
| | + | <Usability>4</Usability> |
| | + | <Stability>1</Stability> |
| | + | <CodeArt>1</CodeArt> |
| | + | <Dependencies> |
| | + | <Dependency Software="Visual Tool">Image viewing</Dependency> |
| | + | </Dependencies> |
| | + | </Feature> |
| | + | <Feature> |
| | + | <Name>Test feat 3</Name> |
| | + | <Description>This feature takes just as many artists as programmers and offers no stability.</Description> |
| | + | <DevTime>5</DevTime> |
| | + | <Innovation>1</Innovation> |
| | + | <Usability>1</Usability> |
| | + | <Stability>0</Stability> |
| | + | <CodeArt>0.5</CodeArt> |
| | + | <Dependencies> |
| | + | <Dependency Software="Test Software">Test feat 2</Dependency> |
| | + | </Dependencies> |
| | + | </Feature> |
| | + | </Features> |
| | + | </SoftwareType></pre> |