Initial commit: RPG game project

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Maxim Dolgolyov
2026-02-25 01:01:02 +03:00
commit ac1f348311
24 changed files with 13329 additions and 0 deletions

29
data/loot.json Normal file
View File

@@ -0,0 +1,29 @@
{
"herb": { "n":"Трава", "t":"material", "v":6 },
"goblin_ear": { "n":"Ухо гоблина", "t":"material", "v":5 },
"orc_tusk": { "n":"Клык орка", "t":"material", "v":12 },
"meat": { "n":"Мясо", "t":"food", "v":10, "heal":20 },
"slime_gel": { "n":"Слизь", "t":"material", "v":5 },
"bone": { "n":"Кость", "t":"material", "v":4 },
"bone_dagger": { "n":"Костяной кинжал", "t":"weapon", "v":28, "dmg":8, "slot":"weapon", "icon":"🗡️", "rarity":"uncommon", "setId":"shadow" },
"money_pouch": { "n":"Кошелёк", "t":"gold", "v":18 },
"wolf_pelt": { "n":"Волчья шкура", "t":"material", "v":15 },
"spider_venom": { "n":"Паучий яд", "t":"material", "v":20 },
"rot_flesh": { "n":"Гнилая плоть", "t":"material", "v":3 },
"bat_wing": { "n":"Крыло летучей мыши", "t":"material", "v":8 },
"troll_heart": { "n":"Сердце тролля", "t":"material", "v":55, "rarity":"rare" },
"club": { "n":"Дубина", "t":"weapon", "v":18, "dmg":7, "slot":"weapon", "icon":"🏏" },
"yeti_fur": { "n":"Шкура йети", "t":"material", "v":40, "rarity":"rare" },
"witch_brew": { "n":"Зелье ведьмы", "t":"potion", "v":60, "heal":80, "rarity":"rare" },
"golem_core": { "n":"Ядро голема", "t":"material", "v":90, "rarity":"epic" },
"dragon_scale": { "n":"Чешуя дракона", "t":"material", "v":110,"rarity":"epic" },
"dragon_heart": { "n":"Сердце дракона", "t":"material", "v":300,"rarity":"legendary" },
"necronomicon": { "n":"Некрономикон", "t":"scroll", "v":200,"spell":"life_drain", "rarity":"rare" },
"skull_staff": { "n":"Посох черепа", "t":"weapon", "v":90, "dmg":18, "bonusMag":5, "slot":"weapon", "icon":"💀", "rarity":"rare", "setId":"shadow" },
"ghost_essence": { "n":"Эссенция призрака", "t":"material", "v":40, "rarity":"rare" },
"wyvern_scale": { "n":"Чешуя виверны", "t":"material", "v":60, "rarity":"rare" },
"wyvern_poison": { "n":"Яд виверны", "t":"material", "v":50, "rarity":"rare" },
"hydra_scale": { "n":"Чешуя Гидры", "t":"material", "v":75, "rarity":"epic" },
"frost_heart": { "n":"Сердце Мороза", "t":"material", "v":90, "rarity":"epic" },
"titan_core": { "n":"Сердцевина Колосса", "t":"material", "v":100, "rarity":"epic" }
}