Advertisement
Spookygnu

Untitled

Sep 3rd, 2016
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 42.42 KB | None | 0 0
  1.  
  2. // Configuration file for RSO buildings, objects and etc
  3.  
  4. #include "BIS_AddonInfo.hpp"
  5. #include "basicdefines_A3.hpp"
  6. #include "cfgPatches.hpp"
  7.  
  8.  
  9. class cfgVehicleClasses
  10. {
  11. class rso_Models
  12. {
  13. displayName = "rso Models";
  14. };
  15. };
  16. class CfgEditorCategories
  17. {
  18. class rsoModels
  19. {
  20. displayname = "rso Models";
  21. };
  22. };
  23. class CfgEditorSubcategories
  24. {
  25. class rsoBuildings
  26. {
  27. displayName = "rso Buildings";
  28. };
  29. };
  30.  
  31. class CfgDestroy
  32. {
  33. class BuildingHit
  34. {
  35. sound[] = {};
  36. };
  37. };
  38. class CfgVehicles
  39. {
  40.  
  41. class House; // declare House from ArmA 3
  42. class House_F : House // declare and define House_F, and make it inheret House
  43. {
  44. class DestructionEffects;
  45. };
  46.  
  47. class Ruins_F;
  48. class rso_apartmentcomplex : House_F
  49. {
  50. scope = 2;
  51. cost = 40;
  52. vehicleClass = rso_Models;
  53. editorCatergory = rsoModels;
  54. editorSubCategory = rsoBuildings;
  55. model = "rso\rso_apartmentcomplex.p3d";
  56. displayName = "Apartment Complex";
  57. displayNameShort = "AprtCmplx";
  58. class DestructionEffects: DestructionEffects
  59. {
  60. class Ruin1
  61. {
  62. simulation = "ruin";
  63. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  64. position = "";
  65. intensity = 1;
  66. interval = 1;
  67. lifeTime = 1;
  68. };
  69. };
  70. };
  71. class rso_apartmentcomplex_wip : House_F
  72. {
  73. scope = 2;
  74. cost = 40;
  75. vehicleClass = rso_Models;
  76. editorCatergory = rsoModels;
  77. editorSubCategory = rsoBuildings;
  78. model = "rso\rso_apartmentcomplex_wip.p3d";
  79. displayName = "Apartment Complex WIP";
  80. displayNameShort = "AprtCmplxWIP";
  81. class DestructionEffects: DestructionEffects
  82. {
  83. class Ruin1
  84. {
  85. simulation = "ruin";
  86. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  87. position = "";
  88. intensity = 1;
  89. interval = 1;
  90. lifeTime = 1;
  91. };
  92. };
  93. };
  94. class rso_apartmentcomplex4 : House_F
  95. {
  96. scope = 2;
  97. cost = 40;
  98. vehicleClass = rso_Models;
  99. editorCatergory = rsoModels;
  100. editorSubCategory = rsoBuildings;
  101. model = "rso\rso_apartmentcomplex4.p3d";
  102. displayName = "Apartment Complex4";
  103. displayNameShort = "AprtCmplx4";
  104. class DestructionEffects: DestructionEffects
  105. {
  106. class Ruin1
  107. {
  108. simulation = "ruin";
  109. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  110. position = "";
  111. intensity = 1;
  112. interval = 1;
  113. lifeTime = 1;
  114. };
  115. };
  116. };
  117. class rso_apartmentcomplex5 : House_F
  118. {
  119. scope = 2;
  120. cost = 40;
  121. vehicleClass = rso_Models;
  122. editorCatergory = rsoModels;
  123. editorSubCategory = rsoBuildings;
  124. model = "rso\rso_apartmentcomplex5.p3d";
  125. displayName = "Apartment Complex5";
  126. displayNameShort = "AprtCmplx5";
  127. class DestructionEffects: DestructionEffects
  128. {
  129. class Ruin1
  130. {
  131. simulation = "ruin";
  132. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  133. position = "";
  134. intensity = 1;
  135. interval = 1;
  136. lifeTime = 1;
  137. };
  138. };
  139. };
  140. class rso_arch : House_F
  141. {
  142. scope = 2;
  143. cost = 40;
  144. vehicleClass = rso_Models;
  145. editorCatergory = rsoModels;
  146. editorSubCategory = rsoBuildings;
  147. model = "rso\rso_arch.p3d";
  148. displayName = "Arch";
  149. displayNameShort = "Arch";
  150. class DestructionEffects: DestructionEffects
  151. {
  152. class Ruin1
  153. {
  154. simulation = "ruin";
  155. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  156. position = "";
  157. intensity = 1;
  158. interval = 1;
  159. lifeTime = 1;
  160. };
  161. };
  162. };
  163. class rso_arches : House_F
  164. {
  165. scope = 2;
  166. cost = 40;
  167. vehicleClass = rso_Models;
  168. editorCatergory = rsoModels;
  169. editorSubCategory = rsoBuildings;
  170. model = "rso\rso_arches.p3d";
  171. displayName = "Arches";
  172. displayNameShort = "Arches";
  173. class DestructionEffects: DestructionEffects
  174. {
  175. class Ruin1
  176. {
  177. simulation = "ruin";
  178. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  179. position = "";
  180. intensity = 1;
  181. interval = 1;
  182. lifeTime = 1;
  183. };
  184. };
  185. };
  186. class rso_ATC1 : House_F
  187. {
  188. scope = 2;
  189. cost = 40;
  190. vehicleClass = rso_Models;
  191. editorCatergory = rsoModels;
  192. editorSubCategory = rsoBuildings;
  193. model = "rso\rso_ATC1.p3d";
  194. displayName = "ATC1";
  195. displayNameShort = "ATC1";
  196. class DestructionEffects: DestructionEffects
  197. {
  198. class Ruin1
  199. {
  200. simulation = "ruin";
  201. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  202. position = "";
  203. intensity = 1;
  204. interval = 1;
  205. lifeTime = 1;
  206. };
  207. };
  208. };
  209. class rso_big : House_F
  210. {
  211. scope = 2;
  212. cost = 40;
  213. vehicleClass = rso_Models;
  214. editorCatergory = rsoModels;
  215. editorSubCategory = rsoBuildings;
  216. model = "rso\rso_big.p3d";
  217. displayName = "big";
  218. displayNameShort = "big";
  219. class DestructionEffects: DestructionEffects
  220. {
  221. class Ruin1
  222. {
  223. simulation = "ruin";
  224. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  225. position = "";
  226. intensity = 1;
  227. interval = 1;
  228. lifeTime = 1;
  229. };
  230. };
  231. };
  232. class rso_big_b : House_F
  233. {
  234. scope = 2;
  235. cost = 40;
  236. vehicleClass = rso_Models;
  237. editorCatergory = rsoModels;
  238. editorSubCategory = rsoBuildings;
  239. model = "rso\rso_big_b.p3d";
  240. displayName = "big_b";
  241. displayNameShort = "Big_b";
  242. class DestructionEffects: DestructionEffects
  243. {
  244. class Ruin1
  245. {
  246. simulation = "ruin";
  247. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  248. position = "";
  249. intensity = 1;
  250. interval = 1;
  251. lifeTime = 1;
  252. };
  253. };
  254. };
  255. class rso_big_c : House_F
  256. {
  257. scope = 2;
  258. cost = 40;
  259. vehicleClass = rso_Models;
  260. editorCatergory = rsoModels;
  261. editorSubCategory = rsoBuildings;
  262. model = "rso\rso_big_c.p3d";
  263. displayName = "big_c";
  264. displayNameShort = "big_c";
  265. class DestructionEffects: DestructionEffects
  266. {
  267. class Ruin1
  268. {
  269. simulation = "ruin";
  270. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  271. position = "";
  272. intensity = 1;
  273. interval = 1;
  274. lifeTime = 1;
  275. };
  276. };
  277. };
  278. class rso_big_d : House_F
  279. {
  280. scope = 2;
  281. cost = 40;
  282. vehicleClass = rso_Models;
  283. editorCatergory = rsoModels;
  284. editorSubCategory = rsoBuildings;
  285. model = "rso\rso_big_d.p3d";
  286. displayName = "big_d";
  287. displayNameShort = "big_d";
  288. class DestructionEffects: DestructionEffects
  289. {
  290. class Ruin1
  291. {
  292. simulation = "ruin";
  293. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  294. position = "";
  295. intensity = 1;
  296. interval = 1;
  297. lifeTime = 1;
  298. };
  299. };
  300. };
  301. class rso_big_e : House_F
  302. {
  303. scope = 2;
  304. cost = 40;
  305. vehicleClass = rso_Models;
  306. editorCatergory = rsoModels;
  307. editorSubCategory = rsoBuildings;
  308. model = "rso\rso_big_e.p3d";
  309. displayName = "big_e";
  310. displayNameShort = "big_e";
  311. class DestructionEffects: DestructionEffects
  312. {
  313. class Ruin1
  314. {
  315. simulation = "ruin";
  316. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  317. position = "";
  318. intensity = 1;
  319. interval = 1;
  320. lifeTime = 1;
  321. };
  322. };
  323. };
  324. class rso_big_f : House_F
  325. {
  326. scope = 2;
  327. cost = 40;
  328. vehicleClass = rso_Models;
  329. editorCatergory = rsoModels;
  330. editorSubCategory = rsoBuildings;
  331. model = "rso\rso_big_f.p3d";
  332. displayName = "big_f";
  333. displayNameShort = "big_f";
  334. class DestructionEffects: DestructionEffects
  335. {
  336. class Ruin1
  337. {
  338. simulation = "ruin";
  339. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  340. position = "";
  341. intensity = 1;
  342. interval = 1;
  343. lifeTime = 1;
  344. };
  345. };
  346. };
  347. class rso_block1 : House_F
  348. {
  349. scope = 2;
  350. cost = 40;
  351. vehicleClass = rso_Models;
  352. editorCatergory = rsoModels;
  353. editorSubCategory = rsoBuildings;
  354. model = "rso\rso_block1.p3d";
  355. displayName = "Block 1";
  356. displayNameShort = "Block1";
  357. class DestructionEffects: DestructionEffects
  358. {
  359. class Ruin1
  360. {
  361. simulation = "ruin";
  362. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  363. position = "";
  364. intensity = 1;
  365. interval = 1;
  366. lifeTime = 1;
  367. };
  368. };
  369. };
  370. class rso_complex1 : House_F
  371. {
  372. scope = 2;
  373. cost = 40;
  374. vehicleClass = rso_Models;
  375. editorCatergory = rsoModels;
  376. editorSubCategory = rsoBuildings;
  377. model = "rso\rso_complex1.p3d";
  378. displayName = "Complex 1";
  379. displayNameShort = "Cmplx 1";
  380. class DestructionEffects: DestructionEffects
  381. {
  382. class Ruin1
  383. {
  384. simulation = "ruin";
  385. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  386. position = "";
  387. intensity = 1;
  388. interval = 1;
  389. lifeTime = 1;
  390. };
  391. };
  392. };
  393. class rso_complex2 : House_F
  394. {
  395. scope = 2;
  396. cost = 40;
  397. vehicleClass = rso_Models;
  398. editorCatergory = rsoModels;
  399. editorSubCategory = rsoBuildings;
  400. model = "rso\rso_complex2.p3d";
  401. displayName = "Complex 2";
  402. displayNameShort = "Cmplx2";
  403. class DestructionEffects: DestructionEffects
  404. {
  405. class Ruin1
  406. {
  407. simulation = "ruin";
  408. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  409. position = "";
  410. intensity = 1;
  411. interval = 1;
  412. lifeTime = 1;
  413. };
  414. };
  415. };
  416. class rso_complex3 : House_F
  417. {
  418. scope = 2;
  419. cost = 40;
  420. vehicleClass = rso_Models;
  421. editorCatergory = rsoModels;
  422. editorSubCategory = rsoBuildings;
  423. model = "rso\rso_complex3.p3d";
  424. displayName = "Complex 3";
  425. displayNameShort = "Cmplx3";
  426. class DestructionEffects: DestructionEffects
  427. {
  428. class Ruin1
  429. {
  430. simulation = "ruin";
  431. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  432. position = "";
  433. intensity = 1;
  434. interval = 1;
  435. lifeTime = 1;
  436. };
  437. };
  438. };
  439. class rso_complex4 : House_F
  440. {
  441. scope = 2;
  442. cost = 40;
  443. vehicleClass = rso_Models;
  444. editorCatergory = rsoModels;
  445. editorSubCategory = rsoBuildings;
  446. model = "rso\rso_complex4.p3d";
  447. displayName = "Complex 4";
  448. displayNameShort = "Cmplx4";
  449. class DestructionEffects: DestructionEffects
  450. {
  451. class Ruin1
  452. {
  453. simulation = "ruin";
  454. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  455. position = "";
  456. intensity = 1;
  457. interval = 1;
  458. lifeTime = 1;
  459. };
  460. };
  461. };
  462. class rso_complex5 : House_F
  463. {
  464. scope = 2;
  465. cost = 40;
  466. vehicleClass = rso_Models;
  467. editorCatergory = rsoModels;
  468. editorSubCategory = rsoBuildings;
  469. model = "rso\rso_complex5.p3d";
  470. displayName = "Complex 5";
  471. displayNameShort = "Cmplx5";
  472. class DestructionEffects: DestructionEffects
  473. {
  474. class Ruin1
  475. {
  476. simulation = "ruin";
  477. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  478. position = "";
  479. intensity = 1;
  480. interval = 1;
  481. lifeTime = 1;
  482. };
  483. };
  484. };
  485. class rso_complex6 : House_F
  486. {
  487. scope = 2;
  488. cost = 40;
  489. vehicleClass = rso_Models;
  490. editorCatergory = rsoModels;
  491. editorSubCategory = rsoBuildings;
  492. model = "rso\rso_complex6.p3d";
  493. displayName = "Complex 6";
  494. displayNameShort = "Cmplx6";
  495. class DestructionEffects: DestructionEffects
  496. {
  497. class Ruin1
  498. {
  499. simulation = "ruin";
  500. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  501. position = "";
  502. intensity = 1;
  503. interval = 1;
  504. lifeTime = 1;
  505. };
  506. };
  507. };
  508. class rso_complex7 : House_F
  509. {
  510. scope = 2;
  511. cost = 40;
  512. vehicleClass = rso_Models;
  513. editorCatergory = rsoModels;
  514. editorSubCategory = rsoBuildings;
  515. model = "rso\rso_complex7.p3d";
  516. displayName = "Complex 7";
  517. displayNameShort = "Cmplx7";
  518. class DestructionEffects: DestructionEffects
  519. {
  520. class Ruin1
  521. {
  522. simulation = "ruin";
  523. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  524. position = "";
  525. intensity = 1;
  526. interval = 1;
  527. lifeTime = 1;
  528. };
  529. };
  530. };
  531. class rso_complex8 : House_F
  532. {
  533. scope = 2;
  534. cost = 40;
  535. vehicleClass = rso_Models;
  536. editorCatergory = rsoModels;
  537. editorSubCategory = rsoBuildings;
  538. model = "rso\rso_complex8.p3d";
  539. displayName = "Complex 8";
  540. displayNameShort = "Cmplx8";
  541. class DestructionEffects: DestructionEffects
  542. {
  543. class Ruin1
  544. {
  545. simulation = "ruin";
  546. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  547. position = "";
  548. intensity = 1;
  549. interval = 1;
  550. lifeTime = 1;
  551. };
  552. };
  553. };
  554. class rso_complex9 : House_F
  555. {
  556. scope = 2;
  557. cost = 40;
  558. vehicleClass = rso_Models;
  559. editorCatergory = rsoModels;
  560. editorSubCategory = rsoBuildings;
  561. model = "rso\rso_complex9.p3d";
  562. displayName = "Complex 9";
  563. displayNameShort = "Cmplx9";
  564. class DestructionEffects: DestructionEffects
  565. {
  566. class Ruin1
  567. {
  568. simulation = "ruin";
  569. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  570. position = "";
  571. intensity = 1;
  572. interval = 1;
  573. lifeTime = 1;
  574. };
  575. };
  576. };
  577. class rso_construct1 : House_F
  578. {
  579. scope = 2;
  580. cost = 40;
  581. vehicleClass = rso_Models;
  582. editorCatergory = rsoModels;
  583. editorSubCategory = rsoBuildings;
  584. model = "rso\rso_construct1.p3d";
  585. displayName = "Construct 1";
  586. displayNameShort = "Construct1";
  587. class DestructionEffects: DestructionEffects
  588. {
  589. class Ruin1
  590. {
  591. simulation = "ruin";
  592. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  593. position = "";
  594. intensity = 1;
  595. interval = 1;
  596. lifeTime = 1;
  597. };
  598. };
  599. };
  600. class rso_construct2 : House_F
  601. {
  602. scope = 2;
  603. cost = 40;
  604. vehicleClass = rso_Models;
  605. editorCatergory = rsoModels;
  606. editorSubCategory = rsoBuildings;
  607. model = "rso\rso_construct2.p3d";
  608. displayName = "Construct 2";
  609. displayNameShort = "Construct2";
  610. class DestructionEffects: DestructionEffects
  611. {
  612. class Ruin1
  613. {
  614. simulation = "ruin";
  615. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  616. position = "";
  617. intensity = 1;
  618. interval = 1;
  619. lifeTime = 1;
  620. };
  621. };
  622. };
  623. class rso_construct3 : House_F
  624. {
  625. scope = 2;
  626. cost = 40;
  627. vehicleClass = rso_Models;
  628. editorCatergory = rsoModels;
  629. editorSubCategory = rsoBuildings;
  630. model = "rso\rso_construct3.p3d";
  631. displayName = "Construct 3";
  632. displayNameShort = "Construct3";
  633. class DestructionEffects: DestructionEffects
  634. {
  635. class Ruin1
  636. {
  637. simulation = "ruin";
  638. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  639. position = "";
  640. intensity = 1;
  641. interval = 1;
  642. lifeTime = 1;
  643. };
  644. };
  645. };
  646. class rso_construct4 : House_F
  647. {
  648. scope = 2;
  649. cost = 40;
  650. vehicleClass = rso_Models;
  651. editorCatergory = rsoModels;
  652. editorSubCategory = rsoBuildings;
  653. model = "rso\rso_construct4.p3d";
  654. displayName = "Construct 4";
  655. displayNameShort = "Construct4";
  656. class DestructionEffects: DestructionEffects
  657. {
  658. class Ruin1
  659. {
  660. simulation = "ruin";
  661. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  662. position = "";
  663. intensity = 1;
  664. interval = 1;
  665. lifeTime = 1;
  666. };
  667. };
  668. };
  669. class rso_construct4_wip : House_F
  670. {
  671. scope = 2;
  672. cost = 40;
  673. vehicleClass = rso_Models;
  674. editorCatergory = rsoModels;
  675. editorSubCategory = rsoBuildings;
  676. model = "rso\rso_construct4_wip.p3d";
  677. displayName = "Construct 4_wip";
  678. displayNameShort = "Construct4_wip";
  679. class DestructionEffects: DestructionEffects
  680. {
  681. class Ruin1
  682. {
  683. simulation = "ruin";
  684. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  685. position = "";
  686. intensity = 1;
  687. interval = 1;
  688. lifeTime = 1;
  689. };
  690. };
  691. };
  692. class rso_corner1 : House_F
  693. {
  694. scope = 2;
  695. cost = 40;
  696. vehicleClass = rso_Models;
  697. editorCatergory = rsoModels;
  698. editorSubCategory = rsoBuildings;
  699. model = "rso\rso_corner1.p3d";
  700. displayName = "Corner 1";
  701. displayNameShort = "Corner1";
  702. class DestructionEffects: DestructionEffects
  703. {
  704. class Ruin1
  705. {
  706. simulation = "ruin";
  707. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  708. position = "";
  709. intensity = 1;
  710. interval = 1;
  711. lifeTime = 1;
  712. };
  713. };
  714. };
  715. class rso_corner2 : House_F
  716. {
  717. scope = 2;
  718. cost = 40;
  719. vehicleClass = rso_Models;
  720. editorCatergory = rsoModels;
  721. editorSubCategory = rsoBuildings;
  722. model = "rso\rso_corner2.p3d";
  723. displayName = "Corner 2";
  724. displayNameShort = "Corner2";
  725. class DestructionEffects: DestructionEffects
  726. {
  727. class Ruin1
  728. {
  729. simulation = "ruin";
  730. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  731. position = "";
  732. intensity = 1;
  733. interval = 1;
  734. lifeTime = 1;
  735. };
  736. };
  737. };
  738. class rso_cornershop1 : House_F
  739. {
  740. scope = 2;
  741. cost = 40;
  742. vehicleClass = rso_Models;
  743. editorCatergory = rsoModels;
  744. editorSubCategory = rsoBuildings;
  745. model = "rso\rso_cornershop1.p3d";
  746. displayName = "Cornershop";
  747. displayNameShort = "Cornershop";
  748. class DestructionEffects: DestructionEffects
  749. {
  750. class Ruin1
  751. {
  752. simulation = "ruin";
  753. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  754. position = "";
  755. intensity = 1;
  756. interval = 1;
  757. lifeTime = 1;
  758. };
  759. };
  760. };
  761. class rso_garage1 : House_F
  762. {
  763. scope = 2;
  764. cost = 40;
  765. vehicleClass = rso_Models;
  766. editorCatergory = rsoModels;
  767. editorSubCategory = rsoBuildings;
  768. model = "rso\rso_garage1.p3d";
  769. displayName = "Garage 1";
  770. displayNameShort = "Garage1";
  771. class DestructionEffects: DestructionEffects
  772. {
  773. class Ruin1
  774. {
  775. simulation = "ruin";
  776. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  777. position = "";
  778. intensity = 1;
  779. interval = 1;
  780. lifeTime = 1;
  781. };
  782. };
  783. };
  784. class rso_garages : House_F
  785. {
  786. scope = 2;
  787. cost = 40;
  788. vehicleClass = rso_Models;
  789. editorCatergory = rsoModels;
  790. editorSubCategory = rsoBuildings;
  791. model = "rso\rso_garages.p3d";
  792. displayName = "Garages";
  793. displayNameShort = "Garages";
  794. class DestructionEffects: DestructionEffects
  795. {
  796. class Ruin1
  797. {
  798. simulation = "ruin";
  799. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  800. position = "";
  801. intensity = 1;
  802. interval = 1;
  803. lifeTime = 1;
  804. };
  805. };
  806. };
  807. class rso_h1 : House_F
  808. {
  809. scope = 2;
  810. cost = 40;
  811. vehicleClass = rso_Models;
  812. editorCatergory = rsoModels;
  813. editorSubCategory = rsoBuildings;
  814. model = "rso\rso_h1.p3d";
  815. displayName = "h 1";
  816. displayNameShort = "h1";
  817. class DestructionEffects: DestructionEffects
  818. {
  819. class Ruin1
  820. {
  821. simulation = "ruin";
  822. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  823. position = "";
  824. intensity = 1;
  825. interval = 1;
  826. lifeTime = 1;
  827. };
  828. };
  829. };
  830. class rso_h2 : House_F
  831. {
  832. scope = 2;
  833. cost = 40;
  834. vehicleClass = rso_Models;
  835. editorCatergory = rsoModels;
  836. editorSubCategory = rsoBuildings;
  837. model = "rso\rso_h2.p3d";
  838. displayName = "h 2";
  839. displayNameShort = "h2";
  840. class DestructionEffects: DestructionEffects
  841. {
  842. class Ruin1
  843. {
  844. simulation = "ruin";
  845. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  846. position = "";
  847. intensity = 1;
  848. interval = 1;
  849. lifeTime = 1;
  850. };
  851. };
  852. };
  853. class rso_h3 : House_F
  854. {
  855. scope = 2;
  856. cost = 40;
  857. vehicleClass = rso_Models;
  858. editorCatergory = rsoModels;
  859. editorSubCategory = rsoBuildings;
  860. model = "rso\rso_h3.p3d";
  861. displayName = "h 3";
  862. displayNameShort = "h3";
  863. class DestructionEffects: DestructionEffects
  864. {
  865. class Ruin1
  866. {
  867. simulation = "ruin";
  868. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  869. position = "";
  870. intensity = 1;
  871. interval = 1;
  872. lifeTime = 1;
  873. };
  874. };
  875. };
  876. class rso_h4 : House_F
  877. {
  878. scope = 2;
  879. cost = 40;
  880. vehicleClass = rso_Models;
  881. editorCatergory = rsoModels;
  882. editorSubCategory = rsoBuildings;
  883. model = "rso\rso_h4.p3d";
  884. displayName = "h 4";
  885. displayNameShort = "h4";
  886. class DestructionEffects: DestructionEffects
  887. {
  888. class Ruin1
  889. {
  890. simulation = "ruin";
  891. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  892. position = "";
  893. intensity = 1;
  894. interval = 1;
  895. lifeTime = 1;
  896. };
  897. };
  898. };
  899. class rso_h5 : House_F
  900. {
  901. scope = 2;
  902. cost = 40;
  903. vehicleClass = rso_Models;
  904. editorCatergory = rsoModels;
  905. editorSubCategory = rsoBuildings;
  906. model = "rso\rso_h5.p3d";
  907. displayName = "h 5";
  908. displayNameShort = "h5";
  909. class DestructionEffects: DestructionEffects
  910. {
  911. class Ruin1
  912. {
  913. simulation = "ruin";
  914. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  915. position = "";
  916. intensity = 1;
  917. interval = 1;
  918. lifeTime = 1;
  919. };
  920. };
  921. };
  922. class rso_h6 : House_F
  923. {
  924. scope = 2;
  925. cost = 40;
  926. vehicleClass = rso_Models;
  927. editorCatergory = rsoModels;
  928. editorSubCategory = rsoBuildings;
  929. model = "rso\rso_h6.p3d";
  930. displayName = "h 6";
  931. displayNameShort = "h6";
  932. class DestructionEffects: DestructionEffects
  933. {
  934. class Ruin1
  935. {
  936. simulation = "ruin";
  937. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  938. position = "";
  939. intensity = 1;
  940. interval = 1;
  941. lifeTime = 1;
  942. };
  943. };
  944. };
  945. class rso_h7 : House_F
  946. {
  947. scope = 2;
  948. cost = 40;
  949. vehicleClass = rso_Models;
  950. editorCatergory = rsoModels;
  951. editorSubCategory = rsoBuildings;
  952. model = "rso\rso_h7.p3d";
  953. displayName = "h 7";
  954. displayNameShort = "h7";
  955. class DestructionEffects: DestructionEffects
  956. {
  957. class Ruin1
  958. {
  959. simulation = "ruin";
  960. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  961. position = "";
  962. intensity = 1;
  963. interval = 1;
  964. lifeTime = 1;
  965. };
  966. };
  967. };class rso_h8 : House_F
  968. {
  969. scope = 2;
  970. cost = 40;
  971. vehicleClass = rso_Models;
  972. editorCatergory = rsoModels;
  973. editorSubCategory = rsoBuildings;
  974. model = "rso\rso_h8.p3d";
  975. displayName = "h 8";
  976. displayNameShort = "h8";
  977. class DestructionEffects: DestructionEffects
  978. {
  979. class Ruin1
  980. {
  981. simulation = "ruin";
  982. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  983. position = "";
  984. intensity = 1;
  985. interval = 1;
  986. lifeTime = 1;
  987. };
  988. };
  989. };
  990. class rso_h9 : House_F
  991. {
  992. scope = 2;
  993. cost = 40;
  994. vehicleClass = rso_Models;
  995. editorCatergory = rsoModels;
  996. editorSubCategory = rsoBuildings;
  997. model = "rso\rso_h9.p3d";
  998. displayName = "h 9";
  999. displayNameShort = "h9";
  1000. class DestructionEffects: DestructionEffects
  1001. {
  1002. class Ruin1
  1003. {
  1004. simulation = "ruin";
  1005. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  1006. position = "";
  1007. intensity = 1;
  1008. interval = 1;
  1009. lifeTime = 1;
  1010. };
  1011. };
  1012. };
  1013. class rso_h10 : House_F
  1014. {
  1015. scope = 2;
  1016. cost = 40;
  1017. vehicleClass = rso_Models;
  1018. editorCatergory = rsoModels;
  1019. editorSubCategory = rsoBuildings;
  1020. model = "rso\rso_h10.p3d";
  1021. displayName = "h 10";
  1022. displayNameShort = "h10";
  1023. class DestructionEffects: DestructionEffects
  1024. {
  1025. class Ruin1
  1026. {
  1027. simulation = "ruin";
  1028. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  1029. position = "";
  1030. intensity = 1;
  1031. interval = 1;
  1032. lifeTime = 1;
  1033. };
  1034. };
  1035. };
  1036. class rso_h11 : House_F
  1037. {
  1038. scope = 2;
  1039. cost = 40;
  1040. vehicleClass = rso_Models;
  1041. editorCatergory = rsoModels;
  1042. editorSubCategory = rsoBuildings;
  1043. model = "rso\rso_h11.p3d";
  1044. displayName = "h 11";
  1045. displayNameShort = "h11";
  1046. class DestructionEffects: DestructionEffects
  1047. {
  1048. class Ruin1
  1049. {
  1050. simulation = "ruin";
  1051. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  1052. position = "";
  1053. intensity = 1;
  1054. interval = 1;
  1055. lifeTime = 1;
  1056. };
  1057. };
  1058. };
  1059. class rso_h12 : House_F
  1060. {
  1061. scope = 2;
  1062. cost = 40;
  1063. vehicleClass = rso_Models;
  1064. editorCatergory = rsoModels;
  1065. editorSubCategory = rsoBuildings;
  1066. model = "rso\rso_h12.p3d";
  1067. displayName = "h 12";
  1068. displayNameShort = "h12";
  1069. class DestructionEffects: DestructionEffects
  1070. {
  1071. class Ruin1
  1072. {
  1073. simulation = "ruin";
  1074. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  1075. position = "";
  1076. intensity = 1;
  1077. interval = 1;
  1078. lifeTime = 1;
  1079. };
  1080. };
  1081. };
  1082. class rso_h13 : House_F
  1083. {
  1084. scope = 2;
  1085. cost = 40;
  1086. vehicleClass = rso_Models;
  1087. editorCatergory = rsoModels;
  1088. editorSubCategory = rsoBuildings;
  1089. model = "rso\rso_h13.p3d";
  1090. displayName = "h 13";
  1091. displayNameShort = "h13";
  1092. class DestructionEffects: DestructionEffects
  1093. {
  1094. class Ruin1
  1095. {
  1096. simulation = "ruin";
  1097. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  1098. position = "";
  1099. intensity = 1;
  1100. interval = 1;
  1101. lifeTime = 1;
  1102. };
  1103. };
  1104. };
  1105. class rso_h14 : House_F
  1106. {
  1107. scope = 2;
  1108. cost = 40;
  1109. vehicleClass = rso_Models;
  1110. editorCatergory = rsoModels;
  1111. editorSubCategory = rsoBuildings;
  1112. model = "rso\rso_h14.p3d";
  1113. displayName = "h 14";
  1114. displayNameShort = "h14";
  1115. class DestructionEffects: DestructionEffects
  1116. {
  1117. class Ruin1
  1118. {
  1119. simulation = "ruin";
  1120. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  1121. position = "";
  1122. intensity = 1;
  1123. interval = 1;
  1124. lifeTime = 1;
  1125. };
  1126. };
  1127. };
  1128. class rso_h15 : House_F
  1129. {
  1130. scope = 2;
  1131. cost = 40;
  1132. vehicleClass = rso_Models;
  1133. editorCatergory = rsoModels;
  1134. editorSubCategory = rsoBuildings;
  1135. model = "rso\rso_h15.p3d";
  1136. displayName = "h 15";
  1137. displayNameShort = "h15";
  1138. class DestructionEffects: DestructionEffects
  1139. {
  1140. class Ruin1
  1141. {
  1142. simulation = "ruin";
  1143. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  1144. position = "";
  1145. intensity = 1;
  1146. interval = 1;
  1147. lifeTime = 1;
  1148. };
  1149. };
  1150. };
  1151. class rso_h16 : House_F
  1152. {
  1153. scope = 2;
  1154. cost = 40;
  1155. vehicleClass = rso_Models;
  1156. editorCatergory = rsoModels;
  1157. editorSubCategory = rsoBuildings;
  1158. model = "rso\rso_h16.p3d";
  1159. displayName = "h 16";
  1160. displayNameShort = "h16";
  1161. class DestructionEffects: DestructionEffects
  1162. {
  1163. class Ruin1
  1164. {
  1165. simulation = "ruin";
  1166. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  1167. position = "";
  1168. intensity = 1;
  1169. interval = 1;
  1170. lifeTime = 1;
  1171. };
  1172. };
  1173. };
  1174. class rso_h17 : House_F
  1175. {
  1176. scope = 2;
  1177. cost = 40;
  1178. vehicleClass = rso_Models;
  1179. editorCatergory = rsoModels;
  1180. editorSubCategory = rsoBuildings;
  1181. model = "rso\rso_h17.p3d";
  1182. displayName = "h 17";
  1183. displayNameShort = "h17";
  1184. class DestructionEffects: DestructionEffects
  1185. {
  1186. class Ruin1
  1187. {
  1188. simulation = "ruin";
  1189. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  1190. position = "";
  1191. intensity = 1;
  1192. interval = 1;
  1193. lifeTime = 1;
  1194. };
  1195. };
  1196. };
  1197. class rso_h18 : House_F
  1198. {
  1199. scope = 2;
  1200. cost = 40;
  1201. vehicleClass = rso_Models;
  1202. editorCatergory = rsoModels;
  1203. editorSubCategory = rsoBuildings;
  1204. model = "rso\rso_h18.p3d";
  1205. displayName = "h 18";
  1206. displayNameShort = "h18";
  1207. class DestructionEffects: DestructionEffects
  1208. {
  1209. class Ruin1
  1210. {
  1211. simulation = "ruin";
  1212. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  1213. position = "";
  1214. intensity = 1;
  1215. interval = 1;
  1216. lifeTime = 1;
  1217. };
  1218. };
  1219. };
  1220. class rso_h19 : House_F
  1221. {
  1222. scope = 2;
  1223. cost = 40;
  1224. vehicleClass = rso_Models;
  1225. editorCatergory = rsoModels;
  1226. editorSubCategory = rsoBuildings;
  1227. model = "rso\rso_h19.p3d";
  1228. displayName = "h 19";
  1229. displayNameShort = "h19";
  1230. class DestructionEffects: DestructionEffects
  1231. {
  1232. class Ruin1
  1233. {
  1234. simulation = "ruin";
  1235. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  1236. position = "";
  1237. intensity = 1;
  1238. interval = 1;
  1239. lifeTime = 1;
  1240. };
  1241. };
  1242. };
  1243. class rso_h20 : House_F
  1244. {
  1245. scope = 2;
  1246. cost = 40;
  1247. vehicleClass = rso_Models;
  1248. editorCatergory = rsoModels;
  1249. editorSubCategory = rsoBuildings;
  1250. model = "rso\rso_h20.p3d";
  1251. displayName = "h 20";
  1252. displayNameShort = "h20";
  1253. class DestructionEffects: DestructionEffects
  1254. {
  1255. class Ruin1
  1256. {
  1257. simulation = "ruin";
  1258. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  1259. position = "";
  1260. intensity = 1;
  1261. interval = 1;
  1262. lifeTime = 1;
  1263. };
  1264. };
  1265. };
  1266. class rso_h21 : House_F
  1267. {
  1268. scope = 2;
  1269. cost = 40;
  1270. vehicleClass = rso_Models;
  1271. editorCatergory = rsoModels;
  1272. editorSubCategory = rsoBuildings;
  1273. model = "rso\rso_h21.p3d";
  1274. displayName = "h 21";
  1275. displayNameShort = "h21";
  1276. class DestructionEffects: DestructionEffects
  1277. {
  1278. class Ruin1
  1279. {
  1280. simulation = "ruin";
  1281. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  1282. position = "";
  1283. intensity = 1;
  1284. interval = 1;
  1285. lifeTime = 1;
  1286. };
  1287. };
  1288. };
  1289. class rso_hanger : House_F
  1290. {
  1291. scope = 2;
  1292. cost = 40;
  1293. vehicleClass = rso_Models;
  1294. editorCatergory = rsoModels;
  1295. editorSubCategory = rsoBuildings;
  1296. model = "rso\rso_hanger.p3d";
  1297. displayName = "hanger";
  1298. displayNameShort = "hanger";
  1299. class DestructionEffects: DestructionEffects
  1300. {
  1301. class Ruin1
  1302. {
  1303. simulation = "ruin";
  1304. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  1305. position = "";
  1306. intensity = 1;
  1307. interval = 1;
  1308. lifeTime = 1;
  1309. };
  1310. };
  1311. };
  1312. class rso_house_big1 : House_F
  1313. {
  1314. scope = 2;
  1315. cost = 40;
  1316. vehicleClass = rso_Models;
  1317. editorCatergory = rsoModels;
  1318. editorSubCategory = rsoBuildings;
  1319. model = "rso\rso_house_big1.p3d";
  1320. displayName = "house_big1";
  1321. displayNameShort = "house_big1";
  1322. class DestructionEffects: DestructionEffects
  1323. {
  1324. class Ruin1
  1325. {
  1326. simulation = "ruin";
  1327. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  1328. position = "";
  1329. intensity = 1;
  1330. interval = 1;
  1331. lifeTime = 1;
  1332. };
  1333. };
  1334. };
  1335. class rso_hut_invert1 : House_F
  1336. {
  1337. scope = 2;
  1338. cost = 40;
  1339. vehicleClass = rso_Models;
  1340. editorCatergory = rsoModels;
  1341. editorSubCategory = rsoBuildings;
  1342. model = "rso\rso_hut_invert1.p3d";
  1343. displayName = "hut_invert1";
  1344. displayNameShort = "hut_invert1";
  1345. class DestructionEffects: DestructionEffects
  1346. {
  1347. class Ruin1
  1348. {
  1349. simulation = "ruin";
  1350. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  1351. position = "";
  1352. intensity = 1;
  1353. interval = 1;
  1354. lifeTime = 1;
  1355. };
  1356. };
  1357. };
  1358. class rso_hut1 : House_F
  1359. {
  1360. scope = 2;
  1361. cost = 40;
  1362. vehicleClass = rso_Models;
  1363. editorCatergory = rsoModels;
  1364. editorSubCategory = rsoBuildings;
  1365. model = "rso\rso_hut1.p3d";
  1366. displayName = "hut1";
  1367. displayNameShort = "hut1";
  1368. class DestructionEffects: DestructionEffects
  1369. {
  1370. class Ruin1
  1371. {
  1372. simulation = "ruin";
  1373. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  1374. position = "";
  1375. intensity = 1;
  1376. interval = 1;
  1377. lifeTime = 1;
  1378. };
  1379. };
  1380. };
  1381. class rso_hut2 : House_F
  1382. {
  1383. scope = 2;
  1384. cost = 40;
  1385. vehicleClass = rso_Models;
  1386. editorCatergory = rsoModels;
  1387. editorSubCategory = rsoBuildings;
  1388. model = "rso\rso_hut2.p3d";
  1389. displayName = "hut2";
  1390. displayNameShort = "hut2";
  1391. class DestructionEffects: DestructionEffects
  1392. {
  1393. class Ruin1
  1394. {
  1395. simulation = "ruin";
  1396. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  1397. position = "";
  1398. intensity = 1;
  1399. interval = 1;
  1400. lifeTime = 1;
  1401. };
  1402. };
  1403. };
  1404. class rso_hut3 : House_F
  1405. {
  1406. scope = 2;
  1407. cost = 40;
  1408. vehicleClass = rso_Models;
  1409. editorCatergory = rsoModels;
  1410. editorSubCategory = rsoBuildings;
  1411. model = "rso\rso_hut3.p3d";
  1412. displayName = "hut3";
  1413. displayNameShort = "hut3";
  1414. class DestructionEffects: DestructionEffects
  1415. {
  1416. class Ruin1
  1417. {
  1418. simulation = "ruin";
  1419. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  1420. position = "";
  1421. intensity = 1;
  1422. interval = 1;
  1423. lifeTime = 1;
  1424. };
  1425. };
  1426. };
  1427. class rso_hut4 : House_F
  1428. {
  1429. scope = 2;
  1430. cost = 40;
  1431. vehicleClass = rso_Models;
  1432. editorCatergory = rsoModels;
  1433. editorSubCategory = rsoBuildings;
  1434. model = "rso\rso_hut4.p3d";
  1435. displayName = "hut4";
  1436. displayNameShort = "hut4";
  1437. class DestructionEffects: DestructionEffects
  1438. {
  1439. class Ruin1
  1440. {
  1441. simulation = "ruin";
  1442. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  1443. position = "";
  1444. intensity = 1;
  1445. interval = 1;
  1446. lifeTime = 1;
  1447. };
  1448. };
  1449. };
  1450. class rso_long1 : House_F
  1451. {
  1452. scope = 2;
  1453. cost = 40;
  1454. vehicleClass = rso_Models;
  1455. editorCatergory = rsoModels;
  1456. editorSubCategory = rsoBuildings;
  1457. model = "rso\rso_long1.p3d";
  1458. displayName = "long1";
  1459. displayNameShort = "long1";
  1460. class DestructionEffects: DestructionEffects
  1461. {
  1462. class Ruin1
  1463. {
  1464. simulation = "ruin";
  1465. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  1466. position = "";
  1467. intensity = 1;
  1468. interval = 1;
  1469. lifeTime = 1;
  1470. };
  1471. };
  1472. };
  1473. class rso_minaret : House_F
  1474. {
  1475. scope = 2;
  1476. cost = 40;
  1477. vehicleClass = rso_Models;
  1478. editorCatergory = rsoModels;
  1479. editorSubCategory = rsoBuildings;
  1480. model = "rso\rso_minaret1.p3d";
  1481. displayName = "Minaret";
  1482. displayNameShort = "Minaret";
  1483. class DestructionEffects: DestructionEffects
  1484. {
  1485. class Ruin1
  1486. {
  1487. simulation = "ruin";
  1488. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  1489. position = "";
  1490. intensity = 1;
  1491. interval = 1;
  1492. lifeTime = 1;
  1493. };
  1494. };
  1495. };
  1496. class rso_mosque1 : House_F
  1497. {
  1498. scope = 2;
  1499. cost = 40;
  1500. vehicleClass = rso_Models;
  1501. editorCatergory = rsoModels;
  1502. editorSubCategory = rsoBuildings;
  1503. model = "rso\rso_mosque1.p3d";
  1504. displayName = "Mosque 1";
  1505. displayNameShort = "mosque1";
  1506. class DestructionEffects: DestructionEffects
  1507. {
  1508. class Ruin1
  1509. {
  1510. simulation = "ruin";
  1511. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  1512. position = "";
  1513. intensity = 1;
  1514. interval = 1;
  1515. lifeTime = 1;
  1516. };
  1517. };
  1518. };
  1519. class rso_parkinghouse : House_F
  1520. {
  1521. scope = 2;
  1522. cost = 40;
  1523. vehicleClass = rso_Models;
  1524. editorCatergory = rsoModels;
  1525. editorSubCategory = rsoBuildings;
  1526. model = "rso\rso_parkinghouse.p3d";
  1527. displayName = "Parking House";
  1528. displayNameShort = "parkingHouse";
  1529. class DestructionEffects: DestructionEffects
  1530. {
  1531. class Ruin1
  1532. {
  1533. simulation = "ruin";
  1534. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  1535. position = "";
  1536. intensity = 1;
  1537. interval = 1;
  1538. lifeTime = 1;
  1539. };
  1540. };
  1541. };
  1542. class rso_pharmacy : House_F
  1543. {
  1544. scope = 2;
  1545. cost = 40;
  1546. vehicleClass = rso_Models;
  1547. editorCatergory = rsoModels;
  1548. editorSubCategory = rsoBuildings;
  1549. model = "rso\rso_pharmacy.p3d";
  1550. displayName = "Pharmacy";
  1551. displayNameShort = "Pharmacy";
  1552. class DestructionEffects: DestructionEffects
  1553. {
  1554. class Ruin1
  1555. {
  1556. simulation = "ruin";
  1557. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  1558. position = "";
  1559. intensity = 1;
  1560. interval = 1;
  1561. lifeTime = 1;
  1562. };
  1563. };
  1564. };
  1565. class rso_radiomast : House_F
  1566. {
  1567. scope = 2;
  1568. cost = 40;
  1569. vehicleClass = rso_Models;
  1570. editorCatergory = rsoModels;
  1571. editorSubCategory = rsoBuildings;
  1572. model = "rso\rso_radiomast.p3d";
  1573. displayName = "radiomast";
  1574. displayNameShort = "radiomast";
  1575. class DestructionEffects: DestructionEffects
  1576. {
  1577. class Ruin1
  1578. {
  1579. simulation = "ruin";
  1580. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  1581. position = "";
  1582. intensity = 1;
  1583. interval = 1;
  1584. lifeTime = 1;
  1585. };
  1586. };
  1587. };
  1588. class rso_shack : House_F
  1589. {
  1590. scope = 2;
  1591. cost = 40;
  1592. vehicleClass = rso_Models;
  1593. editorCatergory = rsoModels;
  1594. editorSubCategory = rsoBuildings;
  1595. model = "rso\rso_shack.p3d";
  1596. displayName = "shack";
  1597. displayNameShort = "shack";
  1598. class DestructionEffects: DestructionEffects
  1599. {
  1600. class Ruin1
  1601. {
  1602. simulation = "ruin";
  1603. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  1604. position = "";
  1605. intensity = 1;
  1606. interval = 1;
  1607. lifeTime = 1;
  1608. };
  1609. };
  1610. };
  1611. class rso_shop1 : House_F
  1612. {
  1613. scope = 2;
  1614. cost = 40;
  1615. vehicleClass = rso_Models;
  1616. editorCatergory = rsoModels;
  1617. editorSubCategory = rsoBuildings;
  1618. model = "rso\rso_shop1.p3d";
  1619. displayName = "shop 1";
  1620. displayNameShort = "shop1";
  1621. class DestructionEffects: DestructionEffects
  1622. {
  1623. class Ruin1
  1624. {
  1625. simulation = "ruin";
  1626. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  1627. position = "";
  1628. intensity = 1;
  1629. interval = 1;
  1630. lifeTime = 1;
  1631. };
  1632. };
  1633. };
  1634. class rso_shop2 : House_F
  1635. {
  1636. scope = 2;
  1637. cost = 40;
  1638. vehicleClass = rso_Models;
  1639. editorCatergory = rsoModels;
  1640. editorSubCategory = rsoBuildings;
  1641. model = "rso\rso_shop2.p3d";
  1642. displayName = "shop 2";
  1643. displayNameShort = "shop2";
  1644. class DestructionEffects: DestructionEffects
  1645. {
  1646. class Ruin1
  1647. {
  1648. simulation = "ruin";
  1649. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  1650. position = "";
  1651. intensity = 1;
  1652. interval = 1;
  1653. lifeTime = 1;
  1654. };
  1655. };
  1656. };
  1657. class rso_shop3 : House_F
  1658. {
  1659. scope = 2;
  1660. cost = 40;
  1661. vehicleClass = rso_Models;
  1662. editorCatergory = rsoModels;
  1663. editorSubCategory = rsoBuildings;
  1664. model = "rso\rso_shop3.p3d";
  1665. displayName = "shop 3";
  1666. displayNameShort = "shop3";
  1667. class DestructionEffects: DestructionEffects
  1668. {
  1669. class Ruin1
  1670. {
  1671. simulation = "ruin";
  1672. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  1673. position = "";
  1674. intensity = 1;
  1675. interval = 1;
  1676. lifeTime = 1;
  1677. };
  1678. };
  1679. };
  1680. class rso_shop3b : House_F
  1681. {
  1682. scope = 2;
  1683. cost = 40;
  1684. vehicleClass = rso_Models;
  1685. editorCatergory = rsoModels;
  1686. editorSubCategory = rsoBuildings;
  1687. model = "rso\rso_shop3b.p3d";
  1688. displayName = "shop 3b";
  1689. displayNameShort = "shop3b";
  1690. class DestructionEffects: DestructionEffects
  1691. {
  1692. class Ruin1
  1693. {
  1694. simulation = "ruin";
  1695. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  1696. position = "";
  1697. intensity = 1;
  1698. interval = 1;
  1699. lifeTime = 1;
  1700. };
  1701. };
  1702. };
  1703. class rso_shop4 : House_F
  1704. {
  1705. scope = 2;
  1706. cost = 40;
  1707. vehicleClass = rso_Models;
  1708. editorCatergory = rsoModels;
  1709. editorSubCategory = rsoBuildings;
  1710. model = "rso\rso_shop4.p3d";
  1711. displayName = "shop 4";
  1712. displayNameShort = "shop4";
  1713. class DestructionEffects: DestructionEffects
  1714. {
  1715. class Ruin1
  1716. {
  1717. simulation = "ruin";
  1718. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  1719. position = "";
  1720. intensity = 1;
  1721. interval = 1;
  1722. lifeTime = 1;
  1723. };
  1724. };
  1725. };
  1726. class rso_shrine : House_F
  1727. {
  1728. scope = 2;
  1729. cost = 40;
  1730. vehicleClass = rso_Models;
  1731. editorCatergory = rsoModels;
  1732. editorSubCategory = rsoBuildings;
  1733. model = "rso\rso_shrine.p3d";
  1734. displayName = "shrine";
  1735. displayNameShort = "shrine";
  1736. class DestructionEffects: DestructionEffects
  1737. {
  1738. class Ruin1
  1739. {
  1740. simulation = "ruin";
  1741. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  1742. position = "";
  1743. intensity = 1;
  1744. interval = 1;
  1745. lifeTime = 1;
  1746. };
  1747. };
  1748. };
  1749. class rso_store1 : House_F
  1750. {
  1751. scope = 2;
  1752. cost = 40;
  1753. vehicleClass = rso_Models;
  1754. editorCatergory = rsoModels;
  1755. editorSubCategory = rsoBuildings;
  1756. model = "rso\rso_store1.p3d";
  1757. displayName = "store 1";
  1758. displayNameShort = "store1";
  1759. class DestructionEffects: DestructionEffects
  1760. {
  1761. class Ruin1
  1762. {
  1763. simulation = "ruin";
  1764. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  1765. position = "";
  1766. intensity = 1;
  1767. interval = 1;
  1768. lifeTime = 1;
  1769. };
  1770. };
  1771. };
  1772. class rso_stores : House_F
  1773. {
  1774. scope = 2;
  1775. cost = 40;
  1776. vehicleClass = rso_Models;
  1777. editorCatergory = rsoModels;
  1778. editorSubCategory = rsoBuildings;
  1779. model = "rso\rso_stores.p3d";
  1780. displayName = "stores";
  1781. displayNameShort = "stores";
  1782. class DestructionEffects: DestructionEffects
  1783. {
  1784. class Ruin1
  1785. {
  1786. simulation = "ruin";
  1787. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  1788. position = "";
  1789. intensity = 1;
  1790. interval = 1;
  1791. lifeTime = 1;
  1792. };
  1793. };
  1794. };
  1795. class rso_stores2 : House_F
  1796. {
  1797. scope = 2;
  1798. cost = 40;
  1799. vehicleClass = rso_Models;
  1800. editorCatergory = rsoModels;
  1801. editorSubCategory = rsoBuildings;
  1802. model = "rso\rso_stores2.p3d";
  1803. displayName = "stores 2";
  1804. displayNameShort = "stores2";
  1805. class DestructionEffects: DestructionEffects
  1806. {
  1807. class Ruin1
  1808. {
  1809. simulation = "ruin";
  1810. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  1811. position = "";
  1812. intensity = 1;
  1813. interval = 1;
  1814. lifeTime = 1;
  1815. };
  1816. };
  1817. };
  1818. class rso_stores3 : House_F
  1819. {
  1820. scope = 2;
  1821. cost = 40;
  1822. vehicleClass = rso_Models;
  1823. editorCatergory = rsoModels;
  1824. editorSubCategory = rsoBuildings;
  1825. model = "rso\rso_stores3.p3d";
  1826. displayName = "stores 3";
  1827. displayNameShort = "stores3";
  1828. class DestructionEffects: DestructionEffects
  1829. {
  1830. class Ruin1
  1831. {
  1832. simulation = "ruin";
  1833. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  1834. position = "";
  1835. intensity = 1;
  1836. interval = 1;
  1837. lifeTime = 1;
  1838. };
  1839. };
  1840. };
  1841. class rso_vcp1 : House_F
  1842. {
  1843. scope = 2;
  1844. cost = 40;
  1845. vehicleClass = rso_Models;
  1846. editorCatergory = rsoModels;
  1847. editorSubCategory = rsoBuildings;
  1848. model = "rso\rso_vcp1.p3d";
  1849. displayName = "Vehicle Checkpoint 1";
  1850. displayNameShort = "vcp1";
  1851. class DestructionEffects: DestructionEffects
  1852. {
  1853. class Ruin1
  1854. {
  1855. simulation = "ruin";
  1856. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  1857. position = "";
  1858. intensity = 1;
  1859. interval = 1;
  1860. lifeTime = 1;
  1861. };
  1862. };
  1863. };
  1864. class rso_watertower : House_F
  1865. {
  1866. scope = 2;
  1867. cost = 40;
  1868. vehicleClass = rso_Models;
  1869. editorCatergory = rsoModels;
  1870. editorSubCategory = rsoBuildings;
  1871. model = "rso\rso_watertower.p3d";
  1872. displayName = "watertower";
  1873. displayNameShort = "watertower";
  1874. class DestructionEffects: DestructionEffects
  1875. {
  1876. class Ruin1
  1877. {
  1878. simulation = "ruin";
  1879. type = "\a3\structures_f\households\house_small01\House_Small_01_V1_ruins_F";
  1880. position = "";
  1881. intensity = 1;
  1882. interval = 1;
  1883. lifeTime = 1;
  1884. };
  1885. };
  1886. };
  1887. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement