| [Freeciv-Dev] Re: (PR#10364) Adding several building requirements[Top] [All Lists][Date Prev][Date Next][Thread Prev][Thread Next][Date Index] [Thread Index]
 
| To: | undisclosed-recipients: ; |  
| Subject: | [Freeciv-Dev] Re: (PR#10364) Adding several building requirements |  
| From: | "Per I. Mathisen" <per@xxxxxxxxxxx> |  
| Date: | Wed, 13 Oct 2004 16:23:13 -0700 |  
| Reply-to: | rt@xxxxxxxxxxx |  
 
<URL: http://rt.freeciv.org/Ticket/Display.html?id=10364 >
This is a less drastic patch than the previous, making only a few changes
that nobody objected to:
 * Cathedral requires Temple
 * Research Lab requires University
 * Space XXXX requires Factory
  - Per
 Index: data/default/buildings.ruleset
===================================================================
RCS file: /home/freeciv/CVS/freeciv/data/default/buildings.ruleset,v
retrieving revision 1.57
diff -u -r1.57 buildings.ruleset
--- data/default/buildings.ruleset      25 Sep 2004 22:18:42 -0000      1.57
+++ data/default/buildings.ruleset      27 Sep 2004 21:08:05 -0000
@@ -333,7 +333,7 @@
 [building_cathedral]
 name           = _("Cathedral")
 tech_req       = "Monotheism"
-bldg_req       = "None"
+bldg_req       = "Temple"
 graphic        = "b.cathedral"
 graphic_alt    = "-"
 ;terr_gate     =
@@ -962,7 +962,7 @@
 [building_research_lab]
 name           = _("Research Lab")
 tech_req       = "Computers"
-bldg_req       = "Library"
+bldg_req       = "University"
 graphic        = "b.research_lab"
 graphic_alt    = "-"
 ;terr_gate     =
@@ -1112,7 +1112,7 @@
 [building_space_component]
 name           = _("Space Component")
 tech_req       = "Plastics"
-bldg_req       = "None"
+bldg_req       = "Factory"
 graphic        = "b.space_component"
 graphic_alt    = "-"
 ;terr_gate     =
@@ -1143,7 +1143,7 @@
 [building_space_module]
 name           = _("Space Module")
 tech_req       = "Superconductors"
-bldg_req       = "None"
+bldg_req       = "Factory"
 graphic        = "b.space_modules"
 graphic_alt    = "-"
 ;terr_gate     =
@@ -1183,7 +1183,7 @@
 [building_space_structural]
 name           = _("Space Structural")
 tech_req       = "Space Flight"
-bldg_req       = "None"
+bldg_req       = "Factory"
 graphic        = "b.space_structural"
 graphic_alt    = "-"
 ;terr_gate     =
 
 |  |