|
1 | 1 | # Generated by aiml2cs.pl |
2 | 2 | # https://github.com/tkuebler/ChatScriptBrains |
3 | 3 |
|
4 | | -TOPIC: ~astrology-aiml() |
5 | | - |
6 | | -# main gambits |
7 | | -t: [Would you like to talk about astrology?][I'd like to talk about astrology.][What do you think about astrology?] |
| 4 | +TOPIC: ~astrology-aiml (~astrology) |
8 | 5 |
|
9 | 6 | # unable to translate (aquarius) match to cs rule - see struc below |
10 | 7 | # # TODO: fix this raw AIML element data structure |
11 | | -# $VAR1 = \[ |
12 | | -# 'A lot of people on here are ', |
13 | | -# '.' |
14 | | -# ]; |
| 8 | +# $VAR1 = \{ |
| 9 | +# 'content' => [ |
| 10 | +# 'A lot of people on here are ', |
| 11 | +# '.' |
| 12 | +# ], |
| 13 | +# 'set' => { |
| 14 | +# 'content' => 'Aquarius', |
| 15 | +# 'name' => 'sign' |
| 16 | +# } |
| 17 | +# }; |
15 | 18 |
|
16 | 19 | # unable to translate (capricorn) match to cs rule - see struc below |
17 | 20 | # # TODO: fix this raw AIML element data structure |
18 | | -# $VAR1 = \[ |
19 | | -# 'I don\'t know many people born under ', |
20 | | -# '.' |
21 | | -# ]; |
| 21 | +# $VAR1 = \{ |
| 22 | +# 'content' => [ |
| 23 | +# 'I don\'t know many people born under ', |
| 24 | +# '.' |
| 25 | +# ], |
| 26 | +# 'set' => { |
| 27 | +# 'content' => 'Capricorn', |
| 28 | +# 'name' => 'sign' |
| 29 | +# } |
| 30 | +# }; |
22 | 31 |
|
23 | 32 | #! what is a capricorn |
24 | 33 | u: (what is a capricorn) |
25 | 34 | # unable to translate (what is a cancer) match to cs rule - see struc below |
26 | 35 | # # TODO: fix this raw AIML element data structure |
27 | | -# $VAR1 = \[ |
28 | | -# 'The Zodiac sign of the crab, someone born Jun 21 - Jul 22. ', |
29 | | -# ' friends.' |
30 | | -# ]; |
| 36 | +# $VAR1 = \{ |
| 37 | +# 'content' => [ |
| 38 | +# 'The Zodiac sign of the crab, someone born Jun 21 - Jul 22. ', |
| 39 | +# ' friends.' |
| 40 | +# ], |
| 41 | +# 'set' => { |
| 42 | +# 'content' => 'Cancer', |
| 43 | +# 'name' => 'sign' |
| 44 | +# } |
| 45 | +# }; |
31 | 46 |
|
32 | 47 | # unable to translate (cancer) match to cs rule - see struc below |
33 | 48 | # # TODO: fix this raw AIML element data structure |
34 | | -# $VAR1 = \[ |
35 | | -# 'I have a lot of ', |
36 | | -# ' friends.' |
37 | | -# ]; |
| 49 | +# $VAR1 = \{ |
| 50 | +# 'content' => [ |
| 51 | +# 'I have a lot of ', |
| 52 | +# ' friends.' |
| 53 | +# ], |
| 54 | +# 'set' => { |
| 55 | +# 'content' => 'Cancer', |
| 56 | +# 'name' => 'sign' |
| 57 | +# } |
| 58 | +# }; |
38 | 59 |
|
39 | 60 | # unable to translate (pisces) match to cs rule - see struc below |
40 | 61 | # # TODO: fix this raw AIML element data structure |
41 | | -# $VAR1 = \[ |
42 | | -# 'I usually get along with ', |
43 | | -# ' very well.' |
44 | | -# ]; |
| 62 | +# $VAR1 = \{ |
| 63 | +# 'content' => [ |
| 64 | +# 'I usually get along with ', |
| 65 | +# ' very well.' |
| 66 | +# ], |
| 67 | +# 'set' => { |
| 68 | +# 'content' => 'Pisces', |
| 69 | +# 'name' => 'sign' |
| 70 | +# } |
| 71 | +# }; |
45 | 72 |
|
46 | 73 | # unable to translate (scorpio) match to cs rule - see struc below |
47 | 74 | # # TODO: fix this raw AIML element data structure |
48 | | -# $VAR1 = \[ |
49 | | -# 'I know a lot of ', |
50 | | -# ' people.' |
51 | | -# ]; |
| 75 | +# $VAR1 = \{ |
| 76 | +# 'content' => [ |
| 77 | +# 'I know a lot of ', |
| 78 | +# ' people.' |
| 79 | +# ], |
| 80 | +# 'set' => { |
| 81 | +# 'content' => 'Scorpio', |
| 82 | +# 'name' => 'sign' |
| 83 | +# } |
| 84 | +# }; |
52 | 85 |
|
53 | 86 | # unable to translate (aries) match to cs rule - see struc below |
54 | 87 | # # TODO: fix this raw AIML element data structure |
55 | | -# $VAR1 = \[ |
56 | | -# 'Fire signs rule. ', |
57 | | -# '.' |
58 | | -# ]; |
| 88 | +# $VAR1 = \{ |
| 89 | +# 'think' => { |
| 90 | +# 'set' => { |
| 91 | +# 'content' => 'Aries', |
| 92 | +# 'name' => 'sign' |
| 93 | +# } |
| 94 | +# }, |
| 95 | +# 'content' => [ |
| 96 | +# 'Fire signs rule. ', |
| 97 | +# '.' |
| 98 | +# ] |
| 99 | +# }; |
59 | 100 |
|
60 | 101 | #! taurus |
61 | 102 | u: (taurus) I know alot of bullish people. |
62 | 103 | # unable to translate (libra) match to cs rule - see struc below |
63 | 104 | # # TODO: fix this raw AIML element data structure |
64 | | -# $VAR1 = \[ |
65 | | -# 'As a ', |
66 | | -# ' you are very balanced.' |
67 | | -# ]; |
| 105 | +# $VAR1 = \{ |
| 106 | +# 'content' => [ |
| 107 | +# 'As a ', |
| 108 | +# ' you are very balanced.' |
| 109 | +# ], |
| 110 | +# 'set' => { |
| 111 | +# 'content' => 'Libra', |
| 112 | +# 'name' => 'sign' |
| 113 | +# } |
| 114 | +# }; |
68 | 115 |
|
69 | 116 | #! saggitarius |
70 | 117 | u: (saggitarius) |
71 | 118 | # unable to translate (virgo) match to cs rule - see struc below |
72 | 119 | # # TODO: fix this raw AIML element data structure |
73 | | -# $VAR1 = \[ |
74 | | -# 'Most of my friends are ', |
75 | | -# '.' |
76 | | -# ]; |
| 120 | +# $VAR1 = \{ |
| 121 | +# 'content' => [ |
| 122 | +# 'Most of my friends are ', |
| 123 | +# '.' |
| 124 | +# ], |
| 125 | +# 'set' => { |
| 126 | +# 'content' => 'Virgo', |
| 127 | +# 'name' => 'sign' |
| 128 | +# } |
| 129 | +# }; |
77 | 130 |
|
78 | 131 | # unable to translate (gemini) match to cs rule - see struc below |
79 | 132 | # # TODO: fix this raw AIML element data structure |
80 | | -# $VAR1 = \[ |
81 | | -# 'I\'m a Saggitarius. ', |
82 | | -# ' is an enigma to me.' |
83 | | -# ]; |
| 133 | +# $VAR1 = \{ |
| 134 | +# 'content' => [ |
| 135 | +# 'I\'m a Saggitarius. ', |
| 136 | +# ' is an enigma to me.' |
| 137 | +# ], |
| 138 | +# 'set' => { |
| 139 | +# 'content' => 'Gemini', |
| 140 | +# 'name' => 'sign' |
| 141 | +# } |
| 142 | +# }; |
84 | 143 |
|
0 commit comments