Файл: monst/core/content/monster.php
Строк: 101
<?
$MONSTER = [];
// part 1
$MONSTER[1] = [
1 => [
'boss' => 0,
'id' => 1,
'name' => $lang['monster'][1][1]['name'],
'about' => $lang['monster'][1][1]['about'],
'hp' => 50,
'st' => 20,
'armor' => 0,
'exp' => 100,
'gold' => 5,
'silver' => 800,
'says' => $lang['monster'][1][1]['says'],
'says_50' => $lang['monster'][1][1]['says_50']
],
2 => [
'boss' => 0,
'id' => 2,
'name' => $lang['monster'][1][2]['name'],
'about' => $lang['monster'][1][2]['about'],
'hp' => 150,
'st' => 20,
'armor' => 2,
'exp' => 120,
'gold' => 7,
'silver' => 900,
'says' => $lang['monster'][1][2]['says'],
'says_50' => $lang['monster'][1][2]['says_50']
],
3 => [
'boss' => 1,
'id' => 3,
'name' => $lang['monster'][1][3]['name'],
'about' => $lang['monster'][1][3]['about'],
'hp' => 300,
'st' => 60,
'armor' => 5,
'exp' => 300,
'gold' => 30,
'silver' => 2000,
'says' => $lang['monster'][1][3]['says'],
'says_50' => $lang['monster'][1][3]['says_50']
],
];
$MONSTER[2] = [
1 => [
'boss' => 0,
'id' => 1,
'name' => $lang['monster'][2][1]['name'],
'about' => $lang['monster'][2][1]['about'],
'hp' => 450,
'st' => 50,
'armor' => 5,
'exp' => 200,
'gold' => 15,
'silver' => 1600,
'says' => $lang['monster'][2][1]['says'],
'says_50' => $lang['monster'][2][1]['says_50']
],
2 => [
'boss' => 0,
'id' => 2,
'name' => $lang['monster'][2][2]['name'],
'about' => $lang['monster'][2][2]['about'],
'hp' => 1100,
'st' => 80,
'armor' => 10,
'exp' => 250,
'gold' => 20,
'silver' => 2000,
'says' => $lang['monster'][2][2]['says'],
'says_50' => $lang['monster'][2][2]['says_50']
],
3 => [
'boss' => 0,
'id' => 3,
'name' => $lang['monster'][2][3]['name'],
'about' => $lang['monster'][2][3]['about'],
'hp' => 2000,
'st' => 120,
'armor' => 15,
'exp' => 300,
'gold' => 30,
'silver' => 3000,
'says' => $lang['monster'][2][3]['says'],
'says_50' => $lang['monster'][2][3]['says_50']
],
4 => [
'boss' => 1,
'id' => 4,
'name' => $lang['monster'][2][4]['name'],
'about' => $lang['monster'][2][4]['about'],
'hp' => 3000,
'st' => 220,
'armor' => 20,
'exp' => 1000,
'gold' => 40,
'silver' => 5000,
'says' => $lang['monster'][2][4]['says'],
'says_50' => $lang['monster'][2][4]['says_50']
],
];
$MONSTER[3] = [
1 => [
'boss' => 1,
'id' => 1,
'name' => $lang['monster'][3][1]['name'],
'about' => $lang['monster'][3][1]['about'],
'hp' => 10000,
'st' => 4000,
'armor' => 100,
'exp' => 1000,
'gold' => 50,
'silver' => 5000,
'says' => $lang['monster'][3][1]['says'],
'says_50' => $lang['monster'][3][1]['says_50']
],
2 => [
'boss' => 1,
'id' => 2,
'name' => $lang['monster'][3][2]['name'],
'about' => $lang['monster'][3][2]['about'],
'hp' => 30000,
'st' => 6500,
'armor' => 400,
'exp' => 1000,
'gold' => 70,
'silver' => 6000,
'says' => $lang['monster'][3][2]['says'],
'says_50' => $lang['monster'][3][2]['says_50']
],
3 => [
'boss' => 1,
'id' => 3,
'name' => $lang['monster'][3][3]['name'],
'about' => $lang['monster'][3][3]['about'],
'hp' => 30000,
'st' => 12000,
'armor' => 400,
'exp' => 1000,
'gold' => 100,
'silver' => 8000,
'says' => $lang['monster'][3][3]['says'],
'says_50' => $lang['monster'][3][3]['says_50']
],
];