Remove GameItemsData.csv and update item loading path in Program.cs

This commit is contained in:
Jose Henrique 2025-02-16 12:27:27 -03:00
parent 77f4ada5f1
commit 795ca383d6
2 changed files with 1 additions and 22 deletions

View File

@ -1,21 +0,0 @@
Id,Name,Type,Rarity,Description,Price,Effect,EquipTarget
1,Apple,Material,Common,Crafting material (coming soon),0,Nothing,None
2,Superfood Smoothie,Consumable,Uncommon,Adds +30 food resources; Restores 5 Intelligence,0,ADD_FOOD_30,None
3,Energy Drink,Consumable,Rare,Reduces Cooldown by 5 min,0,REDUCE_COOLDOWN_5,None
4,Golden Apple,Consumable,Legendary,Adds +20 Intelligence (Permanent); Adds +100 food resources,0,ADD_INTELLIGENCE_20,None
5,Healing Potion,Consumable,Uncommon,Adds +20 to Health; Adds +20 food resources,0,ADD_HEALTH_20;ADD_FOOD_20,None
6,Charisma Cookie,Consumable,Rare,Adds +2 Charisma (Permanent),0,ADD_CHARISMA_2,None
7,Strength Serum,Consumable,Uncommon,Adds +5 Strength (Permanent),0,ADD_STRENGTH_5,None
8,Sleeping Draught,Consumable,Common,Reduces Cooldown by 10 min,0,REDUCE_COOLDOWN_10,None
9,Mystery Meat,Consumable,Uncommon,Randomly ±2 to one stat (Permanent),0,ADD_RANDOMSTAT_2,None
10,Elixir of Vitality,Consumable,Legendary,Fully restores all stats and health,0,RESTORE_STATS,None
11,Leather Hat,Equipment,Common,Helmet: +10 Max Health,0,ADD_MAXHEALTH_5,Head
12,Wizard Hat,Equipment,Rare,Helmet: +15 Max Intelligence,0,ADD_MAXINTELLIGENCE_15,Head
13,Knight's Armor,Equipment,Rare,Chest: +15 Max Strength,0,ADD_MAXSTRENGTH_15,Body
14,Golden Boots,Equipment,Uncommon,Legging: +10 Max Charisma,0,ADD_MAXCHARISMA_10,Legs
15,Laser Pointer,Equipment,Common,Weapon: +5 Max Strength,0,ADD_MAXSTRENGTH_5,Weapon
16,Celestial Crown,Equipment,Legendary,Helmet: +20 max to all stats,0,ADD_MAXALLSTATS_20,Head
17,Dragon Scale Shield,Equipment,Legendary,Chest: +50 Max Health,0,ADD_MAXHEALTH_50,Weapon
18,Feathers,Material,Common,Crafting material (coming soon),0,Nothing,None
19,Phoenix Feather,Material,Legendary,Crafting material (coming soon),0,Nothing,None
21,Basic Kibble,Consumable,Common,Adds +20 food resources,0,ADD_FOOD_20,None
1 Id Name Type Rarity Description Price Effect EquipTarget
2 1 Apple Material Common Crafting material (coming soon) 0 Nothing None
3 2 Superfood Smoothie Consumable Uncommon Adds +30 food resources; Restores 5 Intelligence 0 ADD_FOOD_30 None
4 3 Energy Drink Consumable Rare Reduces Cooldown by 5 min 0 REDUCE_COOLDOWN_5 None
5 4 Golden Apple Consumable Legendary Adds +20 Intelligence (Permanent); Adds +100 food resources 0 ADD_INTELLIGENCE_20 None
6 5 Healing Potion Consumable Uncommon Adds +20 to Health; Adds +20 food resources 0 ADD_HEALTH_20;ADD_FOOD_20 None
7 6 Charisma Cookie Consumable Rare Adds +2 Charisma (Permanent) 0 ADD_CHARISMA_2 None
8 7 Strength Serum Consumable Uncommon Adds +5 Strength (Permanent) 0 ADD_STRENGTH_5 None
9 8 Sleeping Draught Consumable Common Reduces Cooldown by 10 min 0 REDUCE_COOLDOWN_10 None
10 9 Mystery Meat Consumable Uncommon Randomly ±2 to one stat (Permanent) 0 ADD_RANDOMSTAT_2 None
11 10 Elixir of Vitality Consumable Legendary Fully restores all stats and health 0 RESTORE_STATS None
12 11 Leather Hat Equipment Common Helmet: +10 Max Health 0 ADD_MAXHEALTH_5 Head
13 12 Wizard Hat Equipment Rare Helmet: +15 Max Intelligence 0 ADD_MAXINTELLIGENCE_15 Head
14 13 Knight's Armor Equipment Rare Chest: +15 Max Strength 0 ADD_MAXSTRENGTH_15 Body
15 14 Golden Boots Equipment Uncommon Legging: +10 Max Charisma 0 ADD_MAXCHARISMA_10 Legs
16 15 Laser Pointer Equipment Common Weapon: +5 Max Strength 0 ADD_MAXSTRENGTH_5 Weapon
17 16 Celestial Crown Equipment Legendary Helmet: +20 max to all stats 0 ADD_MAXALLSTATS_20 Head
18 17 Dragon Scale Shield Equipment Legendary Chest: +50 Max Health 0 ADD_MAXHEALTH_50 Weapon
19 18 Feathers Material Common Crafting material (coming soon) 0 Nothing None
20 19 Phoenix Feather Material Legendary Crafting material (coming soon) 0 Nothing None
21 21 Basic Kibble Consumable Common Adds +20 food resources 0 ADD_FOOD_20 None

View File

@ -96,7 +96,7 @@ namespace PetCompanion
using (var scope = app.Services.CreateScope())
{
var itemService = scope.ServiceProvider.GetRequiredService<GameItemService>();
itemService.LoadItemsFromCsv("GameItemsData.csv");
itemService.LoadItemsFromCsv("game-data/GameItemsData.csv");
}
// Use CORS policy