1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
'(spydata
(bureau
(name "MI7")
(country "UK")
(bureau_to_agent
(agent
(agent_code "007")
(lastname "Bond")
(firstname "James")
(license "kill")
(mission
(codename "goldfinger")
(description "")
(mission_to_person
(role "villain")
(person
(person_name "Auric Goldfinger")))
(mission_to_person
(person
(person_name "Pussy Galore")))
(mission_to_person
(role "henchman")
(person
(person_name "oddjob")))
(mission_gizmo
(gizmo
(gizmo_name "Aston Martin DB5")
(gizmo_type "car")
(feature "ejector seat")
;;; (feature "smoke screen")
)))
(mission
(codename "live and let die")
(description "investigate plot to flood US with heroin")
(mission_to_person
(person
(person_name "Baron Samedi")))
(mission_gizmo
(gizmo
(gizmo_name "Rolex watch")
(gizmo_type "watch"))))
))))
|