forked from jayendramadaram/NFT-MINTING-SITE_META_WAIFUS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
metadata.py
18 lines (16 loc) · 839 Bytes
/
metadata.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import csv
import random
types = ["Dominant", "Tsundere", "Yandere",
"Kuudere", "Dandere", "Moekko", "Meganekko", "Idol Singer", "Catgirl", "Maid", "Otaku", "Volatile", "Varient"]
desc = "A META WAIFU"
fit = ["Action", "rom-com", "Shoujo", "Ecchi",
"Harem", "kodomomuke", "LAB", "catGirl"]
with open('metadata.csv', 'w', newline="") as file:
writer = csv.writer(file)
writer.writerow(["name", "description", "BattleIQ",
"Intelligence", "Durability", "FIT_FOR", "AGILITY", "TYPE"])
for i in range(1, 667):
writer.writerow([
f"#{i}", desc, str(random.randint(
15, 115)) + "%", str(random.randint(15, 115)) + "%", str(random.randint(15, 115)) + "%", random.choice(fit), str(random.randint(15, 115)) + "%", random.choice(types)
])