summaryrefslogtreecommitdiff
path: root/examples/peacekeeping/PeaceLexExt.gf
blob: 984440ef601184422f4f37b2a3990e0968990e6c (plain)
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
45
46
47
abstract PeaceLexExt = PeaceCat ** {

  fun

    -- Adjectives

    dangerous_A : A ;
    dead_A : A ;
    hungry_A : A ;
    large_A : A ;
    sick_A : A ;

    -- Nouns

    air_N : MassN ;
    arm_N : N ;
    building_N : N ;
    car_N : N ;
    corpse_N : N ;
    doctor_N : N ;
    doctor_N : N ;
    enemy_N : N ;
    face_N : N ;
    food_N : MassN ;
    friend_N : N ;
    ground_N : N ;
    knife_N : N ;
    landmine_N : N ;
    map_N : N ;
    medicine_N : MassN ;
    police8officer_N : N ;
    skin_N : MassN ;
    soldier_N : N ;
    toy_N : N ;
    translation8machine_N : N ;
    weapon_N : N;

    -- Verbs
    cooperate_V2 : V2 ;
    cough_V : V ;
    drop_V2 : V2 ;
    hurt_V : V ;
    need_V2 : V2;
    own_V2 : V2 ;
    show_V3 : V3 ;

}