wynnbuilder-forked-for-changes/js/c++/powders.h
hppeng caa4c87662 Start working on powders translation
taking a pause to clean up load code
2023-04-10 13:08:22 -07:00

19 lines
382 B
C++

#pragma once
#include <map>
#include <string>
#include <vector>
extern const std::map<std::string, int> powderIDs;
extern const std::map<int, std::string> powderNames;
struct Powder {
int min;
int max;
int convert;
int defPlus;
int defMinus;
Powder(int min, int max, int conv, int defPlus, int defMinus);
};
extern const std::vector<Powder> powderStats;