public GeosphereTectonic(LineNumberReader reader) throws IOException {
   // First we get the [GEOT] tag
   reader.readLine();
   this.geosphere = StringUtilities.getPropertyValue(reader);
   this.quakesnone = StringUtilities.getPropertyValue(reader);
   this.quakesminor = StringUtilities.getPropertyValue(reader);
   this.quakesmoderate = StringUtilities.getPropertyValue(reader);
   this.quakesmajor = StringUtilities.getPropertyValue(reader);
   this.volcanoesnone = StringUtilities.getPropertyValue(reader);
   this.volcanoessmall = StringUtilities.getPropertyValue(reader);
   this.volcanoesmedium = StringUtilities.getPropertyValue(reader);
   this.volcanoeslarge = StringUtilities.getPropertyValue(reader);
 }
 public OriginCultureAge(LineNumberReader reader) throws IOException {
   // First we get the [ORIA] tag
   reader.readLine();
   this.origincultureage = StringUtilities.getPropertyValue(reader);
 }