Last active
July 15, 2023 12:11
-
-
Save branw/d4a22534c2bd8b9f745a to your computer and use it in GitHub Desktop.
This file contains 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
#!/usr/bin/env python3 | |
from collections import OrderedDict | |
from pprint import pprint | |
from struct import unpack | |
import io | |
import os | |
def read_byte(data): | |
return data.read(1) | |
def read_char(data): | |
return unpack('>b', data.read(1))[0] | |
def read_short(data): | |
return unpack('>h', data.read(2))[0] | |
def read_ushort(data): | |
return unpack('>H', data.read(2))[0] | |
def read_int(data): | |
return unpack('>i', data.read(4))[0] | |
def read_string(data): | |
length = read_short(data) | |
return unpack(str(length) + 's', data.read(length))[0].decode('shift-jis') | |
class NekoAtsumeData: | |
# Chunks used to compartmentalize data | |
entries = [] | |
# Dates to display snow on the yard | |
snow_dates = [] | |
# Cats! | |
cats = OrderedDict() | |
# Mysterious tables from the cat entry | |
cat_tables = [] | |
# Goodies, including food and toys | |
goodies = OrderedDict() | |
goody_configs = OrderedDict() | |
# Enumeration of goody classifications | |
goody_types = OrderedDict() | |
# Mapping of cat poses to corresponding sprite sheets | |
cat_pose_sprites = OrderedDict() | |
# Mementos awarded by cats | |
mementos = OrderedDict() | |
# Shop goody listings | |
shop_listings = OrderedDict() | |
def __init__(self, file_path): | |
with open(file_path, 'rb') as evt: | |
self.parse_header(evt) | |
self.parse_entries() | |
def parse_header(self, evt): | |
entries = [] | |
num_entries = read_char(evt) | |
for i in range(num_entries): | |
name_data = b'' | |
data = read_byte(evt) | |
while data != b'\x0a': | |
name_data += data | |
data = read_byte(evt) | |
entries.append({ | |
'name': name_data.decode('shift-jis') | |
}) | |
name_block_end = evt.tell() | |
for i in range(num_entries): | |
entries[i]['offset'] = read_int(evt) - 1 | |
entries[i]['size'] = read_ushort(evt) | |
for i in range(num_entries): | |
file_offset = name_block_end + entries[i]['offset'] | |
evt.seek(file_offset, os.SEEK_SET) | |
flags = [] | |
num_flags = read_short(evt) | |
for j in range(num_flags): | |
flags.append(read_short(evt)) | |
entries[i]['flags'] = flags | |
size = entries[i]['size'] - (num_flags * 2 + 2) | |
data = evt.read(size) | |
entries[i]['data'] = data | |
self.entries = entries | |
def parse_entries(self): | |
for entry in self.entries: | |
data = io.BytesIO(entry['data']) | |
magic = read_short(data) | |
assert magic == 0x3e8 | |
entry_type = read_short(data) | |
if entry_type == 0: | |
self.parse_init_entry(data) | |
elif entry_type == 1: | |
self.parse_neko_entry(data) | |
elif entry_type == 2: | |
self.parse_goods_entry(data) | |
elif entry_type == 3: | |
self.parse_shop_entry(data) | |
elif entry_type == 4: | |
self.parse_takara_entry(data) | |
assert data.read(2) == b'\x00\x01' | |
assert data.tell() == entry['size'] - 4 | |
def parse_init_entry(self, data): | |
while True: | |
index = read_char(data) | |
if index < 0: | |
break | |
unk1 = read_string(data) | |
unk2 = read_char(data) | |
unk3 = read_char(data) | |
# coordinate pairs for a rectangle | |
while True: | |
index = read_char(data) | |
if index < 0: | |
break | |
num_points = read_char(data) | |
# [top left, bottom left, bottom right, top right] | |
unk1 = [] ## | |
for x in range(num_points): | |
unk1.append([read_short(data), read_short(data)]) | |
# katakana character map | |
katakana_map = [] | |
for x in range(90): | |
katakana_map.append(read_string(data)) | |
# sysimg file names | |
while True: | |
text_block = read_short(data) | |
if text_block < 0: | |
break | |
# upperbound estimate of items | |
block_size = read_short(data) | |
while True: | |
index = read_short(data) | |
if index < 0: | |
break | |
text = read_string(data) | |
# only some text about Mogg "モグニンジン" that doesn't | |
# appear to be used anywhere | |
while True: | |
index = read_short(data) | |
if index < 0: | |
break | |
text = read_string(data) | |
while True: | |
index = read_char(data) | |
if index < 0: | |
break | |
text = read_string(data) | |
# only some capitalized ASCII that is entirely discarded | |
while True: | |
index = read_short(data) | |
if index < 0: | |
break | |
text = read_string(data) | |
# text for message boxes | |
for x in range(10): | |
while True: | |
index = read_short(data) | |
if index < 0: | |
break | |
if index & 1 == 0: | |
text_jap = read_string(data) | |
# 0th bit for japanese, 1st bit for english | |
unk1 = read_char(data) ## | |
unk2 = read_short(data) ## | |
text_eng = read_string(data) | |
unk3 = read_short(data) ## | |
else: | |
unk4 = read_short(data) ## | |
unk5 = read_char(data) ## | |
unk6 = read_short(data) ## | |
# ditto | |
while True: | |
index = read_short(data) | |
if index < 0: | |
break | |
while True: | |
index = read_short(data) | |
if index < 0: | |
break | |
if index & 1 == 0: | |
text_jap = read_string(data) | |
unk1 = read_char(data) ## | |
unk2 = read_short(data) ## | |
text_eng = read_string(data) | |
unk3 = read_short(data) ## | |
else: | |
unk4 = read_short(data) ## | |
unk5 = read_char(data) ## | |
unk6 = read_short(data) ## | |
# dates to display snow | |
snow_dates = [] | |
while True: | |
year = read_short(data) | |
if year < 0: | |
break | |
month = read_short(data) | |
day = read_short(data) | |
snow_dates.append([year, month, day]) | |
self.snow_dates = snow_dates | |
def parse_neko_entry(self, data): | |
num_interests = 0 | |
while True: | |
index = read_short(data) | |
if index < 0: | |
break | |
num_interests += 1 | |
# table 1 - appearance multiplier when there is snow | |
# 2 - month is april or may | |
# 3 - july or august | |
# 4 - ?? stacks with table 7 when month is july or august | |
# 5 - month is september or october | |
# 6 - december or jan or feb | |
# 7 - initial appearance factor | |
cat_tables = [] | |
for x in range(7): | |
unk1a = [] | |
for y in range(num_interests): | |
unk1a.append(read_short(data)) | |
cat_tables.append(unk1a) | |
counter2 = 0 | |
while True: | |
index = read_short(data) | |
if index < 0: | |
break | |
counter2 += 1 | |
assert num_interests == counter2 | |
cats = OrderedDict() | |
while True: | |
index = read_short(data) | |
if index < 0: | |
break | |
name_jap = read_string(data) | |
appearance_jap = read_string(data) | |
personality_jap = read_string(data) | |
regular = index < 100 | |
if regular: | |
bin_name = read_string(data) | |
else: | |
special_index = read_short(data) | |
# index for img_face.bin | |
cat_index = read_short(data) | |
name_eng = read_string(data) | |
appearance_eng = read_string(data) | |
personality_eng = read_string(data) | |
power_level = read_short(data) | |
memento_id = read_short(data) - 1 | |
# factor to determine fish given upon leaving | |
fish_gift_factor = read_short(data) | |
# factor applied to all seasonal goody factors | |
seasonal_modifier_factor = read_short(data) | |
# interests a cat has in a given food | |
# 0 Thrifty Bitz 1 Frisky Bitz 2 Ritzy Bitz | |
# 3 Sashimi 4 Deluxe Tuna Bitz 5 Bonito Bitz | |
food_interests = [] | |
for x in range(6): | |
food_interests.append(read_short(data)) | |
# interests a cat has with a given goody [config] | |
goody_interests = [] | |
for x in range(num_interests): | |
goody_interests.append(read_short(data)) | |
# for introducing cats but keeping them out of the game | |
available = not (index >= 130 and index < 140) | |
cats[index] = { | |
'name': name_eng, | |
'appearance': appearance_eng, | |
'personality': personality_eng, | |
'name_jap': name_jap, | |
'appearance_jap': appearance_jap, | |
'personality_jap': personality_jap, | |
'power_level': power_level, | |
'memento_id': memento_id, | |
'regular': regular, | |
'available': available, | |
'cat_index': cat_index, | |
'fish_gift_factor': fish_gift_factor, | |
'seasonal_modifier_factor': seasonal_modifier_factor, | |
'food_interests': food_interests, | |
'goody_interests': goody_interests, | |
} | |
if regular: | |
# img_neko_XX name for cat images | |
cats[index]['file_name'] = bin_name | |
else: | |
# index for img_neko_special.bin | |
cats[index]['special_index'] = special_index | |
self.cats = cats | |
self.cat_tables = cat_tables | |
def parse_goods_entry(self, data): | |
goodies = OrderedDict() | |
while True: | |
index = read_short(data) | |
if index < 0: | |
break | |
name_jap = read_string(data) | |
unk1 = read_short(data) ## | |
shop_desc_jap = read_string(data) | |
goodies_desc_jap = read_string(data) | |
food = read_char(data) == 1 | |
unk2 = read_short(data) ## | |
# all three tend to be very similar | |
unk3 = read_short(data) ## | |
unk4 = read_short(data) ## | |
unk5 = read_short(data) ## | |
# 0 - small spot, 1 - large spot, 3 - food spot | |
spot = read_char(data) | |
goody_type = read_char(data) | |
name_eng = read_string(data) | |
shop_desc_eng = read_string(data) | |
goodies_desc_eng = read_string(data) | |
# this is 1 for Burger Cushion, Arabesque Blanket, and Cowboy Hat | |
# otherwise it is 0 | |
unk7 = read_char(data) ## | |
# depends on events | |
unk8 = [] ## | |
for x in range(12): | |
unk8.append(read_short(data)) | |
goodies[index] = { | |
'name': name_eng, | |
'name_jap': name_jap, | |
'shop_desc': shop_desc_eng, | |
'goodies_desc': goodies_desc_eng, | |
'shop_desc_jap': shop_desc_jap, | |
'goodies_desc_jap': goodies_desc_jap, | |
'food': food, | |
'spot': spot, | |
'type': goody_type, | |
'unk1': unk1, | |
'unk2': unk2, | |
'unk3': unk3, | |
'unk4': unk4, | |
'unk5': unk5, | |
'spot': spot, | |
'unk7': unk7, | |
'unk8': unk8, | |
} | |
# goody-cat configurations | |
goody_configs = OrderedDict() | |
while True: | |
index = read_short(data) | |
if index < 0: | |
break | |
goody_id = read_short(data) | |
goody_config_id = read_short(data) | |
goody_config = [] | |
for i in range(6): | |
pose = read_short(data) | |
position = read_short(data) | |
goody_config.append([pose, position % 10, position / 10]) | |
#if goody_id not in goodies: | |
# goodies[goody_id] = {'configs': {}} | |
#goodies[goody_id]['configs'][goody_config_id] = goody_config | |
goody_configs[index] = { | |
'goody': goody_id, | |
'config_num': goody_config_id, | |
'config': goody_config | |
} | |
# cat pose to sprite sheet mapping | |
cat_pose_sprites = OrderedDict() | |
while True: | |
index = read_short(data) | |
if index < 0: | |
break | |
spritesheet_num = read_short(data) | |
cat_pose_sprites[index] = spritesheet_num | |
# goody type definitions | |
goody_types = OrderedDict() | |
while True: | |
index = read_short(data) | |
if index < 0: | |
break | |
name_jap = read_string(data) | |
unk1 = read_short(data) ## | |
type_id = read_short(data) | |
assert index == type_id | |
goody_types[index] = { | |
'name_jap': name_jap, | |
'unk1': unk1 | |
} | |
self.goodies = goodies | |
self.goody_configs = goody_configs | |
self.cat_pose_sprites = cat_pose_sprites | |
self.goody_types = goody_types | |
def parse_shop_entry(self, data): | |
shop_listsings = OrderedDict() | |
while True: | |
index = read_short(data) | |
if index < 0 or index > 250: | |
break | |
amount = read_short(data) | |
gold_fish = read_char(data) == 1 | |
price = read_short(data) | |
shop_listsings[index] = { | |
'amount': amount, | |
'gold_fish': gold_fish, | |
'price': price, | |
} | |
self.shop_listsings = shop_listsings | |
def parse_takara_entry(self, data): | |
mementos = OrderedDict() | |
while True: | |
index = read_short(data) | |
if index < 0: | |
break | |
memento_id = index - 1 | |
jap_name = read_string(data) | |
jap_desc = read_string(data) | |
memento_id2 = read_short(data) | |
assert memento_id == memento_id2 | |
eng_name = read_string(data) | |
eng_desc = read_string(data) | |
mementos[memento_id] = { | |
'name': eng_name, | |
'name_jap': jap_name, | |
'desc': eng_desc, | |
'desc_jap': jap_desc, | |
} | |
self.mementos = mementos | |
if __name__ == '__main__': | |
data = NekoAtsumeData('evt00_data-1.5.0.evt') |
This file contains 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
>>> pprint(data.cats, width=750) | |
OrderedDict([(0, | |
{'appearance': 'Solid White', | |
'appearance_jap': '白', | |
'available': True, | |
'cat_index': 0, | |
'file_name': 'img_neko_00', | |
'fish_gift_factor': 90, | |
'food_interests': [10, 22, 45, 30, 60, 48], | |
'goody_interests': [50, 1, 1, 1, 1, 0, 0, 0, 0, 200, 0, 0, 20, 0, 5, 5, 10, 0, 20, 10, 0, 20, 2, 10, 0, 0, 0, 10, 0, 0, 0, 0, 30, 10, 40, 30, 30, 0, 50, 30, 50, 30, 30, 20, 70, 20, 0, 20, 0, 0, 30, 30, 0, 70, 30, 20, 0, 10, 30, 10, 50, 10, 30, 0, 30, 30, 20, 40, 40, 30, 50, 10, 0, 0, 30, 5, 20, 10, 10, 10, 80, 0, 20, 0, 0, 20, 0, 0, 0, 0, 0, 5, 10, 5, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 2, 5, 2, 2, 0, 0, 2, 2, 2, 0, 0, 1, 1, 0, 0, 3, 3, 0, 5, 0, 0, 10, 10, 0, 0, 0, 0, 10, 20, 0, 0, 10, 0, 10, 10, 5, 0, 0, 0, 10, 3, 10, 10, 20, 20, 0, 0, 0, 0, 0, 1, 10, 30, 30, 0, 0, 10, 10, 15, 15, 0, 40, 40, 40, 0, 20, 20, 20, 20, 0, 15, 15, 0, 15, 0, 15, 15, 0, 0, 15, 30, 20, 20, 20, 20], | |
'memento_id': 0, | |
'name': 'Snowball', | |
'name_jap': 'しろねこさん', | |
'personality': 'Mellow', | |
'personality_jap': 'おっとり', | |
'power_level': 80, | |
'regular': True, | |
'seasonal_modifier_factor': 100}), | |
(1, | |
{'appearance': 'Solid Black', | |
'appearance_jap': '黒', | |
'available': True, | |
'cat_index': 1, | |
'file_name': 'img_neko_01', | |
'fish_gift_factor': 120, | |
'food_interests': [9, 21, 50, 30, 60, 52], | |
'goody_interests': [1, 1, 1, 1, 1, 0, 0, 0, 0, 7, 0, 0, 0, 20, 0, 0, 10, 0, 0, 0, 20, 0, 2, 5, 0, 0, 10, 0, 4, 0, 0, 10, 15, 0, 0, 0, 20, 10, 10, 0, 0, 0, 5, 30, 0, 0, 20, 0, 0, 10, 0, 0, 30, 0, 0, 0, 0, 20, 0, 5, 50, 5, 20, 0, 0, 0, 0, 40, 40, 0, 0, 0, 0, 0, 5, 30, 0, 20, 10, 5, 0, 0, 0, 20, 0, 0, 20, 0, 0, 20, 0, 0, 0, 0, 10, 5, 0, 0, 0, 10, 5, 0, 0, 0, 0, 10, 5, 0, 0, 20, 20, 0, 20, 10, 10, 5, 5, 0, 0, 5, 0, 0, 0, 2, 2, 2, 0, 2, 2, 2, 5, 5, 0, 0, 3, 3, 3, 3, 0, 0, 80, 80, 60, 60, 30, 30, 30, 10, 60, 0, 70, 0, 70, 5, 0, 10, 0, 0, 0, 0, 0, 0, 10, 10, 0, 0, 5, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 40, 40, 0, 40, 15, 15, 15, 10, 0, 0, 0, 0, 20, 0, 20, 20, 0, 10, 0, 30, 15, 15, 15, 10], | |
'memento_id': 1, | |
'name': 'Smokey', | |
'name_jap': 'くろねこさん', | |
'personality': 'Hot and Cold', | |
'personality_jap': 'ツンデレ', | |
'power_level': 140, | |
'regular': True, | |
'seasonal_modifier_factor': 100}), | |
(2, | |
{'appearance': 'Black & White', | |
'appearance_jap': '白黒', | |
'available': True, | |
'cat_index': 2, | |
'file_name': 'img_neko_02', | |
'fish_gift_factor': 85, | |
'food_interests': [8, 21, 48, 10, 60, 50], | |
'goody_interests': [1, 1, 1, 1, 1, 0, 0, 0, 10, 15, 6, 0, 0, 0, 15, 15, 0, 15, 5, 16, 0, 20, 1, 5, 5, 20, 0, 0, 40, 70, 0, 30, 0, 10, 0, 0, 0, 0, 0, 8, 3, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 10, 0, 0, 0, 30, 0, 30, 0, 0, 0, 0, 0, 5, 0, 0, 0, 20, 0, 0, 0, 0, 0, 10, 15, 15, 30, 0, 30, 0, 0, 20, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 15, 10, 0, 0, 5, 15, 10, 10, 0, 0, 5, 15, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 10, 30, 150, 70, 70, 120, 120, 30, 70, 30, 120, 120, 70, 70, 80, 80, 60, 60, 70, 70, 0, 10, 0, 0, 10, 10, 5, 0, 0, 0, 20, 0, 0, 0, 0, 5, 5, 0, 10, 0, 10, 0, 0, 0, 0, 0, 0, 20, 0, 15, 10, 30, 5, 0, 0, 0, 0, 15, 5, 5, 0, 0, 0, 0, 20, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 10, 10, 10, 10, 0, 0, 20, 0, 0, 0, 0], | |
'memento_id': 2, | |
'name': 'Spots', | |
'name_jap': 'しろくろさん', | |
'personality': 'Joker', | |
'personality_jap': 'おちょうしもの', | |
'power_level': 75, | |
'regular': True, | |
'seasonal_modifier_factor': 30}), | |
(3, | |
{'appearance': 'Solid grey', | |
'appearance_jap': '灰', | |
'available': True, | |
'cat_index': 3, | |
'file_name': 'img_neko_03', | |
'fish_gift_factor': 130, | |
'food_interests': [8, 20, 48, 30, 60, 50], | |
'goody_interests': [1, 1, 1, 1, 1, 0, 0, 0, 0, 10, 10, 0, 50, 50, 10, 10, 0, 10, 10, 25, 25, 0, 10, 20, 0, 0, 0, 10, 30, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 5, 0, 50, 0, 0, 0, 0, 0, 0, 0, 0, 50, 0, 0, 10, 30, 0, 0, 10, 0, 0, 0, 0, 10, 0, 30, 0, 0, 0, 10, 5, 0, 0, 20, 0, 0, 50, 5, 5, 0, 0, 0, 30, 0, 0, 30, 0, 0, 0, 5, 5, 0, 20, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 20, 20, 0, 0, 0, 30, 20, 0, 0, 0, 0, 0, 10, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 20, 20, 20, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 5, 0, 0, 5, 0, 0, 0, 0, 10, 0, 0, 80, 30, 150, 0, 0, 100, 30, 0, 15, 0, 0, 1, 50, 0, 0, 5, 0, 10, 0, 0, 0, 0, 0, 0, 0, 30, 0, 50, 0, 0, 30, 0, 0, 20, 0, 20, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0], | |
'memento_id': 3, | |
'name': 'Shadow', | |
'name_jap': 'はいいろさん', | |
'personality': 'Peculiar', | |
'personality_jap': 'ふしぎちゃん', | |
'power_level': 50, | |
'regular': True, | |
'seasonal_modifier_factor': 0}), | |
(4, | |
{'appearance': 'Turkish Calico', | |
'appearance_jap': 'とび三毛', | |
'available': True, | |
'cat_index': 4, | |
'file_name': 'img_neko_04', | |
'fish_gift_factor': 70, | |
'food_interests': [10, 22, 48, 10, 60, 50], | |
'goody_interests': [1, 1, 1, 1, 1, 0, 0, 0, 100, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 100, 50, 10, 20, 50, 100, 0, 0, 0, 50, 0, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 0, 0, 0, 0, 0, 20, 10, 0, 30, 30, 30, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 100, 70, 50, 0, 50, 100, 70, 70, 50, 0, 50, 100, 70, 50, 0, 0, 0, 0, 50, 50, 0, 0, 100, 70, 0, 60, 60, 60, 100, 100, 0, 60, 0, 100, 100, 100, 100, 0, 0, 0, 0, 0, 0, 30, 0, 100, 120, 120, 160, 150, 90, 0, 0, 80, 0, 0, 0, 100, 10, 5, 50, 0, 0, 0, 30, 50, 0, 0, 0, 0, 40, 0, 45, 50, 30, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 80, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 0, 0, 0, 0, 20, 0, 0, 50, 0, 0, 0, 0], | |
'memento_id': 4, | |
'name': 'Sunny', | |
'name_jap': 'とびみけさん', | |
'personality': 'Mischievous', | |
'personality_jap': 'やんちゃ', | |
'power_level': 120, | |
'regular': True, | |
'seasonal_modifier_factor': 10}), | |
(5, | |
{'appearance': 'Orange Tabby', | |
'appearance_jap': '茶トラ', | |
'available': True, | |
'cat_index': 5, | |
'file_name': 'img_neko_05', | |
'fish_gift_factor': 300, | |
'food_interests': [7, 19, 48, 30, 60, 50], | |
'goody_interests': [1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 5, 0, 10, 0, 30, 0, 0, 50, 0, 0, 0, 20, 0, 0, 0, 70, 0, 0, 0, 0, 0, 0, 50, 0, 0, 40, 40, 0, 0, 0, 0, 70, 0, 20, 0, 20, 20, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 5, 5, 10, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 50, 0, 0, 0, 40, 50, 0, 0, 0, 0, 40, 50, 0, 0, 30, 0, 30, 0, 40, 40, 0, 0, 0, 0, 0, 0, 0, 40, 0, 0, 0, 40, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 20, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 5, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 30, 50, 0, 0, 0, 10, 0, 0, 0, 0, 0, 40, 0, 0, 0, 5, 0, 0, 0, 0, 0, 10], | |
'memento_id': 5, | |
'name': 'Fred', | |
'name_jap': 'ちゃとらさん', | |
'personality': 'Lady-killer', | |
'personality_jap': 'イケメン風味', | |
'power_level': 150, | |
'regular': True, | |
'seasonal_modifier_factor': 70}), | |
(6, | |
{'appearance': 'Orange & White Tabby ', | |
'appearance_jap': '茶トラ白', | |
'available': True, | |
'cat_index': 6, | |
'file_name': 'img_neko_06', | |
'fish_gift_factor': 100, | |
'food_interests': [10, 24, 48, 10, 60, 50], | |
'goody_interests': [1, 1, 1, 1, 1, 0, 0, 0, 50, 80, 0, 0, 0, 0, 40, 40, 0, 30, 0, 50, 0, 0, 50, 0, 0, 0, 0, 15, 0, 0, 0, 40, 0, 30, 0, 0, 0, 0, 50, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 50, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 50, 0, 0, 0, 0, 0, 50, 0, 0, 0, 0, 50, 0, 0, 0, 0, 0, 0, 30, 20, 0, 0, 40, 0, 0, 0, 40, 40, 40, 0, 40, 40, 40, 0, 0, 20, 20, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 30, 0, 0, 20, 0, 20, 0, 0, 0, 0, 0, 50, 50, 0, 50, 10, 30, 0, 30, 0, 20, 5, 5, 10, 10, 0, 0, 0, 0, 15, 20, 20, 0, 0, 0, 0, 0, 80, 0, 0, 30, 40, 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 30, 0, 0, 40], | |
'memento_id': 6, | |
'name': 'Pumpkin', | |
'name_jap': 'しろちゃとらさん', | |
'personality': 'Spacey', | |
'personality_jap': 'きょとんさん', | |
'power_level': 90, | |
'regular': True, | |
'seasonal_modifier_factor': 20}), | |
(7, | |
{'appearance': 'Calico', | |
'appearance_jap': '三毛', | |
'available': True, | |
'cat_index': 7, | |
'file_name': 'img_neko_07', | |
'fish_gift_factor': 75, | |
'food_interests': [5, 15, 48, 10, 60, 50], | |
'goody_interests': [10, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 100, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 120, 0, 120, 0, 0, 0, 50, 0, 0, 0, 0, 20, 0, 0, 0, 0, 10, 0, 0, 0, 0, 30, 0, 30, 0, 30, 0, 30, 0, 0, 10, 10, 20, 80, 50, 50, 0, 0, 0, 0, 20, 30, 30, 30, 30, 50, 30, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 100, 0, 70, 0, 20, 20, 0, 0, 0, 0, 0, 1, 100, 0, 0, 30, 0, 30, 30, 30, 0, 0, 70, 70, 70, 0, 25, 25, 25, 25, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 10, 0, 60, 45, 60, 25], | |
'memento_id': 7, | |
'name': 'Callie', | |
'name_jap': 'みけさん', | |
'personality': 'Carefree', | |
'personality_jap': 'のんびり', | |
'power_level': 50, | |
'regular': True, | |
'seasonal_modifier_factor': 100}), | |
(8, | |
{'appearance': 'Calico Tabby', | |
'appearance_jap': '縞三毛', | |
'available': True, | |
'cat_index': 8, | |
'file_name': 'img_neko_08', | |
'fish_gift_factor': 95, | |
'food_interests': [4, 15, 43, 10, 60, 45], | |
'goody_interests': [5, 1, 1, 1, 1, 0, 0, 0, 0, 50, 0, 0, 0, 30, 30, 30, 0, 40, 0, 50, 0, 0, 30, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 50, 60, 60, 0, 40, 0, 0, 0, 30, 0, 0, 20, 0, 20, 0, 0, 0, 10, 0, 0, 0, 40, 0, 40, 0, 40, 0, 40, 15, 0, 20, 10, 10, 70, 70, 70, 0, 0, 0, 50, 30, 20, 40, 40, 40, 50, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 100, 50, 70, 30, 50, 0, 0, 0, 0, 0, 0, 1, 30, 20, 5, 0, 0, 15, 30, 0, 0, 0, 80, 80, 80, 50, 30, 30, 30, 30, 0, 0, 15, 0, 15, 0, 0, 15, 0, 10, 0, 80, 60, 60, 70, 30], | |
'memento_id': 8, | |
'name': 'Tabitha', | |
'name_jap': 'しまみけさん', | |
'personality': 'Leisurely', | |
'personality_jap': 'スローライフ', | |
'power_level': 40, | |
'regular': True, | |
'seasonal_modifier_factor': 80}), | |
(9, | |
{'appearance': 'Tortoiseshell', | |
'appearance_jap': 'サビ', | |
'available': True, | |
'cat_index': 9, | |
'file_name': 'img_neko_09', | |
'fish_gift_factor': 80, | |
'food_interests': [3, 14, 40, 30, 60, 42], | |
'goody_interests': [1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 130, 0, 0, 0, 30, 30, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 5, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 0, 60, 0, 30, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 70, 70, 30, 0, 30, 70, 70, 70, 30, 0, 30, 70, 70, 30, 0, 0, 0, 0, 30, 30, 0, 0, 70, 70, 20, 20, 20, 20, 60, 60, 20, 20, 20, 60, 60, 10, 10, 0, 0, 0, 0, 0, 0, 50, 10, 10, 0, 50, 50, 0, 0, 0, 0, 40, 0, 60, 0, 15, 5, 0, 0, 50, 50, 0, 50, 0, 0, 0, 0, 0, 10, 0, 5, 0, 1, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 10, 5, 0, 0, 0, 50, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 5, 0, 0, 0, 0], | |
'memento_id': 9, | |
'name': 'Bandit', | |
'name_jap': 'さびがらさん', | |
'personality': 'Wild at Heart', | |
'personality_jap': 'わいるど', | |
'power_level': 180, | |
'regular': True, | |
'seasonal_modifier_factor': 0}), | |
(10, | |
{'appearance': 'Tuxedo', | |
'appearance_jap': 'ハチワレ', | |
'available': True, | |
'cat_index': 10, | |
'file_name': 'img_neko_10', | |
'fish_gift_factor': 110, | |
'food_interests': [5, 15, 48, 10, 60, 50], | |
'goody_interests': [1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 20, 0, 70, 0, 0, 30, 0, 50, 30, 50, 50, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 25, 20, 0, 20, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 20, 20, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 15, 0, 0, 0, 0, 0, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 20, 30, 0, 0, 0, 0, 20, 0, 0, 50, 50, 0, 0, 0, 30, 0, 30, 0, 0, 0, 20, 30, 0, 0, 0, 0, 0, 5, 0, 0, 0, 50, 30], | |
'memento_id': 10, | |
'name': 'Gabriel', | |
'name_jap': 'はちわれさん', | |
'personality': 'Diligent', | |
'personality_jap': 'しっかりもの', | |
'power_level': 150, | |
'regular': True, | |
'seasonal_modifier_factor': 100}), | |
(11, | |
{'appearance': 'Pointed', | |
'appearance_jap': 'ポインテッド', | |
'available': True, | |
'cat_index': 11, | |
'file_name': 'img_neko_11', | |
'fish_gift_factor': 150, | |
'food_interests': [3, 13, 48, 30, 60, 50], | |
'goody_interests': [1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 50, 0, 0, 0, 0, 0, 50, 0, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 0, 0, 30, 20, 50, 70, 0, 30, 0, 0, 0, 0, 50, 0, 0, 0, 0, 10, 0, 0, 0, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 20, 20, 20, 0, 0, 50, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 50, 0, 0, 0, 0, 50, 0, 0, 0, 0, 0, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 80, 0, 0, 0, 80, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 50, 0, 0, 0, 0, 3, 60, 0, 0, 0, 0, 0, 0, 50, 30, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 20, 20, 20, 0, 0, 0, 20, 0, 0, 0, 0, 10, 0, 0, 0, 0, 5, 0, 0, 0, 20, 0, 20], | |
'memento_id': 11, | |
'name': 'Marshmallow', | |
'name_jap': 'ぽいんとさん', | |
'personality': 'Aloof', | |
'personality_jap': 'つんつん', | |
'power_level': 170, | |
'regular': True, | |
'seasonal_modifier_factor': 100}), | |
(12, | |
{'appearance': 'Black w/White Mitts', | |
'appearance_jap': 'くつした', | |
'available': True, | |
'cat_index': 12, | |
'file_name': 'img_neko_12', | |
'fish_gift_factor': 90, | |
'food_interests': [2, 11, 48, 10, 60, 50], | |
'goody_interests': [1, 1, 1, 1, 1, 0, 0, 0, 0, 50, 0, 0, 0, 0, 60, 40, 0, 30, 0, 30, 100, 50, 0, 0, 0, 0, 0, 0, 10, 120, 0, 100, 0, 25, 0, 0, 0, 0, 0, 0, 0, 30, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 15, 0, 10, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 10, 0, 10, 30, 0, 20, 20, 0, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 120, 150, 0, 0, 100, 120, 120, 150, 0, 0, 100, 120, 150, 0, 0, 0, 20, 150, 150, 0, 0, 120, 100, 80, 80, 80, 80, 160, 160, 80, 80, 80, 160, 160, 0, 0, 0, 0, 0, 0, 0, 0, 60, 30, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 15, 0, 30, 0, 0, 80, 50, 0, 0, 0, 0, 0, 5, 0, 0, 0, 20, 20, 0, 0, 0, 50, 0, 20, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 10, 0, 0, 30, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 10], | |
'memento_id': 12, | |
'name': 'Socks', | |
'name_jap': 'くつしたさん', | |
'personality': 'Adventurous', | |
'personality_jap': 'ぼうけんか', | |
'power_level': 70, | |
'regular': True, | |
'seasonal_modifier_factor': 30}), | |
(13, | |
{'appearance': 'Grey & White', | |
'appearance_jap': '灰白', | |
'available': True, | |
'cat_index': 13, | |
'file_name': 'img_neko_13', | |
'fish_gift_factor': 350, | |
'food_interests': [0, 18, 53, 30, 65, 55], | |
'goody_interests': [1, 1, 1, 1, 1, 0, 0, 0, 50, 0, 0, 0, 0, 0, 0, 0, 70, 0, 0, 0, 0, 0, 0, 30, 0, 0, 30, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 70, 0, 0, 0, 0, 30, 0, 0, 0, 70, 0, 0, 15, 0, 0, 0, 10, 0, 0, 0, 0, 0, 20, 0, 0, 0, 60, 50, 150, 50, 0, 0, 0, 0, 0, 0, 70, 0, 0, 30, 0, 0, 25, 0, 0, 0, 0, 30, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 50, 50, 50, 50, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 50, 0, 30, 0, 0, 30, 3, 0, 3, 0, 0, 1, 0, 5, 5, 15, 0, 0, 0, 100, 20, 0, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 0, 10, 0, 0, 0, 0, 15, 0, 0, 30, 0, 25, 0], | |
'memento_id': 13, | |
'name': 'Lexy', | |
'name_jap': 'はいしろさん', | |
'personality': 'Expensive Tastes', | |
'personality_jap': '高級志向', | |
'power_level': 100, | |
'regular': True, | |
'seasonal_modifier_factor': 100}), | |
(14, | |
{'appearance': 'Brown Tabby', | |
'appearance_jap': 'キジトラ', | |
'available': True, | |
'cat_index': 14, | |
'file_name': 'img_neko_14', | |
'fish_gift_factor': 230, | |
'food_interests': [3, 12, 48, 30, 60, 50], | |
'goody_interests': [2, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 60, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 40, 70, 80, 60, 0, 0, 0, 0, 30, 0, 50, 0, 0, 0, 70, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 0, 0, 70, 0, 0, 0, 20, 20, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 70, 20, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 50, 50, 50, 0, 0, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 80, 20, 100, 0, 0, 0, 0, 0, 0, 50, 0, 50, 30, 0, 0, 0, 0, 0, 0, 0, 15, 25, 50, 50, 70, 0, 10, 30, 30, 0, 0, 50, 50, 50, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 3, 0, 30, 20, 0, 0, 0], | |
'memento_id': 14, | |
'name': 'Bolt', | |
'name_jap': 'きじとらさん', | |
'personality': 'Insatiable', | |
'personality_jap': '食欲のおに', | |
'power_level': 140, | |
'regular': True, | |
'seasonal_modifier_factor': 50}), | |
(15, | |
{'appearance': 'Brown & White Tabby ', | |
'appearance_jap': 'キジトラ白', | |
'available': True, | |
'cat_index': 15, | |
'file_name': 'img_neko_15', | |
'fish_gift_factor': 85, | |
'food_interests': [7, 19, 40, 10, 60, 42], | |
'goody_interests': [5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 70, 0, 0, 50, 30, 0, 0, 0, 0, 0, 0, 40, 0, 0, 60, 100, 80, 70, 0, 0, 0, 50, 30, 30, 0, 0, 0, 10, 10, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 25, 20, 0, 0, 0, 50, 20, 20, 20, 0, 0, 0, 0, 0, 20, 0, 30, 0, 0, 30, 10, 10, 0, 0, 10, 10, 10, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 75, 100, 0, 0, 0, 70, 0, 0, 0, 20, 20, 0, 0, 0, 0, 0, 1, 0, 0, 0, 15, 10, 20, 0, 0, 20, 0, 50, 50, 50, 0, 0, 0, 0, 0, 10, 10, 10, 10, 10, 10, 10, 10, 0, 0, 3, 50, 20, 20, 20, 0], | |
'memento_id': 15, | |
'name': 'Breezy', | |
'name_jap': 'しろきじさん', | |
'personality': 'Laid Back', | |
'personality_jap': 'まったり', | |
'power_level': 30, | |
'regular': True, | |
'seasonal_modifier_factor': 100}), | |
(16, | |
{'appearance': 'Mackerel Tabby', | |
'appearance_jap': 'サバトラ', | |
'available': True, | |
'cat_index': 16, | |
'file_name': 'img_neko_16', | |
'fish_gift_factor': 190, | |
'food_interests': [2, 10, 43, 10, 60, 45], | |
'goody_interests': [5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 100, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 80, 50, 70, 0, 0, 100, 0, 0, 0, 0, 0, 50, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 70, 0, 0, 0, 0, 0, 0, 0, 30, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 50, 30, 0, 20, 0, 30, 0, 0, 0, 0, 0, 1, 15, 0, 0, 0, 0, 30, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 50, 0, 0, 0, 10, 0, 10, 0, 0, 10, 0, 3, 0, 0, 0, 10, 0, 0], | |
'memento_id': 16, | |
'name': 'Misty', | |
'name_jap': 'さばとらさん', | |
'personality': 'Lazy', | |
'personality_jap': 'めんどくさがり', | |
'power_level': 160, | |
'regular': True, | |
'seasonal_modifier_factor': 40}), | |
(17, | |
{'appearance': 'Gray & White Tabby', | |
'appearance_jap': 'サバトラ白', | |
'available': True, | |
'cat_index': 17, | |
'file_name': 'img_neko_17', | |
'fish_gift_factor': 200, | |
'food_interests': [2, 10, 48, 10, 60, 50], | |
'goody_interests': [5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 50, 0, 0, 0, 0, 0, 0, 0, 50, 0, 50, 0, 10, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 30, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 20, 0, 20, 0, 20, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 70, 30, 50, 0, 0, 0, 0, 50, 0, 0, 0, 0, 0, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 20, 0, 0, 0, 100, 100, 100, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 50, 0, 0, 0, 0, 0, 0, 30, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 20, 0, 0, 0, 0, 50, 30, 30, 0, 0, 0, 30, 30, 20, 15, 0, 1, 10, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 30, 0, 0, 30, 0, 0, 0, 0, 0, 0, 2, 0, 20, 0, 0, 0, 10], | |
'memento_id': 17, | |
'name': 'Pickles', | |
'name_jap': 'しろさばさん', | |
'personality': 'Faint-Hearted', | |
'personality_jap': 'びびり', | |
'power_level': 0, | |
'regular': True, | |
'seasonal_modifier_factor': 100}), | |
(18, | |
{'appearance': 'Black w/Odd Eyes', | |
'appearance_jap': '黒(オッドアイ)', | |
'available': True, | |
'cat_index': 18, | |
'file_name': 'img_neko_18', | |
'fish_gift_factor': 140, | |
'food_interests': [0, 5, 13, 50, 50, 15], | |
'goody_interests': [10, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 10, 0, 10, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 10, 10, 0, 0, 20, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 30, 0, 20, 0, 25, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 50, 0, 0, 0, 0, 0, 0, 0, 20, 0, 15, 0, 0, 15, 0, 0, 0, 0, 0, 0, 50, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 20, 0, 0, 60, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 5, 5, 30, 30, 30, 10, 0, 10, 0, 50, 0, 30, 0, 20, 3, 5, 1, 0, 0, 0, 20, 30, 0, 0, 5, 15, 0, 0, 0, 0, 20, 0, 0, 0, 50, 0, 0, 0, 0, 0, 0, 0, 10, 0, 2, 0, 0, 0, 0, 0, 40], | |
'memento_id': 18, | |
'name': 'Pepper', | |
'name_jap': 'おっどさん', | |
'personality': 'Shy', | |
'personality_jap': '人見知り', | |
'power_level': 165, | |
'regular': True, | |
'seasonal_modifier_factor': 100}), | |
(19, | |
{'appearance': 'Orange Patches', | |
'appearance_jap': '茶ぶち', | |
'available': True, | |
'cat_index': 19, | |
'file_name': 'img_neko_19', | |
'fish_gift_factor': 180, | |
'food_interests': [4, 18, 42, 10, 60, 45], | |
'goody_interests': [10, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 70, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 20, 20, 20, 0, 0, 0, 0, 0, 0, 30, 0, 0, 20, 20, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 20, 0, 0, 0, 20, 0, 0, 0, 0, 0, 20, 20, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 20, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 30, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 10, 20, 20, 0, 0, 0], | |
'memento_id': 19, | |
'name': 'Patches', | |
'name_jap': 'ぶちさん', | |
'personality': 'Jealous', | |
'personality_jap': 'やきもち焼き', | |
'power_level': 80, | |
'regular': True, | |
'seasonal_modifier_factor': 100}), | |
(20, | |
{'appearance': 'Tortoiseshell Tabby', | |
'appearance_jap': 'トービー', | |
'available': True, | |
'cat_index': 20, | |
'file_name': 'img_neko_20', | |
'fish_gift_factor': 115, | |
'food_interests': [3, 9, 42, 30, 60, 45], | |
'goody_interests': [10, 1, 1, 1, 1, 0, 0, 0, 50, 0, 0, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 50, 0, 20, 0, 10, 70, 30, 0, 0, 0, 0, 10, 0, 0, 0, 0, 100, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 70, 0, 0, 0, 0, 0, 30, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 20, 0, 0, 20, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 30, 20, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 20, 0, 0, 0, 0, 50, 0, 30, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 0, 0, 30, 0, 30, 0, 0, 30, 0, 30, 0, 0, 10, 0, 0, 0, 0, 30, 0, 0], | |
'memento_id': 20, | |
'name': 'Gozer', | |
'name_jap': 'とーびーさん', | |
'personality': 'Sore Loser', | |
'personality_jap': '負けず嫌い', | |
'power_level': 155, | |
'regular': True, | |
'seasonal_modifier_factor': 25}), | |
(21, | |
{'appearance': 'Brown Tuxedo', | |
'appearance_jap': '茶ハチワレ', | |
'available': True, | |
'cat_index': 21, | |
'file_name': 'img_neko_21', | |
'fish_gift_factor': 100, | |
'food_interests': [2, 11, 42, 10, 60, 45], | |
'goody_interests': [10, 1, 1, 1, 1, 0, 0, 0, 0, 30, 30, 0, 0, 0, 30, 30, 0, 20, 30, 50, 0, 0, 30, 0, 0, 0, 0, 0, 0, 10, 10, 10, 10, 30, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 0, 5, 5, 0, 10, 10, 10, 10, 10, 0, 0, 15, 0, 100, 0, 15, 0, 15, 10, 0, 10, 10, 10, 15, 15, 15, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 0, 10, 10, 10, 10, 5, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 5, 0, 0, 0, 0, 0, 0, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 5, 5, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 15, 15, 10, 10, 10, 0, 0, 40, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 20, 20, 20, 0, 0, 0, 50, 0, 0, 20, 0, 20, 0, 0, 20, 0, 5, 0, 30, 0, 20, 20, 40], | |
'memento_id': 21, | |
'name': 'Cocoa', | |
'name_jap': 'ちゃはちさん', | |
'personality': 'Indecisive', | |
'personality_jap': '優柔不断', | |
'power_level': 45, | |
'regular': True, | |
'seasonal_modifier_factor': 50}), | |
(22, | |
{'appearance': 'Striped Torbie', | |
'appearance_jap': '麦わら', | |
'available': True, | |
'cat_index': 22, | |
'file_name': 'img_neko_22', | |
'fish_gift_factor': 70, | |
'food_interests': [7, 11, 40, 10, 60, 42], | |
'goody_interests': [10, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 25, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 25, 20, 0, 50, 0, 0, 20, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 10, 15, 0, 0, 60, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 10, 0, 30, 20, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 5, 0, 0, 30, 0, 0, 30, 0, 0, 0, 0, 30, 0, 0, 0, 0, 30, 30, 0, 0, 0, 20, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 40, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 15, 0, 0, 0, 0, 15, 15, 5, 10, 20, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 10, 0, 0, 0], | |
'memento_id': 34, | |
'name': 'Princess', | |
'name_jap': 'むぎわらさん', | |
'personality': 'Ditzy', | |
'personality_jap': '天然', | |
'power_level': 125, | |
'regular': True, | |
'seasonal_modifier_factor': 30}), | |
(23, | |
{'appearance': 'Red w/White Mitts', | |
'appearance_jap': '赤毛', | |
'available': True, | |
'cat_index': 23, | |
'file_name': 'img_neko_23', | |
'fish_gift_factor': 125, | |
'food_interests': [0, 5, 10, 20, 30, 10], | |
'goody_interests': [10, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 80, 0, 0, 0, 0, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 20, 5, 0, 0, 0, 0, 0, 0, 0, 15, 20, 0, 20, 0, 20, 0, 20, 0, 0, 30, 5, 0, 0, 10, 0, 0, 20, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 20, 20, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 20, 20, 0, 0, 0, 0, 0, 0, 0, 5, 5, 20, 30, 0, 30, 0, 0, 0, 0, 0, 0, 0, 50, 0, 0, 20, 0, 20, 0, 0, 0, 0, 0, 10, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 15, 0, 0, 0, 30, 0, 0, 20, 0, 0, 0, 0, 5, 0, 0, 1, 50, 0, 0, 0, 30, 0, 30, 20, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 15, 0, 0, 0, 0], | |
'memento_id': 35, | |
'name': 'Ginger', | |
'name_jap': 'あかげさん', | |
'personality': 'Bashful', | |
'personality_jap': 'てれ屋', | |
'power_level': 60, | |
'regular': True, | |
'seasonal_modifier_factor': 100}), | |
(24, | |
{'appearance': 'Tan & Orange', | |
'appearance_jap': 'クリームぶち', | |
'available': True, | |
'cat_index': 24, | |
'file_name': 'img_neko_24', | |
'fish_gift_factor': 400, | |
'food_interests': [1, 2, 7, 7, 12, 5], | |
'goody_interests': [10, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 5, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 8, 1, 1, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 5, 5, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], | |
'memento_id': 36, | |
'name': 'Peaches', | |
'name_jap': 'くりーむさん', | |
'personality': 'Capricious', | |
'personality_jap': 'きまぐれ', | |
'power_level': 45, | |
'regular': True, | |
'seasonal_modifier_factor': 10}), | |
(25, | |
{'appearance': 'Red Tortoiseshell', | |
'appearance_jap': '赤サビ', | |
'available': True, | |
'cat_index': 25, | |
'file_name': 'img_neko_25', | |
'fish_gift_factor': 75, | |
'food_interests': [0, 24, 5, 0, 30, 10], | |
'goody_interests': [10, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 50, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 10, 0, 0, 20, 20, 20, 0, 10, 0, 20, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 30, 20, 0, 20, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 10, 10, 10, 5, 5, 10, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 40, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 20, 15, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 4, 0, 0, 0, 20, 0, 0], | |
'memento_id': 37, | |
'name': 'Spud', | |
'name_jap': 'あかさびさん', | |
'personality': 'Cautious', | |
'personality_jap': '慎重派', | |
'power_level': 80, | |
'regular': True, | |
'seasonal_modifier_factor': 150}), | |
(26, | |
{'appearance': 'White Mackerel', | |
'appearance_jap': '白サバトラ', | |
'available': True, | |
'cat_index': 26, | |
'file_name': 'img_neko_26', | |
'fish_gift_factor': 105, | |
'food_interests': [3, 12, 42, 20, 60, 42], | |
'goody_interests': [10, 1, 1, 1, 1, 0, 0, 0, 30, 20, 10, 20, 5, 15, 0, 0, 0, 0, 10, 15, 0, 20, 0, 0, 10, 0, 0, 40, 0, 0, 10, 10, 20, 10, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 10, 0, 0, 10, 0, 0, 0, 0, 15, 0, 0, 0, 5, 10, 10, 5, 10, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 10, 5, 0, 0, 5, 50, 20, 30, 0, 30, 5, 5, 5, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 5, 0, 5, 0, 0], | |
'memento_id': 38, | |
'name': 'Mack', | |
'name_jap': 'しろとらさん', | |
'personality': 'Determined', | |
'personality_jap': 'がんばりや', | |
'power_level': 130, | |
'regular': True, | |
'seasonal_modifier_factor': 0}), | |
(27, | |
{'appearance': 'Black Patches', | |
'appearance_jap': '黒ぶち', | |
'available': True, | |
'cat_index': 27, | |
'file_name': 'img_neko_27', | |
'fish_gift_factor': 140, | |
'food_interests': [10, 12, 42, 30, 60, 42], | |
'goody_interests': [10, 1, 1, 1, 1, 0, 0, 0, 0, 0, 10, 0, 0, 10, 0, 0, 0, 0, 10, 0, 0, 0, 10, 20, 10, 0, 10, 10, 0, 0, 10, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 10, 0, 0, 0, 0, 15, 15, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 15, 15, 15, 0, 0, 0, 0, 30, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 20, 0, 0, 10, 15, 20, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 0, 20, 20, 0, 0, 0, 0, 0, 10, 10, 15, 15, 15, 15, 12, 12, 12, 10, 10, 10, 10, 0, 0, 0, 0, 50, 0, 15, 15, 15, 15, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 3, 3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 10, 0, 0, 3, 0, 15, 15, 15, 0, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 0, 0, 30, 15, 15, 15, 15, 5], | |
'memento_id': 39, | |
'name': 'Speckles', | |
'name_jap': 'くろぶちさん', | |
'personality': 'Lonely', | |
'personality_jap': 'さみしがり', | |
'power_level': 40, | |
'regular': True, | |
'seasonal_modifier_factor': 100}), | |
(28, | |
{'appearance': 'Black Tabby', | |
'appearance_jap': '黒トラ', | |
'available': True, | |
'cat_index': 28, | |
'file_name': 'img_neko_28', | |
'fish_gift_factor': 95, | |
'food_interests': [3, 12, 42, 20, 60, 42], | |
'goody_interests': [10, 1, 1, 1, 1, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 25, 0, 0, 30, 20, 0, 0, 0, 0, 30, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 20, 20, 20, 0, 0, 0, 5, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 20, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 40, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 10, 0, 0, 0, 0, 10, 0], | |
'memento_id': 41, | |
'name': 'Willie', | |
'name_jap': 'くろとらさん', | |
'personality': 'Crafty', | |
'personality_jap': 'かしこい', | |
'power_level': 75, | |
'regular': True, | |
'seasonal_modifier_factor': 100}), | |
(29, | |
{'appearance': 'Grey Tuxedo', | |
'appearance_jap': '灰ハチワレ', | |
'available': True, | |
'cat_index': 29, | |
'file_name': 'img_neko_29', | |
'fish_gift_factor': 70, | |
'food_interests': [0, 0, 20, 50, 50, 30], | |
'goody_interests': [10, 1, 1, 1, 1, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 10, 0, 30, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 20, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0], | |
'memento_id': 42, | |
'name': 'Rascal', | |
'name_jap': 'はいはちさん', | |
'personality': 'Selfish', | |
'personality_jap': 'わがまま', | |
'power_level': 140, | |
'regular': True, | |
'seasonal_modifier_factor': 0}), | |
(30, | |
{'appearance': 'White Calico', | |
'appearance_jap': '白三毛', | |
'available': True, | |
'cat_index': 30, | |
'file_name': 'img_neko_30', | |
'fish_gift_factor': 95, | |
'food_interests': [10, 15, 48, 20, 60, 50], | |
'goody_interests': [10, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 15, 0, 15, 15, 15, 30, 0, 0, 0, 0, 0, 30, 50, 0, 0, 25, 0, 0, 0, 0, 0, 60, 0, 10, 0, 20, 0, 10, 0, 20, 20, 0, 20, 20, 0, 0, 0, 0, 45, 0, 0, 0, 0, 0, 15, 15, 30, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 15, 15, 15, 15, 15, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 15, 50, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 20, 30, 15, 30, 0, 0, 0, 0, 0, 0, 0, 0, 30, 30, 25, 0, 0, 0, 0, 0, 0, 0, 15, 15, 0, 0, 0, 0, 25, 0, 20, 0], | |
'memento_id': 45, | |
'name': 'Dottie', | |
'name_jap': 'しろみけさん', | |
'personality': 'Friendly', | |
'personality_jap': '人なつこい', | |
'power_level': 195, | |
'regular': True, | |
'seasonal_modifier_factor': 50}), | |
(31, | |
{'appearance': 'Grey Tortoiseshell', | |
'appearance_jap': '灰サビ', | |
'available': True, | |
'cat_index': 31, | |
'file_name': 'img_neko_31', | |
'fish_gift_factor': 130, | |
'food_interests': [20, 10, 5, 3, 1, 1], | |
'goody_interests': [10, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 50, 0, 0, 0, 0, 0, 0, 30, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 15, 0, 0, 0, 0, 0, 0, 0, 10, 0, 5, 0, 10, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 10, 10, 10, 0, 0, 0, 0, 0, 0, 10, 5, 0, 10, 0, 10, 10, 0, 10, 5, 15, 0, 0, 0, 10, 15, 10, 0, 0, 0, 0, 15, 10, 10, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 30, 30, 20, 70, 0, 20, 70, 0, 0, 0, 0, 70, 70, 50, 30, 30, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 15, 15, 15, 5, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], | |
'memento_id': 46, | |
'name': 'Spooky', | |
'name_jap': 'はいさびさん', | |
'personality': 'Reserved', | |
'personality_jap': '遠慮がち', | |
'power_level': 35, | |
'regular': True, | |
'seasonal_modifier_factor': 100}), | |
(100, | |
{'appearance': 'Baseball Jersey', | |
'appearance_jap': '縦縞', | |
'available': True, | |
'cat_index': 33, | |
'fish_gift_factor': 400, | |
'food_interests': [5, 5, 5, 15, 6, 5], | |
'goody_interests': [0, 0, 0, 0, 0, 0, 0, 0, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], | |
'memento_id': 22, | |
'name': 'Joe DiMeowgio', | |
'name_jap': 'たてじまさん', | |
'personality': 'Team Player', | |
'personality_jap': '熱狂', | |
'power_level': 28, | |
'regular': False, | |
'seasonal_modifier_factor': 0, | |
'special_index': 1}), | |
(101, | |
{'appearance': 'Mustachioed', | |
'appearance_jap': 'チョビヒゲ', | |
'available': True, | |
'cat_index': 38, | |
'fish_gift_factor': 300, | |
'food_interests': [5, 5, 5, 15, 6, 5], | |
'goody_interests': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], | |
'memento_id': 23, | |
'name': 'Senor Don Gato', | |
'name_jap': 'ながぐつさん', | |
'personality': 'Scheming', | |
'personality_jap': '策略家', | |
'power_level': 30, | |
'regular': False, | |
'seasonal_modifier_factor': 0, | |
'special_index': 6}), | |
(102, | |
{'appearance': 'Persian', | |
'appearance_jap': 'ペルシャ', | |
'available': True, | |
'cat_index': 35, | |
'fish_gift_factor': 950, | |
'food_interests': [5, 5, 5, 15, 6, 5], | |
'goody_interests': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], | |
'memento_id': 24, | |
'name': 'Xerxes IX', | |
'name_jap': 'ぷりんすさん', | |
'personality': 'Regal', | |
'personality_jap': '王族の佇まい', | |
'power_level': 70, | |
'regular': False, | |
'seasonal_modifier_factor': 0, | |
'special_index': 3}), | |
(103, | |
{'appearance': 'Camouflage', | |
'appearance_jap': '迷彩', | |
'available': True, | |
'cat_index': 42, | |
'fish_gift_factor': 250, | |
'food_interests': [5, 5, 5, 15, 6, 5], | |
'goody_interests': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0], | |
'memento_id': 25, | |
'name': 'Chairman Meow', | |
'name_jap': 'なべねこさん', | |
'personality': 'Boorish', | |
'personality_jap': '大艦巨砲主義', | |
'power_level': 111, | |
'regular': False, | |
'seasonal_modifier_factor': 0, | |
'special_index': 10}), | |
(104, | |
{'appearance': 'Ethereal', | |
'appearance_jap': 'オーラ', | |
'available': True, | |
'cat_index': 36, | |
'fish_gift_factor': 700, | |
'food_interests': [5, 5, 5, 15, 6, 5], | |
'goody_interests': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], | |
'memento_id': 26, | |
'name': 'Saint Purrtrick', | |
'name_jap': 'ねこまたさん', | |
'personality': 'Awe-Inspiring', | |
'personality_jap': 'すごい', | |
'power_level': 222, | |
'regular': False, | |
'seasonal_modifier_factor': 50, | |
'special_index': 4}), | |
(105, | |
{'appearance': 'Gold', | |
'appearance_jap': '小判', | |
'available': True, | |
'cat_index': 34, | |
'fish_gift_factor': 1400, | |
'food_interests': [5, 5, 5, 15, 6, 5], | |
'goody_interests': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], | |
'memento_id': 27, | |
'name': 'Ms. Fortune', | |
'name_jap': 'こいこいさん', | |
'personality': 'Charismatic', | |
'personality_jap': '商売上手', | |
'power_level': 20, | |
'regular': False, | |
'seasonal_modifier_factor': 0, | |
'special_index': 2}), | |
(106, | |
{'appearance': 'Adventurer', | |
'appearance_jap': 'トレッキング', | |
'available': True, | |
'cat_index': 37, | |
'fish_gift_factor': 200, | |
'food_interests': [5, 5, 5, 15, 6, 5], | |
'goody_interests': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], | |
'memento_id': 28, | |
'name': 'Bob the Cat', | |
'name_jap': 'やまねこさん', | |
'personality': 'Outdoorsy', | |
'personality_jap': '山の子', | |
'power_level': 40, | |
'regular': False, | |
'seasonal_modifier_factor': 0, | |
'special_index': 5}), | |
(107, | |
{'appearance': 'Railway Uniform', | |
'appearance_jap': '駅長', | |
'available': True, | |
'cat_index': 39, | |
'fish_gift_factor': 500, | |
'food_interests': [5, 5, 5, 15, 6, 5], | |
'goody_interests': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], | |
'memento_id': 29, | |
'name': 'Conductor Whiskers', | |
'name_jap': 'えきちょうさん', | |
'personality': 'Vigilant', | |
'personality_jap': 'お目付け役', | |
'power_level': 50, | |
'regular': False, | |
'seasonal_modifier_factor': 0, | |
'special_index': 7}), | |
(108, | |
{'appearance': 'Fluffy', | |
'appearance_jap': 'もふもふ', | |
'available': True, | |
'cat_index': 40, | |
'fish_gift_factor': 900, | |
'food_interests': [0, 1, 1, 1, 0, 0], | |
'goody_interests': [0, 0, 0, 0, 0, 80, 60, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], | |
'memento_id': 30, | |
'name': 'Tubbs', | |
'name_jap': 'まんぞくさん', | |
'personality': 'Finicky Feaster', | |
'personality_jap': 'まっしぐら', | |
'power_level': 130, | |
'regular': False, | |
'seasonal_modifier_factor': 0, | |
'special_index': 8}), | |
(109, | |
{'appearance': 'Ronin', | |
'appearance_jap': '浪人', | |
'available': True, | |
'cat_index': 41, | |
'fish_gift_factor': 80, | |
'food_interests': [5, 5, 5, 15, 10, 5], | |
'goody_interests': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], | |
'memento_id': 31, | |
'name': 'Mr. Meowgi', | |
'name_jap': 'おさむらいさん', | |
'personality': 'Mentoring', | |
'personality_jap': '元指南役', | |
'power_level': 250, | |
'regular': False, | |
'seasonal_modifier_factor': 0, | |
'special_index': 9}), | |
(110, | |
{'appearance': 'American Shorthair', | |
'appearance_jap': 'アメショ', | |
'available': True, | |
'cat_index': 43, | |
'fish_gift_factor': 900, | |
'food_interests': [0, 0, 3, 10, 6, 3], | |
'goody_interests': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], | |
'memento_id': 32, | |
'name': 'Lady Meow-Meow', | |
'name_jap': 'あめしょさん', | |
'personality': 'Diva', | |
'personality_jap': 'アイドル気質', | |
'power_level': 100, | |
'regular': False, | |
'seasonal_modifier_factor': 0, | |
'special_index': 11}), | |
(111, | |
{'appearance': 'Apron', | |
'appearance_jap': 'エプロン', | |
'available': True, | |
'cat_index': 44, | |
'fish_gift_factor': 150, | |
'food_interests': [0, 1, 5, 15, 6, 5], | |
'goody_interests': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], | |
'memento_id': 33, | |
'name': 'Guy Furry', | |
'name_jap': 'びすとろさん', | |
'personality': 'Artisan', | |
'personality_jap': '職人肌', | |
'power_level': 30, | |
'regular': False, | |
'seasonal_modifier_factor': 0, | |
'special_index': 12}), | |
(112, | |
{'appearance': 'Hunting Coat', | |
'appearance_jap': '狩衣', | |
'available': True, | |
'cat_index': 45, | |
'fish_gift_factor': 630, | |
'food_interests': [0, 0, 1, 18, 5, 1], | |
'goody_interests': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], | |
'memento_id': 40, | |
'name': 'Kathmandu', | |
'name_jap': 'まろまゆさん', | |
'personality': 'Refined', | |
'personality_jap': '雅', | |
'power_level': 150, | |
'regular': False, | |
'seasonal_modifier_factor': 0, | |
'special_index': 13}), | |
(113, | |
{'appearance': 'Sphinx', | |
'appearance_jap': 'ネメス', | |
'available': True, | |
'cat_index': 46, | |
'fish_gift_factor': 400, | |
'food_interests': [5, 5, 1, 0, 1, 1], | |
'goody_interests': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], | |
'memento_id': 43, | |
'name': 'Ramses the Great', | |
'name_jap': 'すふぃんさん', | |
'personality': 'Riddler', | |
'personality_jap': 'クイズ王', | |
'power_level': 230, | |
'regular': False, | |
'seasonal_modifier_factor': 0, | |
'special_index': 14}), | |
(114, | |
{'appearance': 'Waitress', | |
'appearance_jap': 'エプロンドレス', | |
'available': True, | |
'cat_index': 47, | |
'fish_gift_factor': 290, | |
'food_interests': [0, 0, 5, 5, 7, 7], | |
'goody_interests': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], | |
'memento_id': 44, | |
'name': 'Sassy Fran', | |
'name_jap': 'かふぇさん', | |
'personality': 'Enthusiastic', | |
'personality_jap': '先手必勝', | |
'power_level': 180, | |
'regular': False, | |
'seasonal_modifier_factor': 30, | |
'special_index': 15}), | |
(115, | |
{'appearance': 'Western Wear', | |
'appearance_jap': 'ネッカチーフ', | |
'available': True, | |
'cat_index': 48, | |
'fish_gift_factor': 77, | |
'food_interests': [5, 5, 5, 0, 10, 5], | |
'goody_interests': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], | |
'memento_id': 47, | |
'name': 'Billy the Kitten', | |
'name_jap': 'きっどさん', | |
'personality': 'Nihilistic', | |
'personality_jap': 'ニヒル', | |
'power_level': 250, | |
'regular': False, | |
'seasonal_modifier_factor': 0, | |
'special_index': 16}), | |
(116, | |
{'appearance': 'Straw Coat', | |
'appearance_jap': 'みのぼうし', | |
'available': True, | |
'cat_index': 49, | |
'fish_gift_factor': 350, | |
'food_interests': [0, 1, 3, 15, 7, 5], | |
'goody_interests': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 5, 0, 0, 0, 5, 0, 0, 5, 0, 0, 0, 0, 5, 5, 5, 5, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], | |
'memento_id': 49, | |
'name': 'Frosty', | |
'name_jap': 'ゆきねこさん', | |
'personality': 'Sensitive', | |
'personality_jap': 'もろい', | |
'power_level': 5, | |
'regular': False, | |
'seasonal_modifier_factor': 100, | |
'special_index': 17}), | |
(130, | |
{'appearance': 'The seventh', | |
'appearance_jap': '鳥肌', | |
'available': False, | |
'cat_index': 32, | |
'fish_gift_factor': 500, | |
'food_interests': [5, 5, 5, 2, 6, 7], | |
'goody_interests': [0, 0, 0, 0, 0, 0, 0, 0, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], | |
'memento_id': 48, | |
'name': 'Kitty Hawks', | |
'name_jap': 'ほーくすさん', | |
'personality': 'Mildness', | |
'personality_jap': '普段温厚', | |
'power_level': 100, | |
'regular': False, | |
'seasonal_modifier_factor': 0, | |
'special_index': 0})]) |
This file contains 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
>>> pprint(data.goodies) | |
OrderedDict([(0, | |
{'food': False, | |
'goodies_desc': 'Hardly a fancy feast、 but it tastes okay%rfor ' | |
'cheap chow. Guaranteed to contain a%rminimum ' | |
'of byproducts and fillers.', | |
'goodies_desc_jap': 'お徳用かりかり%r贅沢品ではないけれど%r味も大きさもまぁ合格', | |
'name': 'Thrifty Bitz', | |
'name_jap': 'お徳用かりかり', | |
'shop_desc': '', | |
'shop_desc_jap': 'お徳用かりかり%r贅沢品ではないけれど%r味も大きさも合格', | |
'spot': 3, | |
'type': 1, | |
'unk1': 83, | |
'unk2': 80, | |
'unk3': 95, | |
'unk4': 95, | |
'unk5': 95, | |
'unk7': 0, | |
'unk8': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}), | |
(98, | |
{'food': True, | |
'goodies_desc': 'Finicky felines prefer Frisky Bitz for%rits ' | |
'organic ingredients and rich flavor.', | |
'goodies_desc_jap': '高級なかりかり%r豪華な材料が使われていて%r味もなかなか良い', | |
'name': 'Frisky Bitz', | |
'name_jap': '高級かりかり', | |
'shop_desc': 'Made from nutritious and delicious farm-%rto-bowl ' | |
'ingredients、 Frisky Bitz might%rboost your powers ' | |
'of cat attraction.', | |
'shop_desc_jap': '高品質な食材を使用した%rバランスのとれた総合栄養食%rねこあつめ力がアップ!', | |
'spot': 3, | |
'type': 1, | |
'unk1': 84, | |
'unk2': 81, | |
'unk3': 96, | |
'unk4': 96, | |
'unk5': 96, | |
'unk7': 0, | |
'unk8': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}), | |
(1, | |
{'food': True, | |
'goodies_desc': 'As if by magic、 cats seem to appear%rfrom thin ' | |
'air as soon as they hear%rthe pull-top pop.', | |
'goodies_desc_jap': 'パキュ!%rの音だけでどこからともなく%rねこがくる不思議な缶詰', | |
'name': 'Ritzy Bitz', | |
'name_jap': '猫缶', | |
'shop_desc': 'A sumptuous canned combo of fresh tuna、%rbonito、 ' | |
'and sardines. Sure to boost your%rpowers of cat ' | |
'attraction!', | |
'shop_desc_jap': 'マグロ&カツオの大人気猫缶%rしらす配合で栄養も満点!%rねこあつめ力が激アップ!!', | |
'spot': 3, | |
'type': 1, | |
'unk1': 85, | |
'unk2': 82, | |
'unk3': 97, | |
'unk4': 97, | |
'unk5': 97, | |
'unk7': 0, | |
'unk8': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}), | |
(90, | |
{'food': True, | |
'goodies_desc': 'A can with a packet of reduced-salt ' | |
'bonito%rflakes. Perhaps this will keep your ' | |
"cats'%rengines purring longer.", | |
'goodies_desc_jap': 'かつおぶし(減塩タイプ)の%rふりかけつきの猫缶%rねこたちの遊ぶ時間が延びるかも', | |
'name': 'Bonito Bitz', | |
'name_jap': 'かつおぶし猫缶', | |
'shop_desc': 'Our gourmet canned feast、 now with a%rdash of ' | |
"bonito flakes to fuel your%rcats' active " | |
'lifestyles.', | |
'shop_desc_jap': '大人気猫缶にかつおぶしの%rふりかけ付きが登場!%r長時間の満足を保障!', | |
'spot': 3, | |
'type': 1, | |
'unk1': 82, | |
'unk2': 79, | |
'unk3': 94, | |
'unk4': 94, | |
'unk5': 94, | |
'unk7': 0, | |
'unk8': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}), | |
(96, | |
{'food': True, | |
'goodies_desc': 'If your mouth waters when you pop the top%rof ' | |
'this fancy feast、 imagine how the cats%rwill ' | |
'react!', | |
'goodies_desc_jap': 'パキュ!の音とともに溢れる香りが%rねこたちを惹きつけてやまない%r', | |
'name': 'Deluxe Tuna Bitz', | |
'name_jap': '高級マグロ猫缶', | |
'shop_desc': 'Even the most finicky of felines will%rcrave this ' | |
'fresh catch. Cats will%rpractically teleport to ' | |
'the bowl!', | |
'shop_desc_jap': '上質のマグロのみを使用することで%r味にうるさいねこちゃんも大絶賛!%rねこちゃんとの距離もぐっと近づくはず!', | |
'spot': 3, | |
'type': 1, | |
'unk1': 86, | |
'unk2': 83, | |
'unk3': 98, | |
'unk4': 98, | |
'unk5': 98, | |
'unk7': 0, | |
'unk8': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}), | |
(2, | |
{'food': True, | |
'goodies_desc': 'Not for everyone、 but the smell is hard%rto ' | |
'resist! Beloved by certain rare cats.', | |
'goodies_desc_jap': '好き嫌いはあるけれど%rそのニオイの吸引力は抜群%rレアなねこたちには大人気', | |
'name': 'Sashimi', | |
'name_jap': 'お刺身', | |
'shop_desc': 'Sashimi sliced from only the freshest%rfish、 with ' | |
'the wasabi and garnish removed.%rFor cats with ' | |
'expensive tastes.', | |
'shop_desc_jap': '新鮮な魚のお刺身%rサビ・ツマ抜きでねこちゃんも安心!%r高級志向のねこちゃんに是非!', | |
'spot': 3, | |
'type': 1, | |
'unk1': 87, | |
'unk2': 84, | |
'unk3': 99, | |
'unk4': 99, | |
'unk5': 99, | |
'unk7': 0, | |
'unk8': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}), | |
(3, | |
{'food': False, | |
'goodies_desc': "This is no cat toy. It's a " | |
'regulation%rbaseball ready for the major ' | |
'leagues. ', | |
'goodies_desc_jap': 'おもちゃタイプと思ったら%rなんと本格硬式ボール%rその質感がよいらしい', | |
'name': 'Baseball', | |
'name_jap': '野球ボール', | |
'shop_desc': 'A firm ball that feels good in your mitts.%rFor ' | |
'cats that like to play hardball.', | |
'shop_desc_jap': 'ほどよい握りごたえの%r野球ボール%rやんちゃなキミのため!', | |
'spot': 0, | |
'type': 2, | |
'unk1': 3, | |
'unk2': 0, | |
'unk3': 0, | |
'unk4': 0, | |
'unk5': 0, | |
'unk7': 0, | |
'unk8': [20, 50, 0, 0, 0, 50, 0, 0, 0, 0, 0, 20]}), | |
(4, | |
{'food': False, | |
'goodies_desc': 'A bit on the big side、 which means plenty%rof ' | |
'bounce per pounce.', | |
'goodies_desc_jap': 'ちょっと大きめだけど%rゴムの弾力でぐいぐいする%rのがなんかイイらしい', | |
'name': 'Rubber Ball (Red)', | |
'name_jap': 'ゴムボール(赤)', | |
'shop_desc': 'A red rubber ball with a satisfying%rbounce and ' | |
"soft squeeze that won't%rwear out your fingers.", | |
'shop_desc_jap': 'ぼよんぼよんとはねる%rゴム製の赤いボール%r柔らかさと弾力で飽きがこない!', | |
'spot': 0, | |
'type': 2, | |
'unk1': 5, | |
'unk2': 2, | |
'unk3': 2, | |
'unk4': 2, | |
'unk5': 2, | |
'unk7': 0, | |
'unk8': [20, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0]}), | |
(72, | |
{'food': False, | |
'goodies_desc': 'A bit on the big side、 which means plenty%rof ' | |
'bounce per pounce.', | |
'goodies_desc_jap': 'ちょっと大きめだけど%rゴムの弾力でぐいぐいする%rのがなんかイイらしい', | |
'name': 'Rubber Ball (Yellow)', | |
'name_jap': 'ゴムボール(黄)', | |
'shop_desc': 'A yellow rubber ball with a satisfying%rbounce ' | |
"and soft squeeze that won't%rwear out your " | |
'fingers.', | |
'shop_desc_jap': 'ぼよんぼよんとはねる%rゴム製の黄色いボール%r柔らかさと弾力で飽きがこない!', | |
'spot': 0, | |
'type': 2, | |
'unk1': 7, | |
'unk2': 4, | |
'unk3': 4, | |
'unk4': 4, | |
'unk5': 4, | |
'unk7': 0, | |
'unk8': [20, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0]}), | |
(73, | |
{'food': False, | |
'goodies_desc': 'A bit on the big side、 which means plenty%rof ' | |
'bounce per pounce.', | |
'goodies_desc_jap': 'ちょっと大きめだけど%rゴムの弾力でぐいぐいする%rのがなんかイイらしい', | |
'name': 'Rubber Ball (Blue)', | |
'name_jap': 'ゴムボール(青)', | |
'shop_desc': 'A blue rubber ball with a satisfying%rbounce and ' | |
"soft squeeze that won't%rwear out your fingers.", | |
'shop_desc_jap': 'ぼよんぼよんとはねる%rゴム製の青いボール%r柔らかさと弾力で飽きがこない!', | |
'spot': 0, | |
'type': 2, | |
'unk1': 6, | |
'unk2': 3, | |
'unk3': 3, | |
'unk4': 3, | |
'unk5': 3, | |
'unk7': 0, | |
'unk8': [20, 0, 0, 0, 0, 0, 30, 0, 0, 0, 0, 0]}), | |
(85, | |
{'food': False, | |
'goodies_desc': 'Made from a thick、 claw-resistant vinyl.', | |
'goodies_desc_jap': '厚みのあるソフトビニール製%r爪をたてても大丈夫そう', | |
'name': 'Watermelon Ball', | |
'name_jap': 'スイカ玉', | |
'shop_desc': 'A big ball with a watermelon print. ' | |
'Looks%rrefreshing until you bite into vinyl.', | |
'shop_desc_jap': 'スイカ模様の大きめボール%r暑い季節は見てるだけで%r涼しいかも?', | |
'spot': 0, | |
'type': 2, | |
'unk1': 8, | |
'unk2': 5, | |
'unk3': 5, | |
'unk4': 5, | |
'unk5': 5, | |
'unk7': 0, | |
'unk8': [20, 50, 0, 0, 0, 20, 30, 0, 0, 0, 0, 0]}), | |
(5, | |
{'food': False, | |
'goodies_desc': 'The cats who look the most bored are%rhaving ' | |
'the most fun.', | |
'goodies_desc_jap': '興味がないように見えて%r実は楽しんでいる系', | |
'name': 'Ping-Pong Ball', | |
'name_jap': 'ピンポン球', | |
'shop_desc': 'This puny plaything bounces with a%rhearty clack ' | |
"that's bound to pique%rany cat's interest.", | |
'shop_desc_jap': 'コンコン固くはずむ音と%r転がった時の音に興味深々%rまちがいなし!', | |
'spot': 0, | |
'type': 2, | |
'unk1': 11, | |
'unk2': 8, | |
'unk3': 8, | |
'unk4': 8, | |
'unk5': 8, | |
'unk7': 0, | |
'unk8': [20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}), | |
(6, | |
{'food': False, | |
'goodies_desc': 'It seemed big at first、 but this ball%rturned ' | |
'out to be the perfect size. ', | |
'goodies_desc_jap': '少し大きいかなと思ったけど%r意外とフィットする大きさ', | |
'name': 'Soccer Ball', | |
'name_jap': 'サッカーボール', | |
'shop_desc': 'The perfect ball for a team of maverick%rcats too ' | |
'cool to play by the rules.', | |
'shop_desc_jap': 'ルール無用のサッカーねこ%r育成マシーン!%r目指せCリーガー', | |
'spot': 0, | |
'type': 2, | |
'unk1': 12, | |
'unk2': 9, | |
'unk3': 9, | |
'unk4': 9, | |
'unk5': 9, | |
'unk7': 0, | |
'unk8': [20, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0]}), | |
(82, | |
{'food': False, | |
'goodies_desc': 'Instead of real silk、 this ball is%rfashioned ' | |
'from layers of shiny fabric%rwith a tiny bell ' | |
'hidden inside.', | |
'goodies_desc_jap': '絹ではないがツヤのある%r繊維で編まれた鞠%r中に鈴が入っている', | |
'name': 'Temari Ball', | |
'name_jap': 'まり', | |
'shop_desc': 'Real Temari Balls are fine pieces of%rJapanese ' | |
'folk art fashioned from layers%rof fabric. This ' | |
"one's made for cats.", | |
'shop_desc_jap': '本物の手まりのような質感の%rねこちゃん用のまりです', | |
'spot': 0, | |
'type': 2, | |
'unk1': 13, | |
'unk2': 10, | |
'unk3': 10, | |
'unk4': 10, | |
'unk5': 10, | |
'unk7': 0, | |
'unk8': [20, 0, 0, 40, 0, 0, 0, 100, 0, 0, 0, 0]}), | |
(51, | |
{'food': False, | |
'goodies_desc': 'A spongy blob of squishy material ' | |
'shaped%rvaguely like a ball.', | |
'goodies_desc_jap': 'もちもちとした不思議な感触の%rボール状のなにか', | |
'name': 'Stress Reliever', | |
'name_jap': 'もっちりボール', | |
'shop_desc': "You can't resist squeezing this ball in%ryour " | |
'hands. Imagine what will happen%rwhen the cats ' | |
'sink their claws into it.', | |
'shop_desc_jap': 'もっちりとした不思議な感触%r不思議な感触にねこちゃんも%rきっと夢中!?', | |
'spot': 0, | |
'type': 2, | |
'unk1': 10, | |
'unk2': 7, | |
'unk3': 7, | |
'unk4': 7, | |
'unk5': 7, | |
'unk7': 0, | |
'unk8': [20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}), | |
(46, | |
{'food': False, | |
'goodies_desc': 'Yarn wound round and round into a tight%rball. ' | |
'The woolen thread has a warmth%rto it.', | |
'goodies_desc_jap': 'ぐるぐるとボール状に巻かれた%r毛糸の玉%r触るだけで暖かい', | |
'name': 'Ball of Yarn', | |
'name_jap': '毛糸玉', | |
'shop_desc': 'A long string of yarn rolled into a tight%rball. ' | |
"It's a classic cat toy. Bit of a%rcliche、 " | |
'really. ', | |
'shop_desc_jap': 'やわらかな毛糸をあえて%rぐるぐるぎゅっと丸めた毛糸玉%r大きめで遊び道具にぴったり', | |
'spot': 0, | |
'type': 2, | |
'unk1': 9, | |
'unk2': 6, | |
'unk3': 6, | |
'unk4': 6, | |
'unk5': 6, | |
'unk7': 0, | |
'unk8': [20, -20, 0, 40, 20, 0, 0, 30, 0, 0, 0, 0]}), | |
(108, | |
{'food': False, | |
'goodies_desc': 'This is just an empty capsule from one%rof ' | |
'those turn-crank machines. You can%rput ' | |
'whatever you want inside.', | |
'goodies_desc_jap': '空のカプセル%r中に何をいれるかは%rあなたしだい', | |
'name': 'Toy Capsule', | |
'name_jap': 'カプセル玉', | |
'shop_desc': "You'll need to buy this if you want to%rsee " | |
"what's inside. Your cats might be%rjust as " | |
'interested!', | |
'shop_desc_jap': '中身の入っていないカプセル%r空でもねこの食いつきはバッチリ', | |
'spot': 0, | |
'type': 2, | |
'unk1': 4, | |
'unk2': 1, | |
'unk3': 1, | |
'unk4': 1, | |
'unk5': 1, | |
'unk7': 0, | |
'unk8': [0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0]}), | |
(62, | |
{'food': False, | |
'goodies_desc': 'A sweet box like this is sure to pique%ra ' | |
"cat's curiosity.", | |
'goodies_desc_jap': 'そこに箱があるから%rねこたちの探究心をくすぐる', | |
'name': 'Cake Box', | |
'name_jap': 'ケーキ箱', | |
'shop_desc': 'Someone ate the cake inside. Only a whiff%rof ' | |
'icing remains.', | |
'shop_desc_jap': '中身がカラっぽのケーキ箱%rほんのり甘いにおい', | |
'spot': 0, | |
'type': 9, | |
'unk1': 19, | |
'unk2': 16, | |
'unk3': 16, | |
'unk4': 16, | |
'unk5': 16, | |
'unk7': 0, | |
'unk8': [0, 0, 0, 30, 20, 0, 0, 0, 0, 0, 0, 30]}), | |
(130, | |
{'food': False, | |
'goodies_desc': 'An opened gift box with its wrapping%rpaper ' | |
'miraculously intact.', | |
'goodies_desc_jap': 'なんだか捨てられずにいる%r開封済みのギフトボックス', | |
'name': 'Gift Box', | |
'name_jap': 'ギフトボックス', | |
'shop_desc': 'This beautifully wrapped box%roverflows with ' | |
'holiday cheer.', | |
'shop_desc_jap': '空のはずなのに%rあるだけで嬉しくなってしまう%r綺麗な包みの箱', | |
'spot': 0, | |
'type': 3, | |
'unk1': 16, | |
'unk2': 13, | |
'unk3': 13, | |
'unk4': 13, | |
'unk5': 13, | |
'unk7': 0, | |
'unk8': [0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 30]}), | |
(7, | |
{'food': False, | |
'goodies_desc': 'A smallish box barely big enough to fit%ra ' | |
"cat. My、 how they've grown!", | |
'goodies_desc_jap': 'ねこたちの成長を感じ取れる%rすこし小さめの箱', | |
'name': 'Shopping Box (Small)', | |
'name_jap': 'ダンボール(小)', | |
'shop_desc': 'A small but inexplicably fascinating%rcardboard ' | |
'box. Empty of stuff and yet%rfull of mystery.', | |
'shop_desc_jap': '謎の多い不思議な魅力の小箱', | |
'spot': 0, | |
'type': 3, | |
'unk1': 20, | |
'unk2': 17, | |
'unk3': 17, | |
'unk4': 17, | |
'unk5': 17, | |
'unk7': 0, | |
'unk8': [0, 0, 0, 20, 0, 0, 30, 0, 0, 0, 0, 30]}), | |
(8, | |
{'food': False, | |
'goodies_desc': "A run-of-the-mill box that cats can't%rseem to " | |
'pass up.', | |
'goodies_desc_jap': '何故かねこたちを惹きつけて%rやまない不思議な箱', | |
'name': 'Shopping Box (Large)', | |
'name_jap': 'ダンボール(中)', | |
'shop_desc': 'An inexplicably fascinating cardboard%rbox. Empty ' | |
'of stuff and yet full of%rmystery.', | |
'shop_desc_jap': '謎の多い不思議な魅力の箱', | |
'spot': 0, | |
'type': 3, | |
'unk1': 18, | |
'unk2': 15, | |
'unk3': 15, | |
'unk4': 15, | |
'unk5': 15, | |
'unk7': 0, | |
'unk8': [0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 30]}), | |
(9, | |
{'food': False, | |
'goodies_desc': 'This truck-shaped box will make your%rkitties ' | |
'purr. They can even squeeze%rthrough the ' | |
'windshield.', | |
'goodies_desc_jap': '想定よりもかなりのフィット感%rフロントガラスからも出入り自由', | |
'name': 'Cardboard Truck', | |
'name_jap': 'ダンボールドライブ', | |
'shop_desc': "A toy delivery truck made of cardboard.%rIt's " | |
'surprisingly spacious inside.', | |
'shop_desc_jap': '車型に工作したダンボール%r中は広々空間!', | |
'spot': 0, | |
'type': 3, | |
'unk1': 14, | |
'unk2': 11, | |
'unk3': 11, | |
'unk4': 11, | |
'unk5': 11, | |
'unk7': 0, | |
'unk8': [0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 30]}), | |
(10, | |
{'food': False, | |
'goodies_desc': 'A room with a view、 this cardboard%rhouse lets ' | |
'your cats watch the world%rin complete privacy ' | |
'and darkness.', | |
'goodies_desc_jap': '薄暗いところからじっと外を%r見つめられるワンルーム', | |
'name': 'Cardboard House', | |
'name_jap': 'ハウスデラックス', | |
'shop_desc': "A cardboard casa with curb appeal. It's%rdim and " | |
'cool inside、 the way cats like it.', | |
'shop_desc_jap': 'ダンボール職人作!%rなかは薄暗くすずしく快適%rきっとご満足いただけます', | |
'spot': 1, | |
'type': 3, | |
'unk1': 17, | |
'unk2': 14, | |
'unk3': 14, | |
'unk4': 14, | |
'unk5': 14, | |
'unk7': 0, | |
'unk8': [0, 0, 0, 20, 0, 0, 30, 0, 0, 0, 0, 30]}), | |
(86, | |
{'food': False, | |
'goodies_desc': 'From its rounded roof to its tiny ' | |
"counter、%rthis bistro is the cat's pajamas. ", | |
'goodies_desc_jap': 'まるく可愛いやねに%r小さなカウンターまである%r立派なお店', | |
'name': 'Cardboard Cafe', | |
'name_jap': 'カフェデラックス', | |
'shop_desc': 'A quaint bistro cut from a cardboard box.%rYour ' | |
"cats will think they've landed in%rthe south of " | |
'France.', | |
'shop_desc_jap': 'ダンボール職人第二弾!%r今度はオシャレなカフェで%rゆったりおすごしください', | |
'spot': 1, | |
'type': 3, | |
'unk1': 21, | |
'unk2': 18, | |
'unk3': 18, | |
'unk4': 18, | |
'unk5': 18, | |
'unk7': 0, | |
'unk8': [0, 0, 0, 20, 0, 0, 0, 0, 30, 20, 0, 30]}), | |
(124, | |
{'food': False, | |
'goodies_desc': "This choo-choo's mournful steam " | |
'whistle%rinstills nostalgia in your ' | |
'cats.%r[*Actual steam boiler not included.]', | |
'goodies_desc_jap': 'ダンボールなので煙はでない%r黒光りした車体が美しい%r', | |
'name': 'Cardboard Choo-choo', | |
'name_jap': '機関車デラックス', | |
'shop_desc': 'All aboard the crazy train! This ' | |
'cardboard%rlocomotive will drive your cats loco.', | |
'shop_desc_jap': 'ダンボール職人第三弾!%rまるで西部劇に登場したみたい?!%rねこたちの冒険心をくすぐります', | |
'spot': 1, | |
'type': 3, | |
'unk1': 15, | |
'unk2': 12, | |
'unk3': 12, | |
'unk4': 12, | |
'unk5': 12, | |
'unk7': 0, | |
'unk8': [0, 0, 0, 20, 0, 30, 0, 0, 20, 0, 0, 100]}), | |
(11, | |
{'food': False, | |
'goodies_desc': "A standard pillow that's fairly%rcomfortable. " | |
"The stuffing will%rcome out if it's scratched.", | |
'goodies_desc_jap': '普通の座布団%r座り心地はそんなに悪くない%r引っ掻かれると中身が出てしまう', | |
'name': 'Pillow (Purple)', | |
'name_jap': 'お座布団(紫)', | |
'shop_desc': 'The sort of comfy cotton pillow enjoyed%rby cats ' | |
'of every stripe. ', | |
'shop_desc_jap': '綿がいいかんじにぺったりした%rお座布団%rそれが良いというお客様の声多数', | |
'spot': 0, | |
'type': 4, | |
'unk1': 43, | |
'unk2': 40, | |
'unk3': 42, | |
'unk4': 42, | |
'unk5': 42, | |
'unk7': 0, | |
'unk8': [20, 0, 30, 0, 40, 0, 30, 30, 0, 0, 0, 0]}), | |
(44, | |
{'food': False, | |
'goodies_desc': "A standard pillow that's fairly%rcomfortable. " | |
"The stuffing will%rcome out if it's scratched.", | |
'goodies_desc_jap': '普通の座布団%r座り心地はそんなに悪くない%r引っ掻かれると中身が出てしまう', | |
'name': 'Pillow (Yellow)', | |
'name_jap': 'お座布団(黄)', | |
'shop_desc': 'A comfortable cotton pillow. Its yellow%rfabric ' | |
'adds a touch of elegance while%rhiding stains. ', | |
'shop_desc_jap': '綿がいいかんじにぺったりした%rお座布団%r渋目の気品を感じさせる黄色', | |
'spot': 0, | |
'type': 4, | |
'unk1': 44, | |
'unk2': 41, | |
'unk3': 43, | |
'unk4': 43, | |
'unk5': 43, | |
'unk7': 0, | |
'unk8': [20, 0, 30, 0, 40, 0, 30, 30, 0, 0, 0, 0]}), | |
(45, | |
{'food': False, | |
'goodies_desc': "A standard pillow that's fairly%rcomfortable. " | |
"The stuffing will%rcome out if it's scratched.", | |
'goodies_desc_jap': '普通の座布団%r座り心地はそんなに悪くない%r引っ掻かれると中身が出てしまう', | |
'name': 'Pillow (Green)', | |
'name_jap': 'お座布団(緑)', | |
'shop_desc': 'A comfortable cotton pillow. The green%rfabric is ' | |
'somehow soothing.', | |
'shop_desc_jap': '綿がいいかんじにぺったりした%rお座布団%r落ち着いた雰囲気を漂わせる緑', | |
'spot': 0, | |
'type': 4, | |
'unk1': 45, | |
'unk2': 42, | |
'unk3': 44, | |
'unk4': 44, | |
'unk5': 44, | |
'unk7': 0, | |
'unk8': [20, 0, 30, 0, 40, 0, 30, 30, 0, 0, 0, 0]}), | |
(12, | |
{'food': False, | |
'goodies_desc': 'This silky-soft pillow is perfect%rfor ' | |
'catnaps.', | |
'goodies_desc_jap': '触り心地がきもちいい%r昼寝にぴったりの座布団', | |
'name': 'Silk Crepe Pillow', | |
'name_jap': 'ちりめん座布団', | |
'shop_desc': 'The crepe fabric of this pillow gives%rit a ' | |
'crimped appearance. Ideal for%rdiscerning ' | |
'felines. ', | |
'shop_desc_jap': '高級ちりめんを使用した%r由緒ある座布団%rちがいのわかる方へ是非', | |
'spot': 0, | |
'type': 4, | |
'unk1': 46, | |
'unk2': 43, | |
'unk3': 45, | |
'unk4': 45, | |
'unk5': 45, | |
'unk7': 0, | |
'unk8': [20, 0, 30, 0, 40, 0, 0, 40, 0, 0, 0, 0]}), | |
(65, | |
{'food': False, | |
'goodies_desc': 'The floral pattern on this pillow will%rbring ' | |
'a splash of spring to any room、%reven on ' | |
'dreary days.', | |
'goodies_desc_jap': 'さくら柄でとても華やかな%r置くだけで春を感じられる座布団', | |
'name': 'Sakura Pillow', | |
'name_jap': 'さくら座布団', | |
'shop_desc': 'A pillow with a lovely cherry-blossom%rpattern. ' | |
'Stylish and silky-soft.', | |
'shop_desc_jap': '絹のさらさらとした触り心地%rさくら柄の座布団', | |
'spot': 0, | |
'type': 4, | |
'unk1': 48, | |
'unk2': 45, | |
'unk3': 47, | |
'unk4': 47, | |
'unk5': 47, | |
'unk7': 0, | |
'unk8': [50, 0, 0, 0, 40, 0, 0, 40, 0, 0, 0, 0]}), | |
(109, | |
{'food': False, | |
'goodies_desc': 'The maple-leaf pattern on this pillow will%r ' | |
'bring a dash of autumn to any room.', | |
'goodies_desc_jap': '紅葉柄が鮮やかで美しい%r置くだけで秋を感じられる座布団', | |
'name': 'Maple Pillow', | |
'name_jap': 'もみじ座布団', | |
'shop_desc': 'A maple-print pillow. The fabric feels%rsmooth ' | |
'and silky.', | |
'shop_desc_jap': '絹のさらさらとした触り心地%r秋柄の座布団', | |
'spot': 0, | |
'type': 4, | |
'unk1': 47, | |
'unk2': 44, | |
'unk3': 46, | |
'unk4': 46, | |
'unk5': 46, | |
'unk7': 0, | |
'unk8': [0, 0, 50, 0, 40, 0, 0, 40, 0, 0, 0, 0]}), | |
(139, | |
{'food': False, | |
'goodies_desc': 'You could swear this elegant pillow%rsends a ' | |
'chill through the room.', | |
'goodies_desc_jap': '粉雪柄が儚く奥ゆかしい%r置くだけで冬を感じられる座布団', | |
'name': 'Snowy Pillow', | |
'name_jap': 'しらゆき座布団', | |
'shop_desc': "You'll want to reach out and touch%rthe silk " | |
'cover of this winter-themed%rpillow.', | |
'shop_desc_jap': '絹のさらさらとした触り心地%r冬柄の座布団', | |
'spot': 0, | |
'type': 7, | |
'unk1': 49, | |
'unk2': 46, | |
'unk3': 48, | |
'unk4': 48, | |
'unk5': 48, | |
'unk7': 0, | |
'unk8': [0, 50, 0, -50, 0, 0, 0, 40, 0, 0, 0, 0]}), | |
(13, | |
{'food': False, | |
'goodies_desc': 'A simple beige cushion made of soft、%rfluffy ' | |
'material.', | |
'goodies_desc_jap': 'シンプルなベージュのクッション%rふんわりとした座り心地', | |
'name': 'Cushion (Beige)', | |
'name_jap': 'クッション(ベージュ)', | |
'shop_desc': 'A fluffy pillow made of special%rmaterial that ' | |
'repels cat hair.%rAvailable in soothing beige.', | |
'shop_desc_jap': 'ふんわりくっしょん%rぬけ毛がからまない生地を採用%rおちついたベージュカラー', | |
'spot': 0, | |
'type': 4, | |
'unk1': 34, | |
'unk2': 31, | |
'unk3': 32, | |
'unk4': 32, | |
'unk5': 32, | |
'unk7': 0, | |
'unk8': [20, -30, 0, 0, 40, 0, 0, 0, 20, 0, 20, 0]}), | |
(14, | |
{'food': False, | |
'goodies_desc': 'A cute pink cushion made of soft、%rfluffy ' | |
'material.', | |
'goodies_desc_jap': 'かわいいピンクのクッション%rふんわりとした座り心地', | |
'name': 'Cushion (Pink)', | |
'name_jap': 'クッション(ピンク)', | |
'shop_desc': 'A fluffy pillow made of special%rmaterial that ' | |
'repels cat hair.%rAvailable in pleasing pink.', | |
'shop_desc_jap': 'ふんわりくっしょん%rぬけ毛がからまない生地を採用%rかわいらしいピンク', | |
'spot': 0, | |
'type': 4, | |
'unk1': 35, | |
'unk2': 32, | |
'unk3': 33, | |
'unk4': 33, | |
'unk5': 33, | |
'unk7': 0, | |
'unk8': [20, -30, 0, 0, 40, 0, 0, 0, 20, 0, 20, 0]}), | |
(15, | |
{'food': False, | |
'goodies_desc': 'A muted brown cushion made of soft、%rfluffy ' | |
'material.', | |
'goodies_desc_jap': '渋いブラウンのクッション%rふんわりとした座り心地', | |
'name': 'Cushion (Brown)', | |
'name_jap': 'クッション(ブラウン)', | |
'shop_desc': 'A fluffy pillow made of special%rmaterial that ' | |
'repels cat hair.%rAvailable in a neutral brown.', | |
'shop_desc_jap': 'ふんわりくっしょん%rぬけ毛がからまない生地を採用%r渋い大人の雰囲気ブラウン', | |
'spot': 0, | |
'type': 4, | |
'unk1': 36, | |
'unk2': 33, | |
'unk3': 34, | |
'unk4': 34, | |
'unk5': 34, | |
'unk7': 0, | |
'unk8': [20, -30, 0, 0, 40, 0, 0, 0, 20, 0, 20, 0]}), | |
(74, | |
{'food': False, | |
'goodies_desc': 'A bright yellow cushion made of soft、%rfluffy ' | |
'material.', | |
'goodies_desc_jap': 'あかるいイエローのクッション%rふんわりとした座り心地', | |
'name': 'Cushion (Yellow)', | |
'name_jap': 'クッション(イエロー)', | |
'shop_desc': 'A fluffy pillow made of special%rmaterial that ' | |
'repels cat hair.%rAvailable in bold yellow.', | |
'shop_desc_jap': 'ふんわりくっしょん%rぬけ毛がからまない生地を採用%rあかるい気分のイエロー', | |
'spot': 0, | |
'type': 4, | |
'unk1': 37, | |
'unk2': 34, | |
'unk3': 35, | |
'unk4': 35, | |
'unk5': 35, | |
'unk7': 0, | |
'unk8': [20, -30, 0, 0, 40, 0, 0, 0, 20, 0, 20, 0]}), | |
(75, | |
{'food': False, | |
'goodies_desc': 'A calming green cushion made of soft、%rfluffy ' | |
'material.', | |
'goodies_desc_jap': '爽やかなグリーンのクッション%rふんわりとした座り心地', | |
'name': 'Cushion (Green)', | |
'name_jap': 'クッション(グリーン)', | |
'shop_desc': 'A fluffy pillow made of special%rmaterial that ' | |
'repels cat hair.%rAvailable in calming green.', | |
'shop_desc_jap': 'ふんわりくっしょん%rぬけ毛がからまない生地を採用%rしっとりさわやかグリーン', | |
'spot': 0, | |
'type': 4, | |
'unk1': 38, | |
'unk2': 35, | |
'unk3': 36, | |
'unk4': 36, | |
'unk5': 36, | |
'unk7': 0, | |
'unk8': [20, -30, 0, 0, 40, 0, 0, 0, 20, 0, 20, 0]}), | |
(110, | |
{'food': False, | |
'goodies_desc': "A sunny cube complete with a hammock.%rIt's a " | |
'rejuvenating spot to catch 40%rwinks or just ' | |
'lay low for a while.', | |
'goodies_desc_jap': '陽気なオレンジのキューブハンモック%r寝る、ひそむ、もぐるができる%r癒しスポット', | |
'name': 'Orange Cube', | |
'name_jap': 'オレンジキューブ', | |
'shop_desc': 'A bright orange cube equipped with a ' | |
'soft%rcushion and a rigid hammock.', | |
'shop_desc_jap': '低反発のハンモックと%r柔らかクッションを採用%r明るく賑やかなオレンジ', | |
'spot': 0, | |
'type': 4, | |
'unk1': 112, | |
'unk2': 109, | |
'unk3': 127, | |
'unk4': 127, | |
'unk5': 127, | |
'unk7': 0, | |
'unk8': [20, 0, 0, 20, 30, 0, 0, 0, 20, 20, 20, 0]}), | |
(111, | |
{'food': False, | |
'goodies_desc': 'A chic navy-blue cube complete with ' | |
"a%rhammock. It's a rejuvenating spot to%rtake " | |
'a nap or just hide out for a while.', | |
'goodies_desc_jap': 'シックなネイビーのキューブハンモック%r寝る、ひそむ、もぐるができる%r癒しスポット', | |
'name': 'Navy-blue Cube', | |
'name_jap': 'ネイビーキューブ', | |
'shop_desc': 'A chic and calming navy-blue cube equipped%rwith ' | |
'a soft cushion and a rigid hammock.', | |
'shop_desc_jap': '低反発のハンモックと%r柔らかクッションを採用%r落ち着きのあるシックなネイビー', | |
'spot': 0, | |
'type': 4, | |
'unk1': 113, | |
'unk2': 110, | |
'unk3': 128, | |
'unk4': 128, | |
'unk5': 128, | |
'unk7': 0, | |
'unk8': [20, 0, 0, 20, 30, 0, 0, 0, 20, 20, 20, 0]}), | |
(112, | |
{'food': False, | |
'goodies_desc': 'A short-but-sweet tiramisu hammock cube.%rFat ' | |
'free but not cat free.', | |
'goodies_desc_jap': 'ティラミス型の%rふわしゅわキューブハンモック%rカカオは不使用', | |
'name': 'Tiramisu Cube', | |
'name_jap': 'ティラミスキューブ', | |
'shop_desc': 'Indulge your cats lounging instincts%rwith this ' | |
'decadent tiramisu-themed%rhammock cube.', | |
'shop_desc_jap': '中はふわしゅわ濃厚ティラミスに%r心もからだもとろけちゃいそう', | |
'spot': 0, | |
'type': 4, | |
'unk1': 114, | |
'unk2': 111, | |
'unk3': 129, | |
'unk4': 129, | |
'unk5': 129, | |
'unk7': 0, | |
'unk8': [20, 0, 0, 20, 30, 0, 0, 0, 20, 20, 20, 0]}), | |
(113, | |
{'food': False, | |
'goodies_desc': "It might look tight but it's " | |
'surprisingly%rcozy. Let see if you get a lucky ' | |
'roll.', | |
'goodies_desc_jap': '狭そうに見えて意外と快適%r出る目もねこには%r関係ないみたい', | |
'name': 'Dice Cube', | |
'name_jap': 'サイコロキューブ', | |
'shop_desc': 'Press your luck and roll the dice!%rThis ' | |
'Vegas-themed hammock cube%rwill class up any ' | |
'joint.', | |
'shop_desc_jap': '思わず振ってしまいそう!?%rサイコロ型ハンモッククッション%rちょっとした部屋のアクセントにも', | |
'spot': 0, | |
'type': 4, | |
'unk1': 111, | |
'unk2': 108, | |
'unk3': 126, | |
'unk4': 126, | |
'unk5': 126, | |
'unk7': 0, | |
'unk8': [20, 0, 0, 20, 30, 0, 0, 0, 20, 40, 20, 0]}), | |
(16, | |
{'food': False, | |
'goodies_desc': 'This squishy pad helps your cats beat%rthe ' | |
'heat.', | |
'goodies_desc_jap': '分厚くて冷たいマット%r柔らかくてひんやり心地よい', | |
'name': 'Thick Cooling Pad', | |
'name_jap': '極厚ひんやりマット', | |
'shop_desc': 'A cushion stuffed with scientifically%rformulated ' | |
'gel that keeps its cool.', | |
'shop_desc_jap': '夏場のおともひんやりクッション%r大容量のやわらか冷却ジェルが%r長時間の快適さを約束', | |
'spot': 0, | |
'type': 7, | |
'unk1': 32, | |
'unk2': 29, | |
'unk3': 30, | |
'unk4': 30, | |
'unk5': 30, | |
'unk7': 0, | |
'unk8': [0, 50, 0, -50, 30, 0, 0, 0, 0, 0, 0, 0]}), | |
(87, | |
{'food': False, | |
'goodies_desc': 'An aluminum plate that is cool to the%rtouch. ' | |
'It might heat up quickly if you%rleft it in ' | |
'the sun.', | |
'goodies_desc_jap': '触るとひやっとする%rアルミ製プレート%r日の当たる場所は熱そう', | |
'name': 'Cool Aluminum Pad', | |
'name_jap': '極冷アルミプレート', | |
'shop_desc': 'This simple metal plate can cool a small%rarea on ' | |
'a hot day. Easy to clean、 too.%rJust wipe it down ' | |
"and you're done!", | |
'shop_desc_jap': '暑い日に快適エリアを作成!%r表面は防汚塗装がされているので%rお手入れもさっと拭くだけ', | |
'spot': 0, | |
'type': 7, | |
'unk1': 22, | |
'unk2': 19, | |
'unk3': 19, | |
'unk4': 19, | |
'unk5': 19, | |
'unk7': 0, | |
'unk8': [0, 50, 0, -50, 0, -30, 0, 0, 0, 0, 0, 0]}), | |
(88, | |
{'food': False, | |
'goodies_desc': 'A heavy marble slab that is cool to ' | |
'the%rtouch. It might heat up quickly if ' | |
'you%rleft it in the sun.', | |
'goodies_desc_jap': 'ひんやりとした大理石%rずっしりとしている%r日が当たる場所は熱そう', | |
'name': 'Marble Pad', | |
'name_jap': '天然大理石プレート', | |
'shop_desc': 'An elegant stone slab with a polished%rsurface. ' | |
'The edges are rough hewn to%ravoid slippage.', | |
'shop_desc_jap': '上品な色合いの大理石を使用%r表面のみを磨き上げているので%rすべりません', | |
'spot': 0, | |
'type': 7, | |
'unk1': 28, | |
'unk2': 25, | |
'unk3': 26, | |
'unk4': 26, | |
'unk5': 26, | |
'unk7': 0, | |
'unk8': [0, 30, 0, -30, 0, -30, 0, 0, 0, 20, 20, 0]}), | |
(89, | |
{'food': False, | |
'goodies_desc': 'Your hands leave deep prints in the%rsquishy ' | |
'gel、 but it should be okay%rfor cats.', | |
'goodies_desc_jap': '寝そべると体重で%rジェルが移動しちゃうけど%rねこたちなら大丈夫そう', | |
'name': 'Large Cooling Mat', | |
'name_jap': 'ひんやりマットL', | |
'shop_desc': 'A large cushion packed with ' | |
'scientifically%rformulated cooling gel. ', | |
'shop_desc_jap': 'ひんやりクッションジェルを%rふんだんに使用した%r大型ひんやりマット', | |
'spot': 1, | |
'type': 7, | |
'unk1': 33, | |
'unk2': 30, | |
'unk3': 31, | |
'unk4': 31, | |
'unk5': 31, | |
'unk7': 0, | |
'unk8': [0, 50, 0, -50, 30, 0, 0, 0, 0, 0, 0, 0]}), | |
(17, | |
{'food': False, | |
'goodies_desc': 'Soft and fluffy、 this cushion is%rpractically ' | |
'irresistible.', | |
'goodies_desc_jap': 'もこもこしたクッション%rふかふかの感触がたまらない', | |
'name': 'Fluffy Cushion', | |
'name_jap': 'もこもこクッション', | |
'shop_desc': "Cats will sleep on cloud nine in this%rcushion's " | |
'bottomless billowy depths.', | |
'shop_desc_jap': 'もっこもこのふわふわに%rつつまれたような感触が%r良い夢見をサポートします', | |
'spot': 0, | |
'type': 4, | |
'unk1': 39, | |
'unk2': 36, | |
'unk3': 37, | |
'unk4': 37, | |
'unk5': 37, | |
'unk7': 0, | |
'unk8': [20, -30, 0, 0, 40, 0, 0, 0, 0, 0, 20, 0]}), | |
(61, | |
{'food': False, | |
'goodies_desc': 'Like the fluffier cousin of the%rfluffy ' | |
'cushion.', | |
'goodies_desc_jap': '見た目は似ていても%rもこもこクッションよりも%rふかふかしている', | |
'name': 'Sheep Cushion', | |
'name_jap': 'ひつじクッション', | |
'shop_desc': 'All the dreamy deep-sleep potential of%rthe ' | |
'fluffy cushion、 now in the shape of%ra sheep. A ' | |
'triumph of pillow science!', | |
'shop_desc_jap': '進化したもこもこクッション%rこんどのもこもこはなんと羊!', | |
'spot': 0, | |
'type': 4, | |
'unk1': 41, | |
'unk2': 38, | |
'unk3': 40, | |
'unk4': 40, | |
'unk5': 40, | |
'unk7': 0, | |
'unk8': [20, -30, 0, 0, 40, 0, 0, 0, 20, 0, 20, 20]}), | |
(76, | |
{'food': False, | |
'goodies_desc': 'This snack-shaped cushion is so soft、%ryour ' | |
"cat will think it's sinking!", | |
'goodies_desc_jap': 'ふっくらもちっとしたクッション%rやわらかすぎて埋もれてしまう', | |
'name': 'Sakuramochi Cushion', | |
'name_jap': '桜餅クッション', | |
'shop_desc': "Kitties can't resist sinking into this%rsquishy " | |
'cushion modeled after a chewy%rJapanese sweet ' | |
'treat.', | |
'shop_desc_jap': '桜餅とねこ!%rもちもちしたクッションが%rねこちゃんを包み込みます', | |
'spot': 0, | |
'type': 4, | |
'unk1': 24, | |
'unk2': 21, | |
'unk3': 21, | |
'unk4': 21, | |
'unk5': 21, | |
'unk7': 0, | |
'unk8': [50, 0, 0, 0, 40, 0, 0, 40, 0, 0, 20, 0]}), | |
(125, | |
{'food': False, | |
'goodies_desc': 'This big burger looks better than it%rtastes、 ' | |
'unless you like the taste of%rfelt covered in ' | |
'cat hair.', | |
'goodies_desc_jap': '具ははフェルト素材を使用%r残念だけど食べられない', | |
'name': 'Burger Cushion', | |
'name_jap': 'バーガークッション', | |
'shop_desc': 'With its bean-bag patty and fluffy fabric%rbuns、 ' | |
'this cushion will make your belly%rgrowl while ' | |
'your cats meow.', | |
'shop_desc_jap': '見てるだけでお腹が鳴りそう!%rふわふっわバンズの%rハンバーガークッション', | |
'spot': 0, | |
'type': 4, | |
'unk1': 26, | |
'unk2': 23, | |
'unk3': 23, | |
'unk4': 24, | |
'unk5': 23, | |
'unk7': 1, | |
'unk8': [0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 20, 100]}), | |
(18, | |
{'food': False, | |
'goodies_desc': 'The roomy inner chamber of this cushion%ris ' | |
'dim and quiet、 ideal for a catnap.', | |
'goodies_desc_jap': '屋根のついたクッション%r適度な暗さがお昼寝にピッタリ', | |
'name': 'Head Space', | |
'name_jap': 'ドーム型クッション', | |
'shop_desc': 'Give your feline some me time in this%rcushion ' | |
"shaped like a cat's head complete%rwith cute " | |
'kitty ears.', | |
'shop_desc_jap': '大きな口におしゃれな耳%rほどよいサイズのマイスペース%rはいかがでしょうか?', | |
'spot': 0, | |
'type': 4, | |
'unk1': 29, | |
'unk2': 26, | |
'unk3': 27, | |
'unk4': 27, | |
'unk5': 27, | |
'unk7': 0, | |
'unk8': [20, -30, 0, 20, 40, 0, 30, 0, 20, 0, 20, 0]}), | |
(123, | |
{'food': False, | |
'goodies_desc': 'This stark and stylish head-shaped%rcushion ' | |
'creates the perfect private%rspace for a ' | |
'catnap.', | |
'goodies_desc_jap': '白黒モダンテイストな%r屋根のついたクッション%r適度な暗さがお昼寝にピッタリ', | |
'name': 'Black Head Space', | |
'name_jap': 'ドーム型ブラック', | |
'shop_desc': 'Give your feline some me time in this%rstylish ' | |
"cushion shaped like a cat's%rcabeza. Adds modern " | |
'flair to any yard. ', | |
'shop_desc_jap': '大きな口におしゃれな耳%rほどよいサイズのマイスペース%rモノトーンで大人な配色', | |
'spot': 0, | |
'type': 4, | |
'unk1': 30, | |
'unk2': 27, | |
'unk3': 28, | |
'unk4': 28, | |
'unk5': 28, | |
'unk7': 0, | |
'unk8': [20, -30, 0, 20, 40, 0, 0, 0, 20, 20, 20, 0]}), | |
(67, | |
{'food': False, | |
'goodies_desc': "This basket's warm material blocks " | |
'light、%rcreating a tip-top napping spot.', | |
'goodies_desc_jap': '吸湿性と適度なぬくもりが感じられる%r中が薄暗いのも人気らしい', | |
'name': 'Basket Case', | |
'name_jap': 'ねこちぐら', | |
'shop_desc': 'A traditional、 handcrafted straw basket%rthat ' | |
'cats will crawl right into.', | |
'shop_desc_jap': '素朴な感じのするワラで編まれた%rねこ用の伝統工芸品', | |
'spot': 0, | |
'type': 4, | |
'unk1': 27, | |
'unk2': 24, | |
'unk3': 25, | |
'unk4': 25, | |
'unk5': 25, | |
'unk7': 0, | |
'unk8': [0, 20, 20, -30, 0, 20, 0, 40, 0, 0, 0, 0]}), | |
(119, | |
{'food': False, | |
'goodies_desc': 'A cushion shaped liked a chestnut ' | |
'burr、%rcomplete with prickles.%r[*Prickles are ' | |
'not actually prickly.]', | |
'goodies_desc_jap': 'イガの付いた栗型クッション%rクッションなので%r触っても痛くない', | |
'name': 'Chestnut Cushion', | |
'name_jap': 'いがぐりクッション', | |
'shop_desc': 'Ensconce your cats in the cozy confines%rof this ' | |
"autumnal cushion. They won't be%rable to keep " | |
'their eyes open!', | |
'shop_desc_jap': '秋の味覚に包まれて%r気づけば、うとうと…%rインテリアにも◎', | |
'spot': 0, | |
'type': 4, | |
'unk1': 31, | |
'unk2': 28, | |
'unk3': 29, | |
'unk4': 29, | |
'unk5': 29, | |
'unk7': 0, | |
'unk8': [20, 0, 20, 20, 0, 0, 0, 40, 0, 0, 20, 0]}), | |
(19, | |
{'food': False, | |
'goodies_desc': 'An overpriced cushion for only the ' | |
"most%rspoiled cats. Next you'll be adding " | |
'"lord"%ror "lady" to their names.', | |
'goodies_desc_jap': 'そこに座るだけで%r“様”づけしたくなるような%r無駄に高級なクッション', | |
'name': 'Zanzibar Cushion', | |
'name_jap': '高級クッション', | |
'shop_desc': 'A regal、 elaborately sewn throne fit%rfor ' | |
'royalty.', | |
'shop_desc_jap': '高級でエレガントなクッション%r気分は王様、お姫様%r座り心地も見た目もゴージャス', | |
'spot': 0, | |
'type': 4, | |
'unk1': 42, | |
'unk2': 39, | |
'unk3': 41, | |
'unk4': 41, | |
'unk5': 41, | |
'unk7': 0, | |
'unk8': [0, -30, 0, 0, 40, 0, 0, 0, 30, 20, 20, 0]}), | |
(20, | |
{'food': False, | |
'goodies_desc': 'The spongy material conforms to fit the%rbody ' | |
'of a cat.', | |
'goodies_desc_jap': 'かたちが自在に変わるので%rねこの身体にフィットする', | |
'name': 'Bean Bag', | |
'name_jap': 'ビーズクッション', | |
'shop_desc': 'Move over、 boring cushions! This bag is%rfilled ' | |
'with small beads that add a%rtotally extreme ' | |
'texture.', | |
'shop_desc_jap': 'ビーズの入ったクッション%rザクザクした感触が刺激的%r普通のクッションに飽きたらコレ', | |
'spot': 0, | |
'type': 4, | |
'unk1': 23, | |
'unk2': 20, | |
'unk3': 20, | |
'unk4': 20, | |
'unk5': 20, | |
'unk7': 0, | |
'unk8': [20, -30, 0, 0, 20, 0, 0, 0, 20, 0, 20, 0]}), | |
(47, | |
{'food': False, | |
'goodies_desc': 'This cushion is large and sturdy enough%rfor ' | |
'fiestas as well as siestas.', | |
'goodies_desc_jap': '大型のビーズクッション%rしっかりとした布地なので%r人も座れる丈夫さ', | |
'name': 'Giant Cushion', | |
'name_jap': 'ビッグクッション', | |
'shop_desc': "A monster cushion filled with beads. It's%rmade " | |
'of static-dampening material so your%rcats can ' | |
'romp without getting zapped.', | |
'shop_desc_jap': '大型のビーズクッション%r静電気がおこりにくい素材なので%r安心してごろごろしていただけます', | |
'spot': 0, | |
'type': 4, | |
'unk1': 25, | |
'unk2': 22, | |
'unk3': 22, | |
'unk4': 22, | |
'unk5': 22, | |
'unk7': 0, | |
'unk8': [20, -30, 0, 0, 20, 0, 0, 0, 20, 0, 20, 0]}), | |
(48, | |
{'food': False, | |
'goodies_desc': 'Felt patches beneath the base help%rreduce ' | |
'noise. The fabric seems sturdy%rand a little ' | |
'stiff.', | |
'goodies_desc_jap': '台の底にフェルトがついて%r防音になっている%r布地はすこし硬めで丈夫', | |
'name': 'Hammock (Yellow)', | |
'name_jap': 'ハンモック(黄)', | |
'shop_desc': 'A small hammock made of durable、%rstretchable ' | |
'fabric on a sturdy%rwobble-proof frame.', | |
'shop_desc_jap': '丈夫でやや伸びる布張りの%r小型ハンモック%rガタつき防止処理済みの台付き', | |
'spot': 0, | |
'type': 10, | |
'unk1': 115, | |
'unk2': 112, | |
'unk3': 130, | |
'unk4': 130, | |
'unk5': 130, | |
'unk7': 0, | |
'unk8': [0, 20, 0, -30, 0, 30, 0, 0, 0, 0, 0, 30]}), | |
(49, | |
{'food': False, | |
'goodies_desc': 'Felt patches beneath the base help%rreduce ' | |
'noise. The fabric seems soft%rand slightly ' | |
'warm.', | |
'goodies_desc_jap': '台の底にフェルトがついて%r防音になっている%r柔らかでほんのり暖かい', | |
'name': 'Hammock (Pink)', | |
'name_jap': 'ハンモック(桃)', | |
'shop_desc': 'A small hammock made of soft、 ' | |
'slightly%rstretchable fabric on a ' | |
'sturdy%rwobble-proof frame.', | |
'shop_desc_jap': '柔らかで少し伸びる布張りの%r小型ハンモック%rガタつき防止処理済みの台付き', | |
'spot': 0, | |
'type': 10, | |
'unk1': 116, | |
'unk2': 113, | |
'unk3': 131, | |
'unk4': 131, | |
'unk5': 131, | |
'unk7': 0, | |
'unk8': [0, 20, 0, -30, 0, 30, 0, 0, 0, 0, 0, 30]}), | |
(77, | |
{'food': False, | |
'goodies_desc': 'Felt patches beneath the base help ' | |
'reduce%rnoise. The woven-reed fabric is ' | |
'breathable%rand mildew-resistant.', | |
'goodies_desc_jap': '台の底にフェルトがついて%r防音になっている%r通気性もよく蒸れない', | |
'name': 'Hammock (Woven)', | |
'name_jap': 'ハンモック(ゴザ)', | |
'shop_desc': 'A small hammock made of finely woven%rreeds on a ' | |
'sturdy wobble-proof frame.', | |
'shop_desc_jap': '細かく編まれたゴザ張りの%r小型ハンモック%rガタつき防止処理済みの台付き', | |
'spot': 0, | |
'type': 10, | |
'unk1': 125, | |
'unk2': 122, | |
'unk3': 140, | |
'unk4': 140, | |
'unk5': 140, | |
'unk7': 0, | |
'unk8': [0, 20, 0, -50, 0, 30, 0, 30, 0, 0, 0, 30]}), | |
(50, | |
{'food': False, | |
'goodies_desc': 'The flexible base prevents any%rsqueaking or ' | |
'creaking in this%rfinely crafted hammock.', | |
'goodies_desc_jap': '少ししなる台になっていて%r多少の揺れではきしまない%r高品質のハンモック', | |
'name': 'Luxurious Hammock', | |
'name_jap': '高級ハンモック', | |
'shop_desc': 'A small but luxurious hammock made of%rsuperbly ' | |
'elastic cloth. The frame itself%rbends instead of ' | |
'wobbles.', | |
'shop_desc_jap': '絶妙に伸縮する布張りの%r小型高級ハンモック%r台自体がしなるためガタつかない', | |
'spot': 0, | |
'type': 10, | |
'unk1': 117, | |
'unk2': 114, | |
'unk3': 132, | |
'unk4': 132, | |
'unk5': 132, | |
'unk7': 0, | |
'unk8': [0, 20, 0, -30, 0, 30, 0, 0, 20, 20, 0, 30]}), | |
(104, | |
{'food': False, | |
'goodies_desc': 'A surprisingly sturdy tent in spite of%rits ' | |
'thin material. The fabric ripples%rin the ' | |
'wind.', | |
'goodies_desc_jap': '意外としっかりとした%r薄い生地のあるテント%r風でたなびく', | |
'name': 'Tent (Nature)', | |
'name_jap': 'ナチュラルテント', | |
'shop_desc': 'This pleasantly cool pop tent can be%rstored when ' | |
'not in use. The natural%rcolors are a breath of ' | |
'fresh air.', | |
'shop_desc_jap': '中はひんやり爽やか%r折りたたんで収納可能!%r自然な色が心地よい風を演出', | |
'spot': 0, | |
'type': 10, | |
'unk1': 122, | |
'unk2': 119, | |
'unk3': 139, | |
'unk4': 139, | |
'unk5': 139, | |
'unk7': 0, | |
'unk8': [0, 20, 0, 0, 0, 30, 0, 0, 0, 0, 0, 30]}), | |
(105, | |
{'food': False, | |
'goodies_desc': 'An impressive and somewhat imposing%rtent. The ' | |
'thick material keeps the%rinterior nice and ' | |
'dark.', | |
'goodies_desc_jap': '骨太の重みのあるテント%r厚みのある生地なので%r中は結構薄暗い', | |
'name': 'Tent (Modern Red)', | |
'name_jap': 'テント・レッドモダン', | |
'shop_desc': 'This pleasantly cool pop tent can be%rstored when ' | |
'not in use. The color%rscheme is best described ' | |
'as modern.', | |
'shop_desc_jap': '中はひんやり爽やか%r折りたたんで収納可能!%rアーティフィカルな色合い', | |
'spot': 0, | |
'type': 10, | |
'unk1': 123, | |
'unk2': 120, | |
'unk3': 139, | |
'unk4': 139, | |
'unk5': 139, | |
'unk7': 0, | |
'unk8': [0, 20, 0, 0, 0, 30, 0, 0, 0, 100, 0, 30]}), | |
(106, | |
{'food': False, | |
'goodies_desc': 'A normal tent despite its chilly%rappearance. ' | |
'You might say it looks%rmore "cold" than ' | |
'"cool."', | |
'goodies_desc_jap': '見た目以外は普通のテント%r涼しそうというより冷たそう?', | |
'name': 'Tent (Blizzard)', | |
'name_jap': 'テント・ブリザード', | |
'shop_desc': 'This pleasantly cool pop tent can be%rstored when ' | |
'not in use. This version%ris modeled after arctic ' | |
'igloos.', | |
'shop_desc_jap': '中はひんやり爽やか%r折りたたんで収納可能!%r氷のかまくらをイメージ', | |
'spot': 0, | |
'type': 10, | |
'unk1': 124, | |
'unk2': 121, | |
'unk3': 139, | |
'unk4': 139, | |
'unk5': 139, | |
'unk7': 0, | |
'unk8': [0, 50, 0, -50, 0, 30, 0, 0, 0, 0, 0, 30]}), | |
(103, | |
{'food': False, | |
'goodies_desc': 'Ancient Egyptians worshipped cats、%rand now ' | |
'you can、 too!', | |
'goodies_desc_jap': '生地に張りのあるテント%r風通しはいいみたい', | |
'name': 'Tent (Pyramid)', | |
'name_jap': 'テント・ピラミッド', | |
'shop_desc': 'This pleasantly cool pop tent can be%rstored when ' | |
"not in use. It's a tomb%rwith a view!", | |
'shop_desc_jap': '中はひんやり爽やか%r折りたたんで収納可能!%rこれなら暑さも関係ない!?', | |
'spot': 0, | |
'type': 10, | |
'unk1': 121, | |
'unk2': 118, | |
'unk3': 139, | |
'unk4': 139, | |
'unk5': 139, | |
'unk7': 0, | |
'unk8': [0, 20, 0, 0, 0, 30, 0, 0, 0, 0, 0, 30]}), | |
(56, | |
{'food': False, | |
'goodies_desc': 'A sock made out of a soft and ' | |
'stretchy%rmaterial.', | |
'goodies_desc_jap': 'よく伸び縮みする素材の%rもこもこのくつした', | |
'name': 'Warm Sock', | |
'name_jap': 'あったかくつした', | |
'shop_desc': 'A sock made of fluffy、 stretchy material%rfrom ' | |
'ankle to toe. One size fits all.', | |
'shop_desc_jap': 'ふんわりやわらか素材を使用%r足先まであったか%r伸縮性の高いフリーサイズ', | |
'spot': 0, | |
'type': 8, | |
'unk1': 118, | |
'unk2': 115, | |
'unk3': 133, | |
'unk4': 133, | |
'unk5': 133, | |
'unk7': 0, | |
'unk8': [0, -30, 0, 40, 20, 0, 0, 0, 30, 0, 30, 0]}), | |
(57, | |
{'food': False, | |
'goodies_desc': 'A sock made out of a soft and ' | |
'stretchy%rmaterial、 with cute pom-poms to ' | |
'boot.', | |
'goodies_desc_jap': 'よく伸び縮みする素材の%rもこもこのくつした%rボンボンがかわいい', | |
'name': 'Pom-pom Sock', | |
'name_jap': 'ぼんぼんくつした', | |
'shop_desc': 'A sock made of fluffy、 stretchy material%rfrom ' | |
'ankle to toe. One size fits all.', | |
'shop_desc_jap': 'ふんわりやわらか素材を使用%r足先まであったか%r伸縮性の高いフリーサイズ', | |
'spot': 0, | |
'type': 8, | |
'unk1': 119, | |
'unk2': 116, | |
'unk3': 134, | |
'unk4': 135, | |
'unk5': 134, | |
'unk7': 0, | |
'unk8': [0, -30, 0, 40, 20, 0, 0, 0, 30, 0, 30, 0]}), | |
(141, | |
{'food': False, | |
'goodies_desc': "Four out of five cats agree:%r'Tis the season " | |
'for fleece footwear.', | |
'goodies_desc_jap': 'よく伸び縮みする素材の%rもこもこのくつした%rムードのあるウィンターカラー', | |
'name': 'Colorful Sock', | |
'name_jap': 'カラフルくつした', | |
'shop_desc': 'Fluffy fleece footwear that will%rfill any cat ' | |
'with holiday cheer.', | |
'shop_desc_jap': 'ふんわりやわらか素材を使用%r足先まであったか%r伸縮性の高いフリーサイズ', | |
'spot': 0, | |
'type': 8, | |
'unk1': 120, | |
'unk2': 117, | |
'unk3': 136, | |
'unk4': 137, | |
'unk5': 136, | |
'unk7': 0, | |
'unk8': [0, -30, 0, 40, 20, 0, 0, 0, 30, 0, 30, 0]}), | |
(136, | |
{'food': False, | |
'goodies_desc': 'You kinda regret turning this cozy%rblanket ' | |
'over to the cats. ', | |
'goodies_desc_jap': '気づいたらねこ専用に%rなってしまった使い込んだ毛布', | |
'name': 'Arabesque Blanket', | |
'name_jap': '唐草柄毛布', | |
'shop_desc': 'A stylish blanket with a Middle-Eastern%rdesign. ' | |
'Essential on chilly winter days.', | |
'shop_desc_jap': '手軽にあったか%r寒い日も心地よく快適に%r過ごせる粋な唐草柄毛布', | |
'spot': 0, | |
'type': 4, | |
'unk1': 128, | |
'unk2': 125, | |
'unk3': 143, | |
'unk4': 144, | |
'unk5': 143, | |
'unk7': 1, | |
'unk8': [0, 0, 20, 0, 40, 0, 0, 40, 0, 0, 0, 0]}), | |
(100, | |
{'food': False, | |
'goodies_desc': 'A big umbrella that makes an even ' | |
'bigger%rstatement. The canopy is fashioned ' | |
'from%rtraditional Japanese paper.', | |
'goodies_desc_jap': '存在感抜群の大型傘%r傘の部分は和紙みたい', | |
'name': 'Paper Umbrella', | |
'name_jap': 'のだてがさ', | |
'shop_desc': 'Transform any room into a Japanese%rtea garden ' | |
'with this handcrafted%rpaper umbrella.', | |
'shop_desc_jap': '置くだけでお茶会の雰囲気%rどこに置いても和の空間に%r早変わり!', | |
'spot': 1, | |
'type': 10, | |
'unk1': 127, | |
'unk2': 124, | |
'unk3': 142, | |
'unk4': 142, | |
'unk5': 142, | |
'unk7': 0, | |
'unk8': [20, 0, 0, 0, 0, 40, 0, 100, 0, 0, 0, 0]}), | |
(101, | |
{'food': False, | |
'goodies_desc': 'Perfect for enjoying the surf or ' | |
'your%rbackyard turf、 this umbrella casts ' | |
'a%rwide shadow.', | |
'goodies_desc_jap': '大きな影を作ってくれる%rビーチで定番のパラソル', | |
'name': 'Beach Umbrella', | |
'name_jap': 'ビーチパラソル', | |
'shop_desc': "This canopy's breathable fabric blocks%rharmful " | |
'UV rays to keep your cats safe%rfrom sunburn.', | |
'shop_desc_jap': '日除けはもちろん風通しも抜群の%r繊維を使用しています%rUVカット加工も万全!', | |
'spot': 1, | |
'type': 10, | |
'unk1': 126, | |
'unk2': 123, | |
'unk3': 141, | |
'unk4': 141, | |
'unk5': 141, | |
'unk7': 0, | |
'unk8': [0, 30, 0, -50, 0, 40, 0, 0, 40, 0, 0, 30]}), | |
(21, | |
{'food': False, | |
'goodies_desc': 'A simple two-story cat tree. Basically、%ra ' | |
'bunk bed for cats. ', | |
'goodies_desc_jap': 'シンプルな2段のタワー%r実体は2段式のお昼寝ッド', | |
'name': 'Two-tier Cat Tree', | |
'name_jap': '2段式タワー', | |
'shop_desc': 'A basic two-story tower、 perfect for%rsome light ' | |
'cat acrobatics.', | |
'shop_desc_jap': 'シンプルな2段のタワー%r登ったりして遊ぼう', | |
'spot': 1, | |
'type': 5, | |
'unk1': 54, | |
'unk2': 51, | |
'unk3': 53, | |
'unk4': 53, | |
'unk5': 53, | |
'unk7': 0, | |
'unk8': [0, -30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20]}), | |
(22, | |
{'food': False, | |
'goodies_desc': 'A simple three-story cat tree. Basically、%ra ' | |
'triple bunk bed for cats. ', | |
'goodies_desc_jap': 'シンプルな3段のタワー%r実体は3段式のお昼寝ベッド', | |
'name': 'Three-tier Cat Tree', | |
'name_jap': '3段式タワー', | |
'shop_desc': 'Two trees connect into a three-tier%rtower. Twice ' | |
'the height means twice%rthe adventure!', | |
'shop_desc_jap': '2つ繋がった3段のタワー%r高さ2倍で楽しさも2倍%r落っこちないように注意しよう', | |
'spot': 1, | |
'type': 5, | |
'unk1': 55, | |
'unk2': 52, | |
'unk3': 54, | |
'unk4': 54, | |
'unk5': 54, | |
'unk7': 0, | |
'unk8': [0, -30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20]}), | |
(23, | |
{'food': False, | |
'goodies_desc': "You'll have a tough time evicting cats%rfrom " | |
"this two-tower complex. It's bound%rto attract " | |
'some tenants. ', | |
'goodies_desc_jap': '横にも大きなタワー%r沢山のねこがあつまってくる%rかもしれない', | |
'name': 'Cat Condo Complex', | |
'name_jap': 'アスレチックタワー', | |
'shop_desc': 'Two towers are more fun than one! Includes%ra ' | |
'cozy casa for post-workout catnaps.', | |
'shop_desc_jap': '立体的なアスレチックタワー%r1つで色々な遊び方が楽しめて%r健康にもGood!!', | |
'spot': 1, | |
'type': 5, | |
'unk1': 56, | |
'unk2': 53, | |
'unk3': 55, | |
'unk4': 55, | |
'unk5': 55, | |
'unk7': 0, | |
'unk8': [0, -30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20]}), | |
(24, | |
{'food': False, | |
'goodies_desc': 'Cat tree? More like a cat city! Expect%ryour ' | |
'house to become a cat capitol.', | |
'goodies_desc_jap': 'とくにかく大きなタワー%r沢山のねこがあつまってくる%rはず!', | |
'name': 'Cat Metropolis', | |
'name_jap': 'アスレチックEX', | |
'shop_desc': 'This cat city has it all: platforms、%rscratching ' | |
'posts、 and plenty of room to%rroam. Cats who ' | |
'visit will never leave!', | |
'shop_desc_jap': 'より立体的なアスレチックタワー%r複雑な形で遊びがさらに楽しくなる%r降りられなくならないようにご注意を', | |
'spot': 1, | |
'type': 5, | |
'unk1': 57, | |
'unk2': 54, | |
'unk3': 56, | |
'unk4': 56, | |
'unk5': 56, | |
'unk7': 0, | |
'unk8': [0, -30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20]}), | |
(68, | |
{'food': False, | |
'goodies_desc': "A cat toy for people who don't want " | |
"to%rsacrifice style. It's sturdily built、%rso " | |
"there's no fear of it toppling over.", | |
'goodies_desc_jap': '部屋を選ぶデザインのタワー%rつくりはしっかりしているので%r倒れる心配はなさそう', | |
'name': 'Art Deco Cat Tree', | |
'name_jap': 'モダンタワー', | |
'shop_desc': 'If Frank Lloyd Wright designed cat%rtoys、 it ' | |
'would look like this piece%rof modern art.', | |
'shop_desc_jap': 'おしゃれな雰囲気のタワー%rインテリアとしてもご利用いただけます', | |
'spot': 1, | |
'type': 5, | |
'unk1': 58, | |
'unk2': 55, | |
'unk3': 57, | |
'unk4': 57, | |
'unk5': 57, | |
'unk7': 0, | |
'unk8': [0, -30, 0, 0, 30, 0, 0, 0, 0, 100, 0, 0]}), | |
(114, | |
{'food': False, | |
'goodies_desc': 'Hewn from porous paulownia wood、 this%rbureau ' | |
'stays cool in summer and toasty%rin winter.', | |
'goodies_desc_jap': '通気性の良い桐材を%r使用しているため%r夏はひんやり冬はぬくぬく', | |
'name': 'Bureau with Pot', | |
'name_jap': '壷つき和箪笥', | |
'shop_desc': 'An elegant、 stair-shaped、 Japanese-style%rbureau ' | |
'with a flowery interior and a%rcypress finish.', | |
'shop_desc_jap': '前板は桧、内部は桐を使用した%r重厚な高級和箪笥階段%r', | |
'spot': 1, | |
'type': 5, | |
'unk1': 53, | |
'unk2': 50, | |
'unk3': 52, | |
'unk4': 52, | |
'unk5': 52, | |
'unk7': 0, | |
'unk8': [0, 20, 0, 20, 30, 0, 0, 100, 0, 0, 0, 0]}), | |
(25, | |
{'food': False, | |
'goodies_desc': "You'd think a cat would never fit%rinside、 but " | |
'somehow it does.%rCats are full of surprises.', | |
'goodies_desc_jap': 'つっかえそうでつっかえない%rねこたちの身体の不思議を%r垣間見ることができる筒', | |
'name': 'Tunnel (I Piece)', | |
'name_jap': 'トンネル(I型)', | |
'shop_desc': "A straight tunnel that's fun to crawl%rthrough. " | |
"If a cat can't fit、 it may be%rtime to cut down " | |
'on the Ritzy Bitz.', | |
'shop_desc_jap': 'I字型のトンネル%r出たり入ったりして遊ぼう%r通れなくなったら太り気味かも?', | |
'spot': 1, | |
'type': 5, | |
'unk1': 61, | |
'unk2': 58, | |
'unk3': 60, | |
'unk4': 60, | |
'unk5': 60, | |
'unk7': 0, | |
'unk8': [0, -30, 0, 20, 0, 0, 0, 0, 0, 0, 0, 20]}), | |
(26, | |
{'food': False, | |
'goodies_desc': "You'd think a cat would get stuck%rinside、 but " | |
"somehow it doesn't.%rCats sure are bendy.", | |
'goodies_desc_jap': 'ひっかかりそうでひっかからない%rねこたちの身体の柔らかさを%r実感できる曲がった筒', | |
'name': 'Tunnel (U Piece)', | |
'name_jap': 'トンネル(U型)', | |
'shop_desc': 'A tunnel shaped like the letter U.%rCreeping ' | |
'through the bend requires%rsome serious ' | |
'flexibility.', | |
'shop_desc_jap': 'U字型のトンネル%r曲がっているので少し難しくなった%r体が硬いと曲がれない', | |
'spot': 1, | |
'type': 5, | |
'unk1': 65, | |
'unk2': 62, | |
'unk3': 64, | |
'unk4': 64, | |
'unk5': 64, | |
'unk7': 0, | |
'unk8': [0, -30, 0, 20, 0, 0, 0, 0, 0, 0, 0, 20]}), | |
(27, | |
{'food': False, | |
'goodies_desc': "You'd think a cat wouldn't get lost%rinside、 " | |
'but somehow it does.%rCats sure are silly.', | |
'goodies_desc_jap': '迷わないはずなのに迷う%rねこたちのおちゃめさを%r観察できる筒', | |
'name': 'Tunnel (T Piece)', | |
'name_jap': 'トンネル(T型)', | |
'shop_desc': 'A tunnel shaped like the letter T.%rThe twin ' | |
'exits double the confusion!', | |
'shop_desc_jap': 'T字型のトンネル%r出口が2つで迷っちゃう', | |
'spot': 1, | |
'type': 5, | |
'unk1': 64, | |
'unk2': 61, | |
'unk3': 63, | |
'unk4': 63, | |
'unk5': 63, | |
'unk7': 0, | |
'unk8': [0, -30, 0, 20, 0, 0, 0, 0, 0, 0, 0, 20]}), | |
(28, | |
{'food': False, | |
'goodies_desc': 'Cats like to peek through the holes%rbefore ' | |
'picking an entrance. Where%rthey end up next ' | |
"is anyone's guess.", | |
'goodies_desc_jap': '穴があったら覗いてみる%r入ってみる%rそして中に潜んでみる', | |
'name': 'Tunnel (3D Piece)', | |
'name_jap': '立体型トンネル', | |
'shop_desc': "A tunnel that bends every which way.%rIt's like a " | |
'secret world that your cat will%rnever get sick ' | |
'of exploring.', | |
'shop_desc_jap': '立体的なトンネル%r複雑な形はまるで秘密基地%r飽きずに何度でも楽しめる', | |
'spot': 1, | |
'type': 5, | |
'unk1': 59, | |
'unk2': 56, | |
'unk3': 58, | |
'unk4': 58, | |
'unk5': 58, | |
'unk7': 0, | |
'unk8': [0, -30, 0, 20, 0, 0, 0, 0, 0, 0, 0, 20]}), | |
(66, | |
{'food': False, | |
'goodies_desc': 'Just a cat tunnel with a carp pattern%rpainted ' | |
"onto it. The cats probably won't%reven notice.", | |
'goodies_desc_jap': 'トンネルのおもちゃに%r鯉のぼりの柄をつけただけ%rねこたちには関係ないかもしれない', | |
'name': 'Carp Tunnel', | |
'name_jap': '鯉のぼりトンネル', | |
'shop_desc': 'A tunnel modeled after a wind sock modeled%rafter ' | |
'a carp. Perhaps the fish scales will%rstimulate ' | |
'the cats?', | |
'shop_desc_jap': '鯉のぼりのトンネル%r魚の模様がねこたちを刺激する?!', | |
'spot': 1, | |
'type': 5, | |
'unk1': 63, | |
'unk2': 60, | |
'unk3': 62, | |
'unk4': 62, | |
'unk5': 62, | |
'unk7': 0, | |
'unk8': [50, -30, 0, 0, 0, 20, 0, 0, 0, 0, 0, 20]}), | |
(78, | |
{'food': False, | |
'goodies_desc': 'Just a cat tunnel with a fish-cake%rpattern ' | |
"painted onto it. The cats%rprobably won't even " | |
'notice.', | |
'goodies_desc_jap': 'トンネルのおもちゃに%rちくわ柄をつけただけ%rねこたちには関係ないかもしれない', | |
'name': 'Fish-stick Tunnel', | |
'name_jap': 'ちくわトンネル', | |
'shop_desc': 'A tunnel inspired by a piece of processed%rfish. ' | |
"It's the sort of thing kitty dreams%rare made of.", | |
'shop_desc_jap': 'ちくわを模したトンネル%r夢のように大きなちくわで%r思う存分に楽しもう', | |
'spot': 1, | |
'type': 5, | |
'unk1': 62, | |
'unk2': 59, | |
'unk3': 61, | |
'unk4': 61, | |
'unk5': 61, | |
'unk7': 0, | |
'unk8': [50, -30, 0, 0, 20, 0, 0, 0, 0, 0, 0, 20]}), | |
(79, | |
{'food': False, | |
'goodies_desc': 'A high-concept tunnel toy.%rHey、 it sounded ' | |
'good on paper...', | |
'goodies_desc_jap': 'コンセプト自体が謎な%r筒型のおもちゃ%rねこが来てこそ完成するらしい', | |
'name': 'Cow Tunnel', | |
'name_jap': 'トンネルホルスタイン', | |
'shop_desc': "Cows are the world's most productive%rdairy " | |
'animal. Cats love milk.%rErgo、 cats will enjoy ' | |
'this toy.', | |
'shop_desc_jap': 'あなたのねこちゃんが牛に!?%r遊んでいる姿はもはや牛!', | |
'spot': 1, | |
'type': 5, | |
'unk1': 66, | |
'unk2': 63, | |
'unk3': 65, | |
'unk4': 65, | |
'unk5': 65, | |
'unk7': 0, | |
'unk8': [0, -30, 0, 0, 0, 20, 0, 0, 0, 0, 0, 40]}), | |
(126, | |
{'food': False, | |
'goodies_desc': 'Your cats will go gaga over the ' | |
"doughnut%rtunnel's insides; you'll love the " | |
'doughnut%rpattern on the outside. Win-win!', | |
'goodies_desc_jap': '筒の部分よりも%rドーナツの穴の部分が%r気になってしょうがない', | |
'name': 'Doughnut Tunnel', | |
'name_jap': 'ドーナツトンネル', | |
'shop_desc': 'This giant piece of junkfood is actually%ran ' | |
'excellent source of exercise.', | |
'shop_desc_jap': '斬新!ドーナツ型トンネル%r遊び心地は見た目の可愛さ以上', | |
'spot': 1, | |
'type': 5, | |
'unk1': 60, | |
'unk2': 57, | |
'unk3': 59, | |
'unk4': 59, | |
'unk5': 59, | |
'unk7': 0, | |
'unk8': [0, -30, 0, 20, 20, 0, 0, 0, 0, 0, 0, 100]}), | |
(29, | |
{'food': False, | |
'goodies_desc': 'The most basic of cat toys. Even though%rthey ' | |
'always want to play with it、 most%rcats get ' | |
'tired of it in ten seconds.', | |
'goodies_desc_jap': '定番中の定番のグッズ%r何度も遊びたがるくせに%r遊びだすとすぐに飽きる', | |
'name': 'Tail-thing Teaser', | |
'name_jap': 'ねこじゃらし', | |
'shop_desc': 'Cats feel compelled to leap at this%rteaser. ' | |
'Their fitness level will improve%rby leaps and ' | |
'bounds!', | |
'shop_desc_jap': '思わず飛びつきたくなる魅惑のフリフリ%r遊び始めると疲れるまで離さない', | |
'spot': 0, | |
'type': 6, | |
'unk1': 79, | |
'unk2': 76, | |
'unk3': 90, | |
'unk4': 91, | |
'unk5': 90, | |
'unk7': 0, | |
'unk8': [0, 0, 40, 0, 0, 20, 30, 0, 0, 0, 0, 0]}), | |
(30, | |
{'food': False, | |
'goodies_desc': 'Anything with feathers triggers ' | |
'ancient%rfeline instincts. This is sure to ' | |
'get%rsome kind of reaction.', | |
'goodies_desc_jap': '本能がそうさせるのか%r羽のフサフサに反応大', | |
'name': 'Wing-thing Teaser', | |
'name_jap': '羽根じゃらし', | |
'shop_desc': 'Mild curiosity will turn into obsession%ronce ' | |
'your cat starts pouncing on this%rtufted teaser.', | |
'shop_desc_jap': '飛びつかずにはられない至高のフサフサ%r好奇心をくすぐり夢中にさせる', | |
'spot': 0, | |
'type': 6, | |
'unk1': 69, | |
'unk2': 66, | |
'unk3': 71, | |
'unk4': 72, | |
'unk5': 71, | |
'unk7': 0, | |
'unk8': [0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 20]}), | |
(54, | |
{'food': False, | |
'goodies_desc': 'No cat can resist an exploratory pounce%rat ' | |
'this mysterious ball of fur.', | |
'goodies_desc_jap': '得体の知れない毛玉に%rとりあえずちょっかいを%r出してみたいらしい', | |
'name': 'Wild-thing Teaser', | |
'name_jap': '毛玉じゃらし', | |
'shop_desc': 'Talk about a big tease! Just try to stop%ryour ' | |
'cats from pouncing at this fluffy%rfur ball.', | |
'shop_desc_jap': 'ついつい手が出るフワフワ毛玉%r何度でもじゃらされてしまう', | |
'spot': 0, | |
'type': 6, | |
'unk1': 70, | |
'unk2': 67, | |
'unk3': 73, | |
'unk4': 74, | |
'unk5': 73, | |
'unk7': 0, | |
'unk8': [0, -30, 0, 20, 20, 0, 0, 20, 0, 0, 0, 0]}), | |
(116, | |
{'food': False, | |
'goodies_desc': "You're starting to worry your cats might%rhave " | |
'a problem with this thing.', | |
'goodies_desc_jap': 'じゃれるねこに%r怪我をしないか少しハラハラ', | |
'name': 'Zebra Grass Gadget', | |
'name_jap': 'すすきじゃらし', | |
'shop_desc': 'Watch your cats fascination turn to%robsession. ' | |
"It has a fluffy teaser tip%rthey just. Can't. " | |
'Resist.', | |
'shop_desc_jap': '我を忘れてじゃれてしまう%rホワホワな穂先に%r逃れることはできません!', | |
'spot': 0, | |
'type': 6, | |
'unk1': 78, | |
'unk2': 75, | |
'unk3': 88, | |
'unk4': 89, | |
'unk5': 88, | |
'unk7': 0, | |
'unk8': [0, 0, 40, 0, 0, 20, 0, 20, 0, 0, 0, 0]}), | |
(31, | |
{'food': False, | |
'goodies_desc': 'A fake mouse that scurries when you pull%ra ' | |
'string on a stick. Let them play with%rthis ' | |
'before chasing the real thing.', | |
'goodies_desc_jap': '作り物のねずみさん%rヒモで繋がった棒で動かす%r本物を捕まえてくる前に遊んであげよう', | |
'name': 'Mister Mouse', | |
'name_jap': 'ねずみさん', | |
'shop_desc': 'Cats and mice are ancestral enemies、%rso this toy ' | |
"is sure to tickle your visitors'%rpredatory " | |
'instincts.', | |
'shop_desc_jap': '本能をくすぐるフォルムで%rねこたちのハートをキャッチ!', | |
'spot': 0, | |
'type': 6, | |
'unk1': 76, | |
'unk2': 73, | |
'unk3': 85, | |
'unk4': 86, | |
'unk5': 85, | |
'unk7': 0, | |
'unk8': [0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0]}), | |
(32, | |
{'food': False, | |
'goodies_desc': 'The device is designed to yank the%rdragonfly ' | |
"up high so that cats can't%rreach it without " | |
'jumping.', | |
'goodies_desc_jap': '組み立てると%rトンボが高い位置にくるので%rジャンプしないと届かない', | |
'name': 'Mister Dragonfly', | |
'name_jap': 'トンボくん', | |
'shop_desc': 'Your cats will stare like zombies every%rtime the ' | |
'light bounces off of its%riridescent wings.', | |
'shop_desc_jap': '光る翅が動くたびに乱反射%rキラキラ翅に目がランラン', | |
'spot': 0, | |
'type': 6, | |
'unk1': 75, | |
'unk2': 72, | |
'unk3': 83, | |
'unk4': 84, | |
'unk5': 83, | |
'unk7': 0, | |
'unk8': [0, 0, 20, 0, 0, 20, 0, 0, 0, 0, 0, 0]}), | |
(69, | |
{'food': False, | |
'goodies_desc': "A mouse-shaped toy that triggers a%rcat's " | |
'batting instincts.', | |
'goodies_desc_jap': 'なぜか本能をくすぐられる%rちょうど良い大きさと弾力の%rねずみ型のけりぐるみ', | |
'name': 'Kick Toy (Mouse)', | |
'name_jap': 'けりぐるみ(ねずみ)', | |
'shop_desc': 'A stuffed animal that’s more fun to kick%rthan ' | |
'hug thanks to its long、 skinny body.', | |
'shop_desc_jap': 'ねこキック用のぬいぐるみ%r細長い形状で抱き心地%rケリ心地抜群!', | |
'spot': 0, | |
'type': 6, | |
'unk1': 71, | |
'unk2': 68, | |
'unk3': 75, | |
'unk4': 76, | |
'unk5': 75, | |
'unk7': 0, | |
'unk8': [0, 0, 0, 0, 20, 0, 30, 0, 0, 0, 0, 0]}), | |
(70, | |
{'food': False, | |
'goodies_desc': "A fish-shaped toy that triggers a%rcat's " | |
'batting instincts.', | |
'goodies_desc_jap': 'なぜか本能をくすぐられる%rちょうど良い大きさと弾力の%rお魚型のけりぐるみ', | |
'name': 'Kick Toy (Fish)', | |
'name_jap': 'けりぐるみ(お魚)', | |
'shop_desc': 'A stuffed animal that’s more fun to kick%rthan ' | |
'hug thanks to its long、 skinny body.', | |
'shop_desc_jap': 'ねこキック用のぬいぐるみ%r細長い形状で抱き心地%rケリ心地抜群!', | |
'spot': 0, | |
'type': 6, | |
'unk1': 72, | |
'unk2': 69, | |
'unk3': 77, | |
'unk4': 78, | |
'unk5': 77, | |
'unk7': 0, | |
'unk8': [0, 0, 0, 0, 20, 0, 30, 0, 0, 0, 0, 0]}), | |
(71, | |
{'food': False, | |
'goodies_desc': "A bunny-shaped toy that triggers a%rcat's " | |
'batting instincts.', | |
'goodies_desc_jap': 'なぜか本能をくすぐられる%rちょうど良い大きさと弾力の%rうさぎ型のけりぐるみ', | |
'name': 'Kick Toy (Bunny)', | |
'name_jap': 'けりぐるみ(うさぎ)', | |
'shop_desc': 'A stuffed animal that’s more fun to kick%rthan ' | |
'hug thanks to its long、 skinny body.', | |
'shop_desc_jap': 'ねこキック用のぬいぐるみ%r細長い形状で抱き心地%rケリ心地抜群!', | |
'spot': 0, | |
'type': 6, | |
'unk1': 74, | |
'unk2': 71, | |
'unk3': 81, | |
'unk4': 82, | |
'unk5': 81, | |
'unk7': 0, | |
'unk8': [0, 0, 0, 0, 20, 0, 30, 0, 0, 0, 0, 0]}), | |
(115, | |
{'food': False, | |
'goodies_desc': 'A fish-shaped toy that triggers a ' | |
"cat's%rbatting instincts.", | |
'goodies_desc_jap': 'なぜか本能をくすぐられる%rちょうど良い大きさと弾力の%r秋の味覚仕様のけりぐるみ', | |
'name': 'Kick Toy (Saury)', | |
'name_jap': 'けりぐるみ(サンマ)', | |
'shop_desc': 'A stuffed animal that’s more fun to kick%rthan ' | |
'hug thanks to its long、 skinny body.', | |
'shop_desc_jap': 'ねこキック用のぬいぐるみ%r細長い形状で抱き心地%rケリ心地抜群!', | |
'spot': 0, | |
'type': 6, | |
'unk1': 73, | |
'unk2': 70, | |
'unk3': 79, | |
'unk4': 80, | |
'unk5': 79, | |
'unk7': 0, | |
'unk8': [0, 0, 20, 0, 0, 0, 0, 30, 0, 0, 0, 0]}), | |
(33, | |
{'food': False, | |
'goodies_desc': 'This toy starts buzzing around as soon as%ryou ' | |
"set it down. It's practically begging%rfor a " | |
'good pouncing!', | |
'goodies_desc_jap': '設置するとぐるぐる回る%r狙いを定めているうちに%r目が回っちゃいそう', | |
'name': 'Busy Bee', | |
'name_jap': '自動ぶんぶん丸', | |
'shop_desc': 'A motorized flying bug that buzzes%rhither and ' | |
"thither、 kicking a cat's%rhunting instincts into " | |
'high gear.', | |
'shop_desc_jap': '自動で動く虫型のおもちゃ%r狩猟本能を刺激する一品', | |
'spot': 0, | |
'type': 6, | |
'unk1': 67, | |
'unk2': 64, | |
'unk3': 66, | |
'unk4': 67, | |
'unk5': 68, | |
'unk7': 0, | |
'unk8': [0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0]}), | |
(80, | |
{'food': False, | |
'goodies_desc': 'Your cats will become a blur the second%rthey ' | |
'see those little wings whir.', | |
'goodies_desc_jap': '風でひらひらと動く%r細かく動く翅を捕まえたい%r衝動にかられるらしい', | |
'name': 'Butterfly Swarm', | |
'name_jap': '蝶々じゃらし', | |
'shop_desc': 'These toy butterflies flap around like%rthe real ' | |
'deal. What cat could resist%rthe temptation to ' | |
'catch one?', | |
'shop_desc_jap': 'まるで蝶のようにひらひらと動き%r捕まえずにはいられない!', | |
'spot': 0, | |
'type': 6, | |
'unk1': 68, | |
'unk2': 65, | |
'unk3': 69, | |
'unk4': 70, | |
'unk5': 69, | |
'unk7': 0, | |
'unk8': [30, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0]}), | |
(34, | |
{'food': False, | |
'goodies_desc': 'The green ball appears and disappears%rfrom ' | |
"your cat's view. They just can't%rresist " | |
'hitting it one more time.', | |
'goodies_desc_jap': '緑のボールが行ったり来たり%r見えたり見えなかったり%rついつい何度もつついちゃう', | |
'name': 'Twisty Rail', | |
'name_jap': 'あっちこっちレール', | |
'shop_desc': 'Cats will have a blast batting the ball%rback and ' | |
'forth in this train rail.', | |
'shop_desc_jap': 'ボールを動かして遊ぶおもちゃ%rレールの中を押したボールが転がっていく%rコロコロ転がして遊ぼう', | |
'spot': 1, | |
'type': 6, | |
'unk1': 77, | |
'unk2': 74, | |
'unk3': 87, | |
'unk4': 87, | |
'unk5': 87, | |
'unk7': 0, | |
'unk8': [0, 0, 0, 0, 30, 0, 0, 0, 20, 0, 20, 20]}), | |
(43, | |
{'food': False, | |
'goodies_desc': "It's locked at a low temperature so%rthere's " | |
'no risk of harming the cats.%rThe tabletop ' | |
'gradually heats up too.', | |
'goodies_desc_jap': '設定温度も控えめなので%rのぼせる心配なし%r天板もじんわり暖かい', | |
'name': 'Kotatsu', | |
'name_jap': 'こたつ', | |
'shop_desc': 'A Japanese-style heated table made just%rfor ' | |
'cats、 especially in winter. Good luck%rgetting ' | |
'them out from underneath it!', | |
'shop_desc_jap': 'ねこ専用こたつ%rあったかふとんから抜け出せない!%r冬の定番といえばこれ', | |
'spot': 1, | |
'type': 8, | |
'unk1': 108, | |
'unk2': 105, | |
'unk3': 123, | |
'unk4': 123, | |
'unk5': 123, | |
'unk7': 0, | |
'unk8': [0, -50, 0, 50, 50, 0, 30, 30, 20, 0, 0, 0]}), | |
(52, | |
{'food': False, | |
'goodies_desc': "It's pretty small、 so the cats won't " | |
'have%rmuch room to stretch out.', | |
'goodies_desc_jap': '小スペースなので%r場所を選ばない', | |
'name': 'Hot Mat (Small)', | |
'name_jap': 'ホットカーペットS', | |
'shop_desc': 'A small mat that delivers a lot of heat.%rSaves ' | |
'on electricity bills、 too!', | |
'shop_desc_jap': '小さいけれどしっかりした暖かさ%rしかも省エネ!%r', | |
'spot': 0, | |
'type': 8, | |
'unk1': 107, | |
'unk2': 104, | |
'unk3': 122, | |
'unk4': 122, | |
'unk5': 122, | |
'unk7': 0, | |
'unk8': [0, -40, 0, 40, 30, 0, 30, 0, 20, 0, 0, 0]}), | |
(53, | |
{'food': False, | |
'goodies_desc': 'The mat is warm、 soft、 and offers plenty%rof ' | |
'room to stretch out or roll around.', | |
'goodies_desc_jap': 'ふんわりとした感触で%rすわるもよし、伸びるもよし%rころがるもよし!', | |
'name': 'Hot Mat (Large)', | |
'name_jap': 'ホットカーペットL', | |
'shop_desc': 'A fairly big heat mat. Multiple layers%rof ' | |
'insulation keep the hot side hot.', | |
'shop_desc_jap': 'すこし大きめのホットカーペット%r断熱素材入りの多重層構造で%r熱を逃がさず抜群の保温性', | |
'spot': 1, | |
'type': 8, | |
'unk1': 106, | |
'unk2': 103, | |
'unk3': 121, | |
'unk4': 121, | |
'unk5': 121, | |
'unk7': 0, | |
'unk8': [0, -40, 0, 40, 30, 0, 30, 0, 20, 0, 0, 0]}), | |
(58, | |
{'food': False, | |
'goodies_desc': 'A kerosene-burning stove that will warm%rany ' | |
"cat's cockles.", | |
'goodies_desc_jap': '灯油をいれるタイプのストーブ%r天板でなんでも温めれられる', | |
'name': 'Heating Stove', | |
'name_jap': 'ストーブ', | |
'shop_desc': 'This old-school kerosene stove is nothing%rfancy、 ' | |
'but it sure warms up a room.', | |
'shop_desc_jap': 'むかしながらの灯油タイプの%rストーブでほっこりしてみませんか?', | |
'spot': 1, | |
'type': 8, | |
'unk1': 110, | |
'unk2': 107, | |
'unk3': 125, | |
'unk4': 125, | |
'unk5': 125, | |
'unk7': 0, | |
'unk8': [0, -50, 0, 50, 0, 20, 0, 0, 30, 20, 0, 30]}), | |
(59, | |
{'food': False, | |
'goodies_desc': 'A heater that gently warms up ' | |
'everything%raround it. The spot right in front ' | |
'is%rprime seating for cats.', | |
'goodies_desc_jap': 'じんわりと周りから%r暖めてくれるヒーター%r正面はねこたちの特等席', | |
'name': 'Panel Heater', | |
'name_jap': 'パネルヒーター', | |
'shop_desc': 'The penetrating warmth of this%rsvelte heater ' | |
'might attract cats%rfrom neighboring states.', | |
'shop_desc_jap': '体を芯から暖める%rひだまりのような暖かさで%rねこちゃんを惹きつけます', | |
'spot': 1, | |
'type': 8, | |
'unk1': 109, | |
'unk2': 106, | |
'unk3': 124, | |
'unk4': 124, | |
'unk5': 124, | |
'unk7': 0, | |
'unk8': [0, -50, 0, 50, 30, 0, 0, 0, 0, 0, 30, 0]}), | |
(60, | |
{'food': False, | |
'goodies_desc': "Cats don't understand how this " | |
'strange%rmachine generates gales of hot ' | |
"wind、%rbut they're cool with it anyway.", | |
'goodies_desc_jap': '暖かい風を吹き出す不思議な装置を%rとても柔軟に受け入れてくれます', | |
'name': 'Space Heater', | |
'name_jap': 'ファンヒーター', | |
'shop_desc': "This heater's powerful fans banish chilly%rair " | |
'and cold drafts.', | |
'shop_desc_jap': '力強い温風が寒さを一気に%r吹き飛ばしてくれます', | |
'spot': 1, | |
'type': 8, | |
'unk1': 105, | |
'unk2': 102, | |
'unk3': 120, | |
'unk4': 120, | |
'unk5': 120, | |
'unk7': 0, | |
'unk8': [0, -50, 0, 50, 30, 0, 30, 0, 0, 0, 0, 0]}), | |
(107, | |
{'food': False, | |
'goodies_desc': 'Who knows if Pepper can read feline%remotions、 ' | |
'but he sure is warm to the%rtouch. [*For ' | |
'indoor-use only.]', | |
'goodies_desc_jap': 'ねこたちの気持ちまで%rよみ取ってくれるか分からないが%r触れるとほんのり暖かい【※室内専用グッズ※】', | |
'name': 'Pepper', | |
'name_jap': 'Pepper', | |
'shop_desc': 'A personal robo-pal programmed to read%remotions. ' | |
'Pepper will treat your felines%rlike family. ' | |
'[*For indoor-use only.]', | |
'shop_desc_jap': '感情認識型パーソナルロボット%rねこたちをあたたかく%r見守ってくれます【※室内専用グッズ※】', | |
'spot': 1, | |
'type': 8, | |
'unk1': 129, | |
'unk2': 126, | |
'unk3': 145, | |
'unk4': 145, | |
'unk5': 145, | |
'unk7': 0, | |
'unk8': [0, 0, 0, 40, 50, -50, 0, 0, 0, 0, 100, 0]}), | |
(117, | |
{'food': False, | |
'goodies_desc': 'You feel a twinge of nostalgia when you%rlook ' | |
'at this pile of leaves. Would anyone%rnotice ' | |
'if you jumped in?', | |
'goodies_desc_jap': 'どこかおセンチになってしまう%r紅葉をまじえた%r布製落ち葉山', | |
'name': 'Pile of Leaves', | |
'name_jap': 'ぽんぽん落ち葉山', | |
'shop_desc': 'Felt leaves sewn together to create%ra soft、 warm ' | |
'pile. Now your cats can%renjoy the fall all year ' | |
'round.', | |
'shop_desc_jap': '紅葉柄のフェルトを縫い合わせて%r軽く肌触りが良くあったかい%r秋を全身で感じられます!', | |
'spot': 0, | |
'type': 8, | |
'unk1': 40, | |
'unk2': 37, | |
'unk3': 38, | |
'unk4': 39, | |
'unk5': 38, | |
'unk7': 0, | |
'unk8': [-30, 0, 30, 0, 0, 30, 0, 30, 0, 0, 0, 0]}), | |
(35, | |
{'food': False, | |
'goodies_desc': 'Transforming this paper bag into a cat%rtoy is ' | |
'easy: Just add a cat.', | |
'goodies_desc_jap': '普通の紙袋%r使い方ひとつでおもちゃに早変わり%r破けてしまわないように注意しよう', | |
'name': 'Paper Bag', | |
'name_jap': '紙ぶくろ', | |
'shop_desc': 'A normal paper bag. Place it%rand--presto!--a cat ' | |
'will soon%rappear inside it as if by magic!', | |
'shop_desc_jap': '普通の紙袋%r置いておくといつの間にか入っている%r紙袋の魔力', | |
'spot': 0, | |
'type': 9, | |
'unk1': 80, | |
'unk2': 77, | |
'unk3': 92, | |
'unk4': 92, | |
'unk5': 92, | |
'unk7': 0, | |
'unk8': [0, -20, 0, 20, 0, 20, 30, 0, 0, 0, 0, 0]}), | |
(36, | |
{'food': False, | |
'goodies_desc': 'Transforming this plastic bag into a cat%rtoy ' | |
'is easy: Just add a cat. Then make%rsure they ' | |
"don't try to eat it.", | |
'goodies_desc_jap': 'いたって普通のビニール袋%r工夫ひとつでおもちゃに早変わり%r食べられないように注意しよう', | |
'name': 'Plastic Bag', | |
'name_jap': 'ビニールぶくろ', | |
'shop_desc': 'A normal plastic bag. Place it%rand--presto!--a ' | |
'cat will soon%rappear inside it as if by magic!', | |
'shop_desc_jap': '普通のビニール袋%r置いておくといつの間にか戯れている%rビニール袋の魔力', | |
'spot': 0, | |
'type': 9, | |
'unk1': 81, | |
'unk2': 78, | |
'unk3': 93, | |
'unk4': 93, | |
'unk5': 93, | |
'unk7': 0, | |
'unk8': [0, 0, 0, 0, 0, 20, 30, 0, 0, 0, 0, 0]}), | |
(37, | |
{'food': False, | |
'goodies_desc': 'Essentially a scratching post that lays%rflat ' | |
'on the ground. Vital for keeping cat%rclaws ' | |
'from growing into cat talons.', | |
'goodies_desc_jap': '地面に置くタイプの爪とぎ%r爪が伸びすぎないための必需品', | |
'name': 'Scratching Board', | |
'name_jap': '横置き爪とぎ', | |
'shop_desc': 'A chunk of two-by-four covered with fabric%rthat ' | |
'your cats can sink their claws into.%rBuy one to ' | |
'curb those razor-sharp paws.', | |
'shop_desc_jap': '横置き置くタイプの爪とぎ%r爪が伸びすぎないための必需品%rお買い忘れないよう', | |
'spot': 0, | |
'type': 6, | |
'unk1': 90, | |
'unk2': 87, | |
'unk3': 102, | |
'unk4': 102, | |
'unk5': 102, | |
'unk7': 0, | |
'unk8': [0, 0, 0, 0, 0, 20, 30, 0, 0, 0, 0, 0]}), | |
(38, | |
{'food': False, | |
'goodies_desc': 'A standing scratching post that cats ' | |
'can%rclutch from a seated or standing ' | |
'position.', | |
'goodies_desc_jap': '垂直に置けるタイプの爪とぎ%r重力を利用して爪がとげる!%rこれは楽!', | |
'name': 'Scratching Post', | |
'name_jap': '縦型縄爪とぎ', | |
'shop_desc': 'A slightly pricey standing scratching%rpost that ' | |
'allows cats to scratch from a%rnatural posture.', | |
'shop_desc_jap': '少し高価な縦型の爪とぎ%r自然な体勢で爪がとげる優れもの%rバリバリお手入れしよう', | |
'spot': 0, | |
'type': 6, | |
'unk1': 89, | |
'unk2': 86, | |
'unk3': 101, | |
'unk4': 101, | |
'unk5': 101, | |
'unk7': 0, | |
'unk8': [0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0]}), | |
(39, | |
{'food': False, | |
'goodies_desc': 'The genuine article、 for those with%rexpensive ' | |
'tastes. This log adds a touch%rof the great ' | |
'outdoors to your yard.', | |
'goodies_desc_jap': '本格高級志向%r堂々たる佇まい%rとても渋い', | |
'name': 'Scratching Log', | |
'name_jap': '高級丸太爪とぎ', | |
'shop_desc': 'An extremely pricey scratching post made%rof ' | |
'hardwood. For discerning cats who%rdemand the ' | |
'real thing.', | |
'shop_desc_jap': 'とても高価な丸太の爪とぎ%r爪とぎの心地よさが段違い%r本物のわかるねこちゃんに', | |
'spot': 0, | |
'type': 6, | |
'unk1': 88, | |
'unk2': 85, | |
'unk3': 100, | |
'unk4': 100, | |
'unk5': 100, | |
'unk7': 0, | |
'unk8': [0, 0, 0, 0, 0, 30, 0, 40, 0, 0, 0, 0]}), | |
(55, | |
{'food': False, | |
'goodies_desc': 'Fruit basket? More like "feline basket"%ronce ' | |
'your cats get a load of this thing. ', | |
'goodies_desc_jap': 'そこに収まるべきはくだもの%rだけではないことを教えてくれる', | |
'name': 'Fruit Basket', | |
'name_jap': '果物カゴ', | |
'shop_desc': 'A basket made to display fruit in an%rappetizing ' | |
'manner.', | |
'shop_desc_jap': 'いろんな果物をおいしそうに%r見せることができるカゴ', | |
'spot': 0, | |
'type': 9, | |
'unk1': 96, | |
'unk2': 93, | |
'unk3': 109, | |
'unk4': 109, | |
'unk5': 109, | |
'unk7': 0, | |
'unk8': [20, 0, 0, 0, 0, 0, 0, 0, 30, 20, 0, 30]}), | |
(40, | |
{'food': False, | |
'goodies_desc': 'A basic earthenware pot、 with just%renough ' | |
'space inside for a cat to curl%rup and fall ' | |
'asleep.', | |
'goodies_desc_jap': 'ごく普通の土鍋%r置いているとねこが中に入ってくる%r丸まって寝ることもできる', | |
'name': 'Earthenware Pot', | |
'name_jap': '土鍋', | |
'shop_desc': 'The base of this pot is exactly the right%rsize ' | |
"for a cat. Now wouldn't that make a%rcute " | |
'picture!', | |
'shop_desc_jap': '底の形が体にフィット%rあの写真を撮っちゃおう!', | |
'spot': 0, | |
'type': 9, | |
'unk1': 98, | |
'unk2': 95, | |
'unk3': 112, | |
'unk4': 112, | |
'unk5': 112, | |
'unk7': 0, | |
'unk8': [0, 0, 20, 20, 30, 0, 30, 30, 0, 0, 0, 0]}), | |
(140, | |
{'food': False, | |
'goodies_desc': 'An extra-large、 extra-fancy lacquered%rbowl ' | |
'that just happens to be the%rperfect size for ' | |
'a cat.', | |
'goodies_desc_jap': 'ねこも入れちゃう大きさの%r特大漆塗りの高級お碗', | |
'name': 'Lacquered Bowl', | |
'name_jap': '漆塗り高級お碗', | |
'shop_desc': 'A fine lacquered bowl with a%rtimeless style ' | |
'(i.e.、 class that lasts).', | |
'shop_desc_jap': '選び抜いた素材でのみ作られた%r最高級の漆塗りお碗%r末永くご利用いただけます', | |
'spot': 0, | |
'type': 9, | |
'unk1': 104, | |
'unk2': 101, | |
'unk3': 118, | |
'unk4': 119, | |
'unk5': 118, | |
'unk7': 0, | |
'unk8': [0, 0, 0, 0, 30, 0, 0, 30, 0, 0, 0, 0]}), | |
(63, | |
{'food': False, | |
'goodies_desc': "The sort of pot you'd expect to collect%rdust " | |
"in a cat-free home. But this one's%rready for " | |
'cat-attraction action.', | |
'goodies_desc_jap': 'お漬物が入ってそうな%rそれっぽい感じのつぼ%r未使用なのでにおいは無い', | |
'name': 'Clay Pot', | |
'name_jap': '壷', | |
'shop_desc': 'A pot that keeps its contents at a%rconstant ' | |
'temperature. Bound to%rbecome the next cat hot ' | |
'spot.', | |
'shop_desc_jap': '中の温度を一定に保ってくれる%r発酵食品の保存にぴったり!', | |
'spot': 0, | |
'type': 9, | |
'unk1': 101, | |
'unk2': 98, | |
'unk3': 115, | |
'unk4': 115, | |
'unk5': 115, | |
'unk7': 0, | |
'unk8': [0, 0, 0, 0, 0, 30, 0, 30, 0, 0, 0, 0]}), | |
(81, | |
{'food': False, | |
'goodies_desc': "The sort of pot you'd expect to see used%rfor " | |
"pickling in a cat-free home. It's%rglossy " | |
'surface is sure to attract cats.', | |
'goodies_desc_jap': '梅干が入ってそうな%rそれっぽい感じのつぼ%r表面がつやつやしている', | |
'name': 'Pickling Plot', | |
'name_jap': '梅壷', | |
'shop_desc': 'A pot that keeps its contents at a%rconstant ' | |
"temperature. It's perfect%rfor pickling.", | |
'shop_desc_jap': '中の湿度を一定に保ってくれる%r梅干し保存にぴったり!', | |
'spot': 0, | |
'type': 9, | |
'unk1': 102, | |
'unk2': 99, | |
'unk3': 116, | |
'unk4': 116, | |
'unk5': 116, | |
'unk7': 0, | |
'unk8': [0, 50, 0, 0, 30, 0, 0, 30, 0, 0, 0, 0]}), | |
(41, | |
{'food': False, | |
'goodies_desc': "The inside of this flowerpot doesn't%rhave " | |
"soil、 so cat's can crawl in without%rgetting " | |
'filthy.', | |
'goodies_desc_jap': '土の入っていない植木鉢%r中に入って遊んだりもできる', | |
'name': 'Planter', | |
'name_jap': '植木鉢', | |
'shop_desc': "To you it's just a flowerpot. To a cat、%rit's an " | |
'oasis of personal space.', | |
'shop_desc_jap': 'ねこちゃんにとったら%r植木鉢だって立派な遊具です', | |
'spot': 0, | |
'type': 9, | |
'unk1': 103, | |
'unk2': 100, | |
'unk3': 117, | |
'unk4': 117, | |
'unk5': 117, | |
'unk7': 0, | |
'unk8': [0, 0, 0, 0, 0, 30, 0, 0, 30, 20, 0, 30]}), | |
(64, | |
{'food': False, | |
'goodies_desc': 'Buckets like this always come in ' | |
"handy、%ralthough it's hard finding a place " | |
'to%rput them.', | |
'goodies_desc_jap': 'あると便利だけど%rふだんの置き場に困ったり', | |
'name': 'Bucket (Blue)', | |
'name_jap': 'バケツ(青)', | |
'shop_desc': 'A sturdy、 blue、 all-purpose bucket.%rIdeal for ' | |
'mopping the floor、 gardening、%rand any other ' | |
'bucket-based activities. ', | |
'shop_desc_jap': '軽くて丈夫な青色の万能バケツ%r掃除、園芸なんでも使えます', | |
'spot': 0, | |
'type': 9, | |
'unk1': 91, | |
'unk2': 88, | |
'unk3': 103, | |
'unk4': 103, | |
'unk5': 103, | |
'unk7': 0, | |
'unk8': [20, 0, 0, 0, 0, 30, 30, 0, 0, 0, 0, 0]}), | |
(83, | |
{'food': False, | |
'goodies_desc': 'Buckets like this always come in ' | |
"handy、%ralthough it's hard finding a place " | |
'to%rput them.', | |
'goodies_desc_jap': 'あると便利だけど%rふだんの置き場に困ったり', | |
'name': 'Bucket (Red)', | |
'name_jap': 'バケツ(赤)', | |
'shop_desc': 'A sturdy、 red、 all-purpose bucket. Ideal%rfor ' | |
'clamming、 gardening、 and any other%rbucket-based ' | |
'activities.', | |
'shop_desc_jap': '軽くて丈夫な赤色の万能バケツ%r潮干狩り、園芸なんでも使えます', | |
'spot': 0, | |
'type': 9, | |
'unk1': 92, | |
'unk2': 89, | |
'unk3': 104, | |
'unk4': 104, | |
'unk5': 104, | |
'unk7': 0, | |
'unk8': [20, 0, 0, 0, 0, 30, 30, 0, 0, 0, 0, 0]}), | |
(84, | |
{'food': False, | |
'goodies_desc': 'Buckets like this always come in ' | |
"handy、%ralthough it's hard finding a place " | |
'to%rput them.', | |
'goodies_desc_jap': 'あると便利だけど%rふだんの置き場に困ったり', | |
'name': 'Bucket (Yellow)', | |
'name_jap': 'バケツ(黄)', | |
'shop_desc': 'A sturdy、 yellow、 all-purpose bucket.%rIdeal for ' | |
'building sand castles、%rplaying in the dirt、 ' | |
'etc.、 etc.', | |
'shop_desc_jap': '軽くて丈夫な黄色の万能バケツ%r砂遊び、土遊びなんでも使えます', | |
'spot': 0, | |
'type': 9, | |
'unk1': 93, | |
'unk2': 90, | |
'unk3': 105, | |
'unk4': 105, | |
'unk5': 105, | |
'unk7': 0, | |
'unk8': [20, 0, 0, 0, 0, 30, 30, 0, 0, 0, 0, 0]}), | |
(129, | |
{'food': False, | |
'goodies_desc': 'A winter sled for people who like%rgoing ' | |
'downhill fast. Perhaps cats will%renjoy it、 ' | |
'too. ', | |
'goodies_desc_jap': 'プラスチックでできた%rねこも楽しめる遊具用のソリ', | |
'name': 'Snow Sled', | |
'name_jap': '雪ソリ', | |
'shop_desc': 'A plastic sled for daring downhill%radventures. ' | |
'Fun for the whole family! ', | |
'shop_desc_jap': 'みんなで楽しく雪すべり!%r雪遊びの定番です', | |
'spot': 1, | |
'type': 5, | |
'unk1': 100, | |
'unk2': 97, | |
'unk3': 114, | |
'unk4': 114, | |
'unk5': 114, | |
'unk7': 0, | |
'unk8': [0, 0, 0, 30, 0, 20, 0, 0, 30, 0, 0, 0]}), | |
(42, | |
{'food': False, | |
'goodies_desc': 'A goldfish bowl complete with goldfish.%rThis ' | |
"probably won't end well.", | |
'goodies_desc_jap': '金魚の入った金魚鉢%r泳ぐ姿に興味津々%rいやな予感しかしない', | |
'name': 'Goldfish Bowl', | |
'name_jap': '金魚鉢', | |
'shop_desc': 'A classic goldfish bowl. To cats、%rwatching the ' | |
'fish inside is better%rthan prime-time TV.', | |
'shop_desc_jap': '昔ながらの金魚鉢%rゆらゆら動く金魚に夢中', | |
'spot': 0, | |
'type': 9, | |
'unk1': 97, | |
'unk2': 94, | |
'unk3': 110, | |
'unk4': 111, | |
'unk5': 110, | |
'unk7': 0, | |
'unk8': [0, 20, 0, 0, 20, 0, 30, 30, 0, 0, 0, 0]}), | |
(102, | |
{'food': False, | |
'goodies_desc': 'A large glass vase. Could a cat fit in%rthis? ' | |
'Only one way to find out.', | |
'goodies_desc_jap': 'ガラスでできた大きな花瓶%rねこなら入れそう?', | |
'name': 'Glass Vase', | |
'name_jap': 'ガラス花瓶', | |
'shop_desc': 'A famous glass blower made this vase.%rIts wide ' | |
'mouth can hold an entire bouquet%rwith little ' | |
'arranging.', | |
'shop_desc_jap': '人気のガラス職人がつくる花瓶%r幅の広い口になっているので%r花束をそのまま飾れます', | |
'spot': 0, | |
'type': 9, | |
'unk1': 95, | |
'unk2': 92, | |
'unk3': 108, | |
'unk4': 108, | |
'unk5': 108, | |
'unk7': 0, | |
'unk8': [0, 20, 0, 0, 20, 0, 0, 0, 30, 20, 0, 20]}), | |
(127, | |
{'food': False, | |
'goodies_desc': "A wire inside this hat's felt fabric " | |
"holds%rits shape even after it's washed.", | |
'goodies_desc_jap': 'フェルト素材使用したハット%rワイヤーが入ってるので%r洗っても型崩れしない', | |
'name': 'Cowboy Hat', | |
'name_jap': 'ウエスタンハット', | |
'shop_desc': 'This relic of the Wild West will shade%ryour ' | |
"cat's eyes on the range.", | |
'shop_desc_jap': '眩しい日差しから%rねこたちを守ってくれる%rにくいやつ', | |
'spot': 0, | |
'type': 9, | |
'unk1': 94, | |
'unk2': 91, | |
'unk3': 106, | |
'unk4': 107, | |
'unk5': 106, | |
'unk7': 1, | |
'unk8': [0, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100]}), | |
(118, | |
{'food': False, | |
'goodies_desc': 'With this wooden pail and hand towel、 you%rcan ' | |
'almost hear the splish-splash of ' | |
'your%rfavorite hot springs.', | |
'goodies_desc_jap': '木製素材のたらいと手ぬぐい%rどこからかともなく%r風呂場の音が聞こえてきそう', | |
'name': 'Wood Pail', | |
'name_jap': 'たらい', | |
'shop_desc': 'Made of locally sourced sawara cypress、%rthis ' | |
'rustic pail recreates the ambience%rof a hot ' | |
'spring in the countryside.', | |
'shop_desc_jap': 'さわら材国産天然木を使用%rおうちにいながら%r温泉気分を気軽に楽しめます', | |
'spot': 0, | |
'type': 9, | |
'unk1': 99, | |
'unk2': 96, | |
'unk3': 113, | |
'unk4': 113, | |
'unk5': 113, | |
'unk7': 0, | |
'unk8': [0, 0, 20, 20, 0, 20, 0, 30, 0, 0, 0, 0]}), | |
(120, | |
{'food': False, | |
'goodies_desc': 'A domed cushion fashioned after a macaroon%rin ' | |
'a glossy、 cutesy pink. It makes a nice%rhiding ' | |
'spot for cats.', | |
'goodies_desc_jap': '表面につやのあるキュートなピンクの%rマカロン型ドームハウス%rねこたちのちょっとした隠れ家', | |
'name': 'Cat Macaroon (Pink)', | |
'name_jap': 'ねこマカロン(ピンク)', | |
'shop_desc': 'Your felines will luxuriate in this%rcolorful ' | |
'cloth cookie. Available in%ra girly pastel pink.', | |
'shop_desc_jap': 'つやつやのマカロン生地に%rねこたちを贅沢にサンド%r乙女チックなパステルピンク', | |
'spot': 0, | |
'type': 9, | |
'unk1': 52, | |
'unk2': 49, | |
'unk3': 51, | |
'unk4': 51, | |
'unk5': 51, | |
'unk7': 0, | |
'unk8': [30, 0, 0, 0, 20, 0, 0, 0, 20, 20, 0, 30]}), | |
(121, | |
{'food': False, | |
'goodies_desc': 'A domed cushion fashioned after a macaroon%rin ' | |
'a trendy pastel green. It makes a nice%rhiding ' | |
'spot for cats.', | |
'goodies_desc_jap': '表面につやのあるポップなグリーンの%rマカロン型ドームハウス%rねこたちのちょっとした隠れ家', | |
'name': 'Cat Macaroon (Green)', | |
'name_jap': 'ねこマカロン(グリーン)', | |
'shop_desc': 'Your felines will luxuriate in this%rcolorful ' | |
'cloth cookie. Available in%ra soothing pastel ' | |
'green.', | |
'shop_desc_jap': 'つやつやのマカロン生地に%rねこたちを贅沢にサンド%r優しいパステルグリーン', | |
'spot': 0, | |
'type': 9, | |
'unk1': 51, | |
'unk2': 48, | |
'unk3': 50, | |
'unk4': 50, | |
'unk5': 50, | |
'unk7': 0, | |
'unk8': [30, 0, 0, 0, 20, 0, 0, 0, 20, 20, 0, 30]}), | |
(122, | |
{'food': False, | |
'goodies_desc': 'Puffy and soft to the touch、 and not ' | |
'too%rspacious on the inside. Your cat ' | |
"wouldn't%rwant it any other way.", | |
'goodies_desc_jap': 'ふっくらやわらかな触り心地%r少し狭いのがなんだか落ち着く', | |
'name': 'Cat Pancake', | |
'name_jap': 'ねこどらやき', | |
'shop_desc': 'This cushion looks so tasty、 you almost%rwant to ' | |
'drizzle syrup all over it.%r[*Applying syrup ' | |
'voids warranty.]', | |
'shop_desc_jap': '外はふっくら、中はしっとり%rねこちゃんたちを%r優しくはさみこみます', | |
'spot': 0, | |
'type': 9, | |
'unk1': 50, | |
'unk2': 47, | |
'unk3': 49, | |
'unk4': 49, | |
'unk5': 49, | |
'unk7': 0, | |
'unk8': [20, 0, 30, 0, 10, 0, 0, 50, 0, 0, 0, 0]}), | |
(99, | |
{'food': False, | |
'goodies_desc': '', | |
'goodies_desc_jap': '', | |
'name': 'Fish Exchange', | |
'name_jap': 'にぼし交換', | |
'shop_desc': 'Exchange 10 gold fish for 250 normal fish.', | |
'shop_desc_jap': '金にぼし10こを%rふつうのにぼし250こに交換', | |
'spot': 1, | |
'type': 11, | |
'unk1': 1, | |
'unk2': -1, | |
'unk3': 0, | |
'unk4': 0, | |
'unk5': 0, | |
'unk7': 0, | |
'unk8': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}), | |
(97, | |
{'food': False, | |
'goodies_desc': '', | |
'goodies_desc_jap': '', | |
'name': 'Gold Fish Exchange', | |
'name_jap': '金にぼし交換', | |
'shop_desc': 'Exchange 500 normal fish for 10 gold fish.', | |
'shop_desc_jap': 'ふつうのにぼし500を%r金にぼし10こに交換', | |
'spot': 0, | |
'type': 11, | |
'unk1': 0, | |
'unk2': -1, | |
'unk3': 0, | |
'unk4': 0, | |
'unk5': 0, | |
'unk7': 0, | |
'unk8': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]}), | |
(95, | |
{'food': False, | |
'goodies_desc': '', | |
'goodies_desc_jap': '', | |
'name': 'Yard Expansion', | |
'name_jap': 'にわさき拡張', | |
'shop_desc': "Expand your cats' play space into the%radjacent " | |
'room、 which will allow you to%rplace more stuff!', | |
'shop_desc_jap': 'ねこたちを集める場所を%rお部屋側へ広げます%rより沢山のグッズを設置できます', | |
'spot': 0, | |
'type': 11, | |
'unk1': 2, | |
'unk2': -1, | |
'unk3': 0, | |
'unk4': 0, | |
'unk5': 0, | |
'unk7': 0, | |
'unk8': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]})]) |
This file contains 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
>>> pprint(data.goody_configs) | |
OrderedDict([(5, | |
{'config': [[9, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 3}), | |
(6, | |
{'config': [[10, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 4}), | |
(7, | |
{'config': [[13, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 5}), | |
(8, | |
{'config': [[14, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 6}), | |
(9, | |
{'config': [[18, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 7}), | |
(10, | |
{'config': [[16, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 8}), | |
(11, | |
{'config': [[15, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 9}), | |
(12, | |
{'config': [[5, 0, 0.0], | |
[5, 1, 0.1], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[1, 0, 0.0], | |
[1, 2, 0.2]], | |
'config_num': 0, | |
'goody': 10}), | |
(13, | |
{'config': [[0, 0, 0.0], | |
[0, 1, 0.1], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 1, | |
'goody': 10}), | |
(14, | |
{'config': [[0, 0, 0.0], | |
[0, 1, 0.1], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 2, | |
'goody': 10}), | |
(15, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 11}), | |
(16, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 12}), | |
(17, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 13}), | |
(18, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 14}), | |
(19, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 15}), | |
(20, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 16}), | |
(21, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 17}), | |
(22, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 18}), | |
(23, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 19}), | |
(24, | |
{'config': [[19, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 20}), | |
(25, | |
{'config': [[1, 0, 0.0], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[5, 0, 0.0], | |
[5, 1, 0.1], | |
[7, 0, 0.0]], | |
'config_num': 0, | |
'goody': 21}), | |
(26, | |
{'config': [[1, 0, 0.0], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[5, 0, 0.0], | |
[5, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 1, | |
'goody': 21}), | |
(27, | |
{'config': [[1, 0, 0.0], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[5, 0, 0.0], | |
[5, 1, 0.1], | |
[7, 0, 0.0]], | |
'config_num': 0, | |
'goody': 22}), | |
(28, | |
{'config': [[1, 0, 0.0], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[5, 0, 0.0], | |
[5, 1, 0.1], | |
[7, 0, 0.0]], | |
'config_num': 1, | |
'goody': 22}), | |
(29, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[5, 0, 0.0], | |
[5, 1, 0.1]], | |
'config_num': 2, | |
'goody': 22}), | |
(30, | |
{'config': [[1, 0, 0.0], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[5, 0, 0.0], | |
[5, 1, 0.1], | |
[7, 0, 0.0]], | |
'config_num': 0, | |
'goody': 23}), | |
(31, | |
{'config': [[1, 0, 0.0], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[5, 0, 0.0], | |
[5, 1, 0.1], | |
[7, 0, 0.0]], | |
'config_num': 1, | |
'goody': 23}), | |
(32, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[5, 0, 0.0], | |
[5, 1, 0.1]], | |
'config_num': 2, | |
'goody': 23}), | |
(33, | |
{'config': [[0, 0, 0.0], | |
[0, 1, 0.1], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 3, | |
'goody': 23}), | |
(34, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[5, 0, 0.0], | |
[5, 1, 0.1]], | |
'config_num': 4, | |
'goody': 23}), | |
(35, | |
{'config': [[1, 0, 0.0], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[5, 0, 0.0], | |
[5, 1, 0.1], | |
[7, 0, 0.0]], | |
'config_num': 0, | |
'goody': 24}), | |
(36, | |
{'config': [[1, 0, 0.0], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[5, 0, 0.0], | |
[5, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 1, | |
'goody': 24}), | |
(37, | |
{'config': [[0, 0, 0.0], | |
[0, 1, 0.1], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 2, | |
'goody': 24}), | |
(38, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[5, 0, 0.0], | |
[5, 1, 0.1]], | |
'config_num': 3, | |
'goody': 24}), | |
(39, | |
{'config': [[0, 0, 0.0], | |
[0, 1, 0.1], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 4, | |
'goody': 24}), | |
(40, | |
{'config': [[1, 0, 0.0], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[5, 0, 0.0], | |
[5, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 5, | |
'goody': 24}), | |
(41, | |
{'config': [[21, 0, 0.0], | |
[21, 1, 0.1], | |
[21, 2, 0.2], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 25}), | |
(42, | |
{'config': [[21, 3, 0.3], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 1, | |
'goody': 25}), | |
(43, | |
{'config': [[21, 0, 0.0], | |
[21, 1, 0.1], | |
[21, 2, 0.2], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 1, | |
'goody': 26}), | |
(44, | |
{'config': [[21, 0, 0.0], | |
[21, 1, 0.1], | |
[21, 2, 0.2], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 26}), | |
(45, | |
{'config': [[21, 0, 0.0], | |
[21, 1, 0.1], | |
[21, 2, 0.2], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 27}), | |
(46, | |
{'config': [[21, 4, 0.4], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 2, | |
'goody': 27}), | |
(47, | |
{'config': [[21, 5, 0.5], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 1, | |
'goody': 27}), | |
(48, | |
{'config': [[21, 0, 0.0], | |
[21, 1, 0.1], | |
[21, 2, 0.2], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 28}), | |
(49, | |
{'config': [[21, 4, 0.4], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 2, | |
'goody': 28}), | |
(50, | |
{'config': [[21, 5, 0.5], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 1, | |
'goody': 28}), | |
(51, | |
{'config': [[21, 6, 0.6], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 3, | |
'goody': 28}), | |
(52, | |
{'config': [[30, 0, 0.0], | |
[1, 1, 1.1], | |
[30, 0, 0.0], | |
[30, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 29}), | |
(53, | |
{'config': [[23, 0, 0.0], | |
[1, 1, 1.1], | |
[23, 0, 0.0], | |
[23, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 30}), | |
(54, | |
{'config': [[27, 0, 0.0], | |
[1, 1, 1.1], | |
[27, 0, 0.0], | |
[27, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 31}), | |
(55, | |
{'config': [[26, 0, 0.0], | |
[1, 1, 1.1], | |
[26, 0, 0.0], | |
[26, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 32}), | |
(56, | |
{'config': [[22, 0, 0.0], | |
[28, 0, 1.0], | |
[1, 1, 2.1], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 33}), | |
(57, | |
{'config': [[29, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 34}), | |
(58, | |
{'config': [[31, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 35}), | |
(59, | |
{'config': [[32, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 36}), | |
(60, | |
{'config': [[8, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 37}), | |
(61, | |
{'config': [[7, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 38}), | |
(62, | |
{'config': [[7, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 39}), | |
(63, | |
{'config': [[36, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 40}), | |
(64, | |
{'config': [[38, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 41}), | |
(65, | |
{'config': [[35, 0, 0.0], | |
[35, 1, 1.1], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 42}), | |
(66, | |
{'config': [[1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 98}), | |
(67, | |
{'config': [[1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 1}), | |
(68, | |
{'config': [[1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 2}), | |
(69, | |
{'config': [[1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 96}), | |
(70, | |
{'config': [[39, 0, 0.0], | |
[39, 1, 0.1], | |
[39, 2, 0.2], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 43}), | |
(71, | |
{'config': [[39, 0, 0.0], | |
[39, 1, 0.1], | |
[39, 3, 0.3], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 1, | |
'goody': 43}), | |
(72, | |
{'config': [[39, 4, 0.4], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 2, | |
'goody': 43}), | |
(73, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 44}), | |
(74, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 45}), | |
(75, | |
{'config': [[14, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 46}), | |
(76, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 47}), | |
(77, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 1, | |
'goody': 47}), | |
(78, | |
{'config': [[40, 0, 0.0], | |
[40, 1, 0.1], | |
[40, 2, 0.2], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 48}), | |
(79, | |
{'config': [[40, 0, 0.0], | |
[40, 1, 0.1], | |
[40, 2, 0.2], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 49}), | |
(80, | |
{'config': [[40, 0, 0.0], | |
[40, 1, 0.1], | |
[40, 2, 0.2], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 50}), | |
(81, | |
{'config': [[9, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 51}), | |
(82, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 52}), | |
(83, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 53}), | |
(84, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 1, | |
'goody': 53}), | |
(85, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 2, | |
'goody': 53}), | |
(86, | |
{'config': [[30, 0, 0.0], | |
[1, 1, 1.1], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 54}), | |
(87, | |
{'config': [[36, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 55}), | |
(88, | |
{'config': [[0, 0, 0.0], | |
[0, 0, 1.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 56}), | |
(89, | |
{'config': [[0, 0, 0.0], | |
[0, 0, 1.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 57}), | |
(90, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 58}), | |
(91, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 1, | |
'goody': 58}), | |
(92, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 2, | |
'goody': 58}), | |
(93, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 59}), | |
(94, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 1, | |
'goody': 59}), | |
(96, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 60}), | |
(97, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 1, | |
'goody': 60}), | |
(98, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 2, | |
'goody': 60}), | |
(99, | |
{'config': [[19, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 61}), | |
(100, | |
{'config': [[17, 0, 0.0], | |
[17, 1, 0.1], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 62}), | |
(101, | |
{'config': [[38, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 63}), | |
(102, | |
{'config': [[38, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 64}), | |
(103, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 3, | |
'goody': 43}), | |
(104, | |
{'config': [[10, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 72}), | |
(105, | |
{'config': [[10, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 73}), | |
(106, | |
{'config': [[14, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 82}), | |
(107, | |
{'config': [[19, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 76}), | |
(108, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 74}), | |
(109, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 75}), | |
(110, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 65}), | |
(111, | |
{'config': [[21, 0, 0.0], | |
[21, 1, 0.1], | |
[21, 2, 0.2], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 78}), | |
(112, | |
{'config': [[21, 3, 0.3], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 1, | |
'goody': 78}), | |
(113, | |
{'config': [[21, 0, 0.0], | |
[21, 1, 0.1], | |
[21, 2, 0.2], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 79}), | |
(114, | |
{'config': [[21, 0, 0.0], | |
[21, 1, 0.1], | |
[21, 2, 0.2], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 1, | |
'goody': 79}), | |
(115, | |
{'config': [[38, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 81}), | |
(116, | |
{'config': [[40, 0, 0.0], | |
[40, 1, 0.1], | |
[40, 2, 0.2], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 77}), | |
(117, | |
{'config': [[28, 0, 0.0], | |
[1, 1, 1.1], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 80}), | |
(118, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 67}), | |
(119, | |
{'config': [[1, 0, 0.0], | |
[3, 0, 0.0], | |
[1, 2, 0.2], | |
[5, 0, 0.0], | |
[5, 1, 0.1], | |
[1, 1, 0.1]], | |
'config_num': 0, | |
'goody': 68}), | |
(120, | |
{'config': [[1, 0, 0.0], | |
[3, 0, 0.0], | |
[1, 2, 0.2], | |
[5, 0, 0.0], | |
[5, 1, 0.1], | |
[1, 1, 0.1]], | |
'config_num': 1, | |
'goody': 68}), | |
(121, | |
{'config': [[1, 0, 0.0], | |
[3, 0, 0.0], | |
[1, 2, 0.2], | |
[5, 0, 0.0], | |
[5, 1, 0.1], | |
[1, 1, 0.1]], | |
'config_num': 2, | |
'goody': 68}), | |
(122, | |
{'config': [[1, 0, 0.0], | |
[3, 0, 0.0], | |
[1, 2, 0.2], | |
[5, 0, 0.0], | |
[5, 1, 0.1], | |
[1, 1, 0.1]], | |
'config_num': 3, | |
'goody': 68}), | |
(123, | |
{'config': [[21, 0, 0.0], | |
[21, 1, 0.1], | |
[21, 2, 0.2], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 66}), | |
(124, | |
{'config': [[21, 3, 0.3], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 1, | |
'goody': 66}), | |
(125, | |
{'config': [[25, 0, 0.0], | |
[1, 1, 1.1], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 69}), | |
(126, | |
{'config': [[25, 0, 0.0], | |
[1, 1, 1.1], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 70}), | |
(127, | |
{'config': [[25, 0, 0.0], | |
[1, 1, 1.1], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 71}), | |
(128, | |
{'config': [[38, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 83}), | |
(129, | |
{'config': [[38, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 84}), | |
(130, | |
{'config': [[1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 90}), | |
(131, | |
{'config': [[10, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 85}), | |
(132, | |
{'config': [[5, 0, 0.0], | |
[5, 1, 0.1], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 1, | |
'goody': 86}), | |
(133, | |
{'config': [[5, 0, 0.0], | |
[5, 1, 0.1], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[1, 0, 0.0], | |
[1, 2, 0.2]], | |
'config_num': 0, | |
'goody': 86}), | |
(134, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 103}), | |
(135, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 87}), | |
(136, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 88}), | |
(137, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 89}), | |
(138, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 1, | |
'goody': 89}), | |
(139, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 2, | |
'goody': 89}), | |
(140, | |
{'config': [[2, 0, 0.0], | |
[2, 1, 0.1], | |
[2, 2, 0.2], | |
[4, 0, 0.0], | |
[4, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 100}), | |
(141, | |
{'config': [[2, 0, 0.0], | |
[2, 1, 0.1], | |
[2, 2, 0.2], | |
[4, 0, 0.0], | |
[4, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 1, | |
'goody': 100}), | |
(142, | |
{'config': [[1, 0, 0.0], | |
[1, 2, 0.2], | |
[5, 0, 0.0], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[1, 1, 0.1]], | |
'config_num': 2, | |
'goody': 100}), | |
(143, | |
{'config': [[2, 0, 0.0], | |
[2, 1, 0.1], | |
[2, 2, 0.2], | |
[4, 0, 0.0], | |
[4, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 101}), | |
(144, | |
{'config': [[2, 0, 0.0], | |
[2, 1, 0.1], | |
[2, 2, 0.2], | |
[4, 0, 0.0], | |
[4, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 1, | |
'goody': 101}), | |
(145, | |
{'config': [[1, 0, 0.0], | |
[1, 2, 0.2], | |
[5, 1, 0.1], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[1, 1, 0.1]], | |
'config_num': 2, | |
'goody': 101}), | |
(146, | |
{'config': [[44, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 102}), | |
(147, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 104}), | |
(148, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 105}), | |
(149, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 106}), | |
(150, | |
{'config': [[1, 0, 0.0], | |
[1, 2, 0.2], | |
[5, 1, 0.1], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[1, 1, 0.1]], | |
'config_num': 2, | |
'goody': 86}), | |
(151, | |
{'config': [[1, 1, 0.1], | |
[1, 2, 0.2], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 107}), | |
(152, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 1, | |
'goody': 107}), | |
(153, | |
{'config': [[45, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 2, | |
'goody': 107}), | |
(154, | |
{'config': [[9, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 108}), | |
(155, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 109}), | |
(156, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 110}), | |
(157, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 1, | |
'goody': 110}), | |
(158, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 111}), | |
(159, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 1, | |
'goody': 111}), | |
(160, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 112}), | |
(161, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 1, | |
'goody': 112}), | |
(162, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 113}), | |
(163, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 1, | |
'goody': 113}), | |
(164, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 123}), | |
(165, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 119}), | |
(166, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[5, 1, 0.1], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[5, 0, 0.0]], | |
'config_num': 0, | |
'goody': 114}), | |
(167, | |
{'config': [[1, 0, 0.0], | |
[1, 2, 0.2], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 1, | |
'goody': 114}), | |
(168, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 2, | |
'goody': 114}), | |
(169, | |
{'config': [[38, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 3, | |
'goody': 114}), | |
(170, | |
{'config': [[38, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 4, | |
'goody': 114}), | |
(171, | |
{'config': [[25, 0, 0.0], | |
[1, 1, 1.1], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 115}), | |
(172, | |
{'config': [[30, 0, 0.0], | |
[1, 1, 1.1], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 116}), | |
(173, | |
{'config': [[0, 0, 0.0], | |
[21, 2, 1.2], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 117}), | |
(174, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[3, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 118}), | |
(175, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 120}), | |
(176, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 121}), | |
(177, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 122}), | |
(178, | |
{'config': [[0, 1, 0.1], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 124}), | |
(179, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[5, 0, 0.0], | |
[5, 1, 0.1]], | |
'config_num': 1, | |
'goody': 124}), | |
(180, | |
{'config': [[0, 0, 0.0], | |
[0, 1, 0.1], | |
[21, 6, 0.6], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 2, | |
'goody': 124}), | |
(181, | |
{'config': [[16, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 3, | |
'goody': 124}), | |
(182, | |
{'config': [[7, 1, 0.1], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 125}), | |
(183, | |
{'config': [[19, 0, 1.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 1, | |
'goody': 125}), | |
(184, | |
{'config': [[21, 5, 0.5], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 126}), | |
(185, | |
{'config': [[21, 0, 0.0], | |
[21, 1, 0.1], | |
[21, 2, 0.2], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 1, | |
'goody': 126}), | |
(186, | |
{'config': [[3, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 127}), | |
(187, | |
{'config': [[18, 0, 1.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 1, | |
'goody': 127}), | |
(188, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 128}), | |
(189, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 1, | |
'goody': 128}), | |
(190, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 2, | |
'goody': 128}), | |
(191, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[5, 1, 0.1]], | |
'config_num': 0, | |
'goody': 129}), | |
(192, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[5, 1, 0.1]], | |
'config_num': 1, | |
'goody': 129}), | |
(193, | |
{'config': [[18, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 130}), | |
(194, | |
{'config': [[36, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 131}), | |
(195, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 132}), | |
(196, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 133}), | |
(197, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 134}), | |
(198, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 135}), | |
(199, | |
{'config': [[1, 2, 0.2], | |
[43, 0, 1.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 136}), | |
(200, | |
{'config': [[1, 2, 0.2], | |
[43, 0, 1.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 137}), | |
(201, | |
{'config': [[1, 2, 0.2], | |
[43, 0, 1.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 138}), | |
(202, | |
{'config': [[1, 0, 0.0], | |
[1, 1, 0.1], | |
[1, 2, 0.2], | |
[3, 0, 0.0], | |
[3, 1, 0.1], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 139}), | |
(203, | |
{'config': [[3, 0, 0.0], | |
[5, 0, 0.0], | |
[5, 1, 0.1], | |
[36, 0, 1.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 140}), | |
(204, | |
{'config': [[0, 0, 0.0], | |
[0, 0, 1.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 0, | |
'goody': 141}), | |
(205, | |
{'config': [[1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0], | |
[-1, 0, 0.0]], | |
'config_num': 1, | |
'goody': 140})]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment