Smart Contract

Weapon

A.c649103ebbc38926.Weapon

Valid From

128,976,915

Deployed

1w ago
Feb 20, 2026, 09:25:18 AM UTC

Dependents

0 imports
1access(all)  contract Weapon {
2    
3    access(all) var weapons: [String]
4
5    init() {
6        self.weapons = [
7            "Rusty Dagger",
8            "Wooden Cudgel",
9            "Stone Hatchet",
10            "Iron Shortsword",
11            "Steel Warhammer",
12            "Broad Battle Axe",
13            "Barbed Halberd",
14            "Serrated Scimitar",
15            "Twin Kukris",
16            "Spiked Flail",
17            "Reaper's Scythe",
18            "Vorpal Glaive",
19            "Forged Zweihander",
20            "Drake's Tooth",
21            "Dragonbone Blade",
22            "Demon's Bane",
23            "Soul Reaper",
24            "Void Edge",
25            "Stormcaller",
26            "Godslayer",
27            "Armageddon Blade"
28        ]
29    }
30}