science.kbasic_class

my_game As game
level_people As INTEGER
level_pilot As INTEGER
level_scientist As INTEGER
level_soldier As INTEGER
level_earth As INTEGER
level_mars As INTEGER
level_venus As INTEGER
level_mercury As INTEGER
level_saturn As INTEGER
level_neptune As INTEGER
level_jupiter As INTEGER
level_moon As INTEGER
level_church As INTEGER
level_communication As INTEGER
level_education As INTEGER
level_energy As INTEGER
level_entertainment As INTEGER
level_farming As INTEGER
level_health As INTEGER
level_living As INTEGER
level_market As INTEGER
level_oxygen As INTEGER
level_plazma As INTEGER
level_rocketlauncher As INTEGER
level_science As INTEGER
level_settle As INTEGER
level_shield As INTEGER
level_spaceport As INTEGER
level_wall As INTEGER
level_water As INTEGER
level_crystal As INTEGER
level_energy2 As INTEGER
level_entertainment2 As INTEGER
level_food As INTEGER
level_gold As INTEGER
level_hightech As INTEGER
level_iron As INTEGER
level_luxury As INTEGER
level_oxygen2 As INTEGER
level_slave As INTEGER
level_water2 As INTEGER
calculate ()
people As INTEGER
pilot As INTEGER
scientist As INTEGER
soldier As INTEGER
earth As INTEGER
mars As INTEGER
venus As INTEGER
mercury As INTEGER
saturn As INTEGER
neptune As INTEGER
jupiter As INTEGER
moon As INTEGER
church As INTEGER
communication As INTEGER
education As INTEGER
energy As INTEGER
entertainment As INTEGER
farming As INTEGER
health As INTEGER
living As INTEGER
market As INTEGER
oxygen As INTEGER
plazma As INTEGER
rocketlauncher As INTEGER
science As INTEGER
settle As INTEGER
shield As INTEGER
spaceport As INTEGER
wall As INTEGER
water As INTEGER
crystal As INTEGER
energy2 As INTEGER
entertainment2 As INTEGER
food As INTEGER
gold As INTEGER
hightech As INTEGER
iron As INTEGER
luxury As INTEGER
oxygen2 As INTEGER
slave As INTEGER
water2 As INTEGER
level As INTEGER
science ()




 
Class science
   
  Private my_game As game
   
  Static Public level_people[3] As Integer   
  Static Public level_pilot[3] As Integer
  Static Public level_scientist[3] As Integer
  Static Public level_soldier[3] As Integer
   
  Static Public level_earth[3] As Integer
  Static Public level_mars[3] As Integer
  Static Public level_venus[3] As Integer
  Static Public level_mercury[3] As Integer
  Static Public level_saturn[3] As Integer
  Static Public level_neptune[3] As Integer
  Static Public level_jupiter[3] As Integer
  Static Public level_moon[3] As Integer
 
  Static Public level_church[3] As Integer
  Static Public level_communication[3] As Integer
  Static Public level_education[3] As Integer
  Static Public level_energy[3] As Integer
  Static Public level_entertainment[3] As Integer
  Static Public level_farming[3] As Integer
  Static Public level_health[3] As Integer
  Static Public level_living[3] As Integer
  Static Public level_market[3] As Integer
  Static Public level_oxygen[3] As Integer
  Static Public level_plazma[3] As Integer
  Static Public level_rocketlauncher[3] As Integer
  Static Public level_science[3] As Integer
  Static Public level_settle[3] As Integer
  Static Public level_shield[3] As Integer
  Static Public level_spaceport[3] As Integer
  Static Public level_wall[3] As Integer
  Static Public level_water[3] As Integer
    
  Static Public level_crystal[3] As Integer
  Static Public level_energy2[3] As Integer
  Static Public level_entertainment2[3] As Integer
  Static Public level_food[3] As Integer
  Static Public level_gold[3] As Integer
  Static Public level_hightech[3] As Integer
  Static Public level_iron[3] As Integer
  Static Public level_luxury[3] As Integer
  Static Public level_oxygen2[3] As Integer
  Static Public level_slave[3] As Integer
  Static Public level_water2[3] As Integer
   
  Static
    level_people[1] = 1 : level_people[2] = 3 : level_people[3] = 4
    level_pilot[1] = 1 : level_pilot[2] = 3 : level_pilot[3] = 4
  End Static
   
  Sub calculate()
     
'    Select Case people
'      Case 1 : Parent.people = Parent.people + 1         
'      Case 2 : Parent.people = Parent.people + 2         
'      Case 3 : Parent.people = Parent.people + 5         
'    End Select
'    
'    Select Case pilot
'      Case 1 : Parent.pilot = Parent.pilot + 1         
'      Case 2 : Parent.pilot = Parent.pilot + 2         
'      Case 3 : Parent.pilot = Parent.pilot + 5         
'    End Select
     
  End Sub
   
  Public people As Integer   
  Public pilot As Integer
  Public scientist As Integer
  Public soldier As Integer
   
  Public earth As Integer
  Public mars As Integer
  Public venus As Integer
  Public mercury As Integer
  Public saturn As Integer
  Public neptune As Integer
  Public jupiter As Integer
  Public moon As Integer
 
  Public church As Integer
  Public communication As Integer
  Public education As Integer
  Public energy As Integer
  Public entertainment As Integer
  Public farming As Integer
  Public health As Integer
  Public living As Integer
  Public market As Integer
  Public oxygen As Integer
  Public plazma As Integer
  Public rocketlauncher As Integer
  Public science As Integer
  Public settle As Integer
  Public shield As Integer
  Public spaceport As Integer
  Public wall As Integer
  Public water As Integer
    
  Public crystal As Integer
  Public energy2 As Integer
  Public entertainment2 As Integer
  Public food As Integer
  Public gold As Integer
  Public hightech As Integer
  Public iron As Integer
  Public luxury As Integer
  Public oxygen2 As Integer
  Public slave As Integer
  Public water2 As Integer
 
  Public level As Integer
 
    /*   
    doscience: 
     
    */

 
    
  Constructor science()
     
  End Constructor
   
End Class