-
Notifications
You must be signed in to change notification settings - Fork 6
Open
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomersquestionFurther information is requestedFurther information is requested
Description
Sup, @ROLFAN here!
In the end I will try to implement the wish simulator, so I need some information so I can know how to design the database.
Taking into account the following schema:
-- Wish Simulator Schema
CREATE TABLE IF NOT EXISTS wish_simulator (
user_id BIGINT NOT NULL,
entertwined_wishes INTEGER NOT NULL DEFAULT 0,
limited_wishes_placeholder INTEGER NOT NULL DEFAULT 0, -- I forgor the name
primos INTEGER NOT NULL DEFAULT 3200,
standard_wishes_count INTEGER NOT NULL DEFAULT 0,
limited_wishes_count INTEGER NOT NULL DEFAULT 0,
character_list TEXT NOT NULL DEFAULT '[]',
character_count INTEGER NOT NULL DEFAULT 0,
weapon_list TEXT NOT NULL DEFAULT '[]',
weapon_count INTEGER NOT NULL DEFAULT 0,
PRIMARY KEY (user_id)
);I guess that for each user it's desired to keep track of the amount of gacha roles, both in the standard wishes and the limeted ones (which I suppose are the event wishes), the characters they have got, and the weapons. However, I don't know what the purpose of the entertwined_wishes and primos entries are, it would be nice if someone could tell me.
In addition telling me which features should be implemented would be cool.
Thank you!
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomersquestionFurther information is requestedFurther information is requested