Created
March 17, 2017 04:37
-
-
Save kawashirov/9bdc5eb49418bfbc7b03fc02add8cb2e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ID, EN Name / desc | |
NONE = (0, None) # Not real item, placeholder for empty | |
# Currency types | |
COINS = (1, 'Gold') | |
CRYSTALS = (2, 'Diamonds') | |
FRIENDSHIP = (3, 'Friendship') | |
DOLLAR = (4, 'Currency') # wtf? | |
POPULARITY = (5, 'Popularity') | |
# Cafe building parts types | |
TABLE = (6, 'Table') # Can't find strict define in Statics, temporary TABLE | |
CHAIR = (7, 'Chair') # Cafe furniture ~ chair for customers? | |
KITCHEN = (8, 'Stove') # Cafe furniture ~ furnace for cooking | |
CONTAINER = (9, 'Cupboard') | |
VENDING = (10, 'Takeout Window') | |
FLOOR = (11, 'Floor') | |
WALL = (12, 'Wallpaper') | |
DECO = (13, 'Decoration') | |
WALLDECO = (14, 'Hanging') | |
R_INDOOR = (15, 'Break Room Indoor') | |
R_OUTDOOR = (16, 'Break Floor Outdoor') | |
SHELF = (17, 'Shelf') | |
MONTHCARD = (18, 'Month Card') # ??? | |
VEHICLE = (19, 'Vehicle') # Order delivery transport: motoroller, minivan or broom. | |
SP_CUSTOMER_FAVOR = (20, 'SP Affection') # ??? | |
_STORAGE_DISH = (21, None) # Dishes on shelfs converted into this when put into storage? | |
RESTAURANT_EXP = (22, 'Cafe XP') | |
_F_DECO = (23, None) # Family? | |
_F_TRAIN = (24, None) # Family? | |
SOCIAL_SCORE = (25, 'Social Score') # Cafe board ranking? | |
PARTY_SCORE = (26, 'Party Progress') | |
F_PRODUCT = (27, 'Fame') # EN translation for this ID says 'Fame', wtf? | |
ROLL_CARD = (28, 'Summon Scroll') | |
GIFT_PACKAGE = (29, 'Gift Pack') | |
FLOWER = (30, 'Flowers') # Flower pot? Roses? | |
EXP_BOOK = (31, 'XP Tome') | |
GIFT = (32, 'Gift') | |
DRESS = (33, 'Clothes') # For staff? | |
HEADWEAR = (34, 'Headwear') # For staff? | |
FACEWEAR = (35, 'Mask') # For staff? | |
STAFF = (36, 'Employees') # Probably used in system mail attachments and rewards. Staff prototype? | |
STAFF_PIECE = (37, 'Fragments') # aka Staff Puzzle | |
FORTUNE_CAT = (38, 'Luckycat') # All cats encoded into this item type | |
GAME_PACKAGE = (39, 'Game Gift Pack') | |
POTION = (40, 'Medicine') # aka Energy Drink? | |
UNLOCK_DISH = ( | |
# Looks like if this item is in inventory then dish type unlocks. | |
# EN translation says just 'Ingredients' | |
41, '(Unlock Dish) Ingredients' | |
) | |
MAIN_DISH_MATERIAL = (42, 'Ingredients') # General purpose Ingredients | |
AUXI_DISH_MATERIAL = (43, 'SP Ingredients') # Wtf? Copied from EN translation. | |
VIP = (44, 'VIP EXP') # Wtf? | |
GASHAPON = (45, 'Gachas') # Indoors gachapon object? | |
DRESS_HAIR = (46, 'Head Shape') # For player avatar? | |
DRESS_FACE = (47, 'Face') # For player avatar? | |
DRESS_COLOR = (48, 'Hair Color') # For player avatar? | |
SCORE = (49, 'Points') # Wtf? | |
FAMILY_COINS = (50, 'Family Gold') | |
FAMILY_CRYSTALS = (51, 'Family Diamond') | |
FAMILY_EXP = (52, 'Family Exp') | |
FAMILY_CONTRIBUTION = (53, 'Family Contribution') | |
SEED = (54, 'Seed') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment