-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmax_points
108 lines (70 loc) · 3.19 KB
/
max_points
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
// This file is AUTOGENERATED!
// IT WILL BE DESTROYED NEXT TIME YOU DEPLOY
package farm.quest {
import farm.*;
import farm.quest.*;
public class BadgeMay91Base extends BadgeBase {
public static const _achievement:String = "badge_may9";
public static const _complete_image:String = "great_farmer.png";
public static const _complete_text:String = "Отлично, на твоей ферме нет слабых мест, развитие идет по всем направлениям! За это ты получаешь \"Медную медаль\" в достижении \"Великий фермер\"";
public static const _description_text:String = "За 5 медных медалей (других категорий)";
public static const _hint:String = "200 опыта, 1000 монет и вечный огонь";
public static const _id:int = 20036;
public static const _name:String = "May 9";
public static const _repeatable:Boolean = false;
public static const _sort_order:int = 1;
public static const _splash_text:String = "{0} развивает ферму во всех направлениях и получил \"Медную медаль\" в достижении \"Великий фермер\"";
public static const _super_class:String = "badge_base";
public static const _swf_name:String = "great_farmer.swf";
public static const _wall_text:String = "Я [sex:получил|получила] \"Медную медаль\" в достижении \"Великий фермер\"";
public static const _swf_directory:String = "farm";
override public function get quest_id():int{
return _id;
}
public static const _item_name:String = "badge_may91";
public override function get quest_name():String
{
return _item_name;
}
public override function get description_text():String {
return _description_text;
}
public override function get super_class():String {
return _super_class;
}
protected override function get title():String{
return _name;
}
protected override function get description():String{
return _description_text;
}
public override function get swf_name():String{
return _swf_name;
}
public override function get swf_directory():String{
return _swf_directory;
}
public override function get hint():String{
return _hint;
}
public override function get wall_text():String{
return _wall_text;
}
// путь к загрузке swf или png
public override function get movie_path():String {
return "items/farm/quests/"+_swf_name;
}
protected override function get goals():Array {
return [{'klass':"9_may_items_count",'count':5,'type':"user",'initial':0}];
}
public override function get rewards():Object {
return {'complete':[{'items':[{'exp':{'min_quantity':200}},{'coins':{'min_quantity':1000}},{'eternal_flame':{'min_quantity':1}}],'roll':0}]};
}
public override function get sort_order():int {
return 1;
}
public override function get base_class():Class {
return BadgeMay91Base;
}
}
}