Modern Weapons Dataset
"A Comprehensive Dataset of Weapon Types, Materials, Rarity Levels, and Performa
@kaggle.bhadramohit_modern_weapons_dataset
"A Comprehensive Dataset of Weapon Types, Materials, Rarity Levels, and Performa
@kaggle.bhadramohit_modern_weapons_dataset
Contains information on 1,000 unique weapons, including fantasy and modern types.
Suitable for game design, simulations, machine learning, and data analysis projects.
WeaponID: Unique identifier for each weapon.
WeaponType: Weapon classification, ranging from melee (e.g., swords, axes) to ranged and futuristic types (e.g., rifles, laser guns).
Material: Primary construction material, influencing durability and performance (e.g., Steel, Obsidian, Graphene).
Rarity: Rarity classification, from "Common" to "Divine," indicating uniqueness or value.
AttackPower: Numeric value denoting damage potential.
Durability: Score reflecting weapon durability under use.
Range: Effective range in meters, relevant for ranged weapons.
Weight: Weight in kilograms, affecting usability and maneuverability.
Explore relationships between material, type, and performance attributes.
Train models to predict weapon effectiveness, simulate scenarios, or classify items.
Useful for world-building, item balancing, and creating diverse inventories.
Versatility:
Enables users to create varied digital scenarios.
Useful for developing balanced, engaging systems in creative and interactive environments.
CREATE TABLE weapons_dataset (
"weaponid" BIGINT,
"weapontype" VARCHAR,
"material" VARCHAR,
"rarity" VARCHAR,
"attackpower" BIGINT,
"durability" BIGINT,
"range" BIGINT,
"weight" DOUBLE
);Anyone who has the link will be able to view this.