Skip to content

Commit

Permalink
add desktop pet and update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
CharlesPikachu committed Apr 4, 2020
1 parent 0df4199 commit 3029492
Show file tree
Hide file tree
Showing 2,967 changed files with 182 additions and 19 deletions.
2 changes: 1 addition & 1 deletion Calculator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
https://mp.weixin.qq.com/s/x6ygDEWHiYX10AP4y8e3MA

# Version
- V1.0
- v1.0

# Usage
```
Expand Down
2 changes: 1 addition & 1 deletion Clock/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
https://mp.weixin.qq.com/s/8JPxEHGZ2u7dsEUJS-9WbQ

# Version
- V1.0
- v1.0

# Usage
```
Expand Down
2 changes: 1 addition & 1 deletion ControlPCbyEmail/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
https://mp.weixin.qq.com/s/KnG-mncegaB35v5THAUJXQ

# Version
- V1.0
- v1.0

# Usage
```
Expand Down
125 changes: 125 additions & 0 deletions DesktopPet/DesktopPet.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,125 @@
'''
Function:
实现一款桌面宠物
Author:
Charles
微信公众号:
Charles的皮卡丘
'''
import os
import cfg
import sys
import random
from PyQt5.QtGui import *
from PyQt5.QtCore import *
from PyQt5.QtWidgets import *
from PyQt5 import QtWidgets, QtGui


'''桌面宠物'''
class DesktopPet(QWidget):
def __init__(self, parent=None, **kwargs):
super(DesktopPet, self).__init__(parent)
# 初始化
self.setWindowFlags(Qt.FramelessWindowHint|Qt.WindowStaysOnTopHint|Qt.SubWindow)
self.setAutoFillBackground(False)
self.setAttribute(Qt.WA_TranslucentBackground, True)
self.repaint()
# 随机导入一个宠物
self.pet_images, iconpath = self.randomLoadPetImages()
# 设置退出选项
quit_action = QAction('退出', self, triggered=self.quit)
quit_action.setIcon(QIcon(iconpath))
self.tray_icon_menu = QMenu(self)
self.tray_icon_menu.addAction(quit_action)
self.tray_icon = QSystemTrayIcon(self)
self.tray_icon.setIcon(QIcon(iconpath))
self.tray_icon.setContextMenu(self.tray_icon_menu)
self.tray_icon.show()
# 当前显示的图片
self.image = QLabel(self)
self.setImage(self.pet_images[0][0])
# 是否跟随鼠标
self.is_follow_mouse = False
# 宠物拖拽时避免鼠标直接跳到左上角
self.mouse_drag_pos = self.pos()
# 显示
self.resize(128, 128)
self.randomPosition()
self.show()
# 宠物动画动作执行所需的一些变量
self.is_running_action = False
self.action_images = []
self.action_pointer = 0
self.action_max_len = 0
# 每隔一段时间做个动作
self.timer = QTimer()
self.timer.timeout.connect(self.randomAct)
self.timer.start(500)
'''随机做一个动作'''
def randomAct(self):
if not self.is_running_action:
self.is_running_action = True
self.action_images = random.choice(self.pet_images)
self.action_max_len = len(self.action_images)
self.action_pointer = 0
self.runFrame()
'''完成动作的每一帧'''
def runFrame(self):
if self.action_pointer == self.action_max_len:
self.is_running_action = False
self.action_pointer = 0
self.action_max_len = 0
self.setImage(self.action_images[self.action_pointer])
self.action_pointer += 1
'''设置当前显示的图片'''
def setImage(self, image):
self.image.setPixmap(QPixmap.fromImage(image))
'''随机导入一个桌面宠物的所有图片'''
def randomLoadPetImages(self):
pet_name = random.choice(list(cfg.PET_ACTIONS_MAP.keys()))
actions = cfg.PET_ACTIONS_MAP[pet_name]
pet_images = []
for action in actions:
pet_images.append([self.loadImage(os.path.join(cfg.ROOT_DIR, pet_name, 'shime'+item+'.png')) for item in action])
iconpath = os.path.join(cfg.ROOT_DIR, pet_name, 'shime1.png')
return pet_images, iconpath
'''鼠标左键按下时, 宠物将和鼠标位置绑定'''
def mousePressEvent(self, event):
if event.button() == Qt.LeftButton:
self.is_follow_mouse = True
self.mouse_drag_pos = event.globalPos() - self.pos()
event.accept()
self.setCursor(QCursor(Qt.OpenHandCursor))
'''鼠标移动, 则宠物也移动'''
def mouseMoveEvent(self, event):
if Qt.LeftButton and self.is_follow_mouse:
self.move(event.globalPos() - self.mouse_drag_pos)
event.accept()
'''鼠标释放时, 取消绑定'''
def mouseReleaseEvent(self, event):
self.is_follow_mouse = False
self.setCursor(QCursor(Qt.ArrowCursor))
'''导入图像'''
def loadImage(self, imagepath):
image = QImage()
image.load(imagepath)
return image
'''随机到一个屏幕上的某个位置'''
def randomPosition(self):
screen_geo = QDesktopWidget().screenGeometry()
pet_geo = self.geometry()
width = (screen_geo.width() - pet_geo.width()) * random.random()
height = (screen_geo.height() - pet_geo.height()) * random.random()
self.move(width, height)
'''退出程序'''
def quit(self):
self.close()
sys.exit()


'''run'''
if __name__ == '__main__':
app = QApplication(sys.argv)
pet = DesktopPet()
sys.exit(app.exec_())
18 changes: 18 additions & 0 deletions DesktopPet/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Introduction
preparing

# Version
- v0.1.0

# Usage
```
Step1:
install the dependencies(pip install -r requirements.txt)
Step2:
run as following command → python DesktopPet.py
```

# Statement
```
All the resources are from shimiji (e.g., http://pepeswap.com/mascot/50), so the copyright of the resources belongs to shimiji.
```
19 changes: 19 additions & 0 deletions DesktopPet/cfg.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
'''配置文件'''


ROOT_DIR = 'resources'
ACTION_DISTRIBUTION = [['1', '2', '3'],
['4', '5', '6', '7', '8', '9', '10', '11'],
['12', '13', '14'],
['15', '16', '17'],
['18', '19'],
['20', '21'],
['22'],
['23', '24', '25'],
['26', '27', '28', '29'],
['30', '31', '32', '33'],
['34', '35', '36', '37'],
['38', '39', '40', '41'],
['42', '43', '44', '45', '46']]
PET_ACTIONS_MAP = {'pet_1': ACTION_DISTRIBUTION}
for i in range(2, 65): PET_ACTIONS_MAP.update({'pet_%s' % i: ACTION_DISTRIBUTION})
Binary file added DesktopPet/resources/pet_1/shime1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DesktopPet/resources/pet_1/shime10.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DesktopPet/resources/pet_1/shime11.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DesktopPet/resources/pet_1/shime12.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DesktopPet/resources/pet_1/shime13.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DesktopPet/resources/pet_1/shime14.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DesktopPet/resources/pet_1/shime15.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DesktopPet/resources/pet_1/shime16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DesktopPet/resources/pet_1/shime17.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DesktopPet/resources/pet_1/shime18.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DesktopPet/resources/pet_1/shime19.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DesktopPet/resources/pet_1/shime2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DesktopPet/resources/pet_1/shime20.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DesktopPet/resources/pet_1/shime21.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DesktopPet/resources/pet_1/shime22.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DesktopPet/resources/pet_1/shime23.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DesktopPet/resources/pet_1/shime24.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DesktopPet/resources/pet_1/shime25.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DesktopPet/resources/pet_1/shime26.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DesktopPet/resources/pet_1/shime27.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DesktopPet/resources/pet_1/shime28.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DesktopPet/resources/pet_1/shime29.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DesktopPet/resources/pet_1/shime3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DesktopPet/resources/pet_1/shime30.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DesktopPet/resources/pet_1/shime31.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added DesktopPet/resources/pet_1/shime32.png
Binary file added DesktopPet/resources/pet_1/shime33.png
Binary file added DesktopPet/resources/pet_1/shime34.png
Binary file added DesktopPet/resources/pet_1/shime35.png
Binary file added DesktopPet/resources/pet_1/shime36.png
Binary file added DesktopPet/resources/pet_1/shime37.png
Binary file added DesktopPet/resources/pet_1/shime38.png
Binary file added DesktopPet/resources/pet_1/shime39.png
Binary file added DesktopPet/resources/pet_1/shime4.png
Binary file added DesktopPet/resources/pet_1/shime40.png
Binary file added DesktopPet/resources/pet_1/shime41.png
Binary file added DesktopPet/resources/pet_1/shime42.png
Binary file added DesktopPet/resources/pet_1/shime43.png
Binary file added DesktopPet/resources/pet_1/shime44.png
Binary file added DesktopPet/resources/pet_1/shime45.png
Binary file added DesktopPet/resources/pet_1/shime46.png
Binary file added DesktopPet/resources/pet_1/shime5.png
Binary file added DesktopPet/resources/pet_1/shime6.png
Binary file added DesktopPet/resources/pet_1/shime7.png
Binary file added DesktopPet/resources/pet_1/shime8.png
Binary file added DesktopPet/resources/pet_1/shime9.png
Binary file added DesktopPet/resources/pet_10/shime1.png
Binary file added DesktopPet/resources/pet_10/shime10.png
Binary file added DesktopPet/resources/pet_10/shime11.png
Binary file added DesktopPet/resources/pet_10/shime12.png
Binary file added DesktopPet/resources/pet_10/shime13.png
Binary file added DesktopPet/resources/pet_10/shime14.png
Binary file added DesktopPet/resources/pet_10/shime15.png
Binary file added DesktopPet/resources/pet_10/shime16.png
Binary file added DesktopPet/resources/pet_10/shime17.png
Binary file added DesktopPet/resources/pet_10/shime18.png
Binary file added DesktopPet/resources/pet_10/shime19.png
Binary file added DesktopPet/resources/pet_10/shime2.png
Binary file added DesktopPet/resources/pet_10/shime20.png
Binary file added DesktopPet/resources/pet_10/shime21.png
Binary file added DesktopPet/resources/pet_10/shime22.png
Binary file added DesktopPet/resources/pet_10/shime23.png
Binary file added DesktopPet/resources/pet_10/shime24.png
Binary file added DesktopPet/resources/pet_10/shime25.png
Binary file added DesktopPet/resources/pet_10/shime26.png
Binary file added DesktopPet/resources/pet_10/shime27.png
Binary file added DesktopPet/resources/pet_10/shime28.png
Binary file added DesktopPet/resources/pet_10/shime29.png
Binary file added DesktopPet/resources/pet_10/shime3.png
Binary file added DesktopPet/resources/pet_10/shime30.png
Binary file added DesktopPet/resources/pet_10/shime31.png
Binary file added DesktopPet/resources/pet_10/shime32.png
Binary file added DesktopPet/resources/pet_10/shime33.png
Binary file added DesktopPet/resources/pet_10/shime34.png
Binary file added DesktopPet/resources/pet_10/shime35.png
Binary file added DesktopPet/resources/pet_10/shime36.png
Binary file added DesktopPet/resources/pet_10/shime37.png
Binary file added DesktopPet/resources/pet_10/shime38.png
Binary file added DesktopPet/resources/pet_10/shime39.png
Binary file added DesktopPet/resources/pet_10/shime4.png
Binary file added DesktopPet/resources/pet_10/shime40.png
Binary file added DesktopPet/resources/pet_10/shime41.png
Binary file added DesktopPet/resources/pet_10/shime42.png
Binary file added DesktopPet/resources/pet_10/shime43.png
Binary file added DesktopPet/resources/pet_10/shime44.png
Binary file added DesktopPet/resources/pet_10/shime45.png
Binary file added DesktopPet/resources/pet_10/shime46.png
Binary file added DesktopPet/resources/pet_10/shime5.png
Binary file added DesktopPet/resources/pet_10/shime6.png
Binary file added DesktopPet/resources/pet_10/shime7.png
Binary file added DesktopPet/resources/pet_10/shime8.png
Binary file added DesktopPet/resources/pet_10/shime9.png
Binary file added DesktopPet/resources/pet_11/shime1.png
Binary file added DesktopPet/resources/pet_11/shime10.png
Binary file added DesktopPet/resources/pet_11/shime11.png
Binary file added DesktopPet/resources/pet_11/shime12.png
Binary file added DesktopPet/resources/pet_11/shime13.png
Binary file added DesktopPet/resources/pet_11/shime14.png
Binary file added DesktopPet/resources/pet_11/shime15.png
Binary file added DesktopPet/resources/pet_11/shime16.png
Binary file added DesktopPet/resources/pet_11/shime17.png
Binary file added DesktopPet/resources/pet_11/shime18.png
Binary file added DesktopPet/resources/pet_11/shime19.png
Binary file added DesktopPet/resources/pet_11/shime2.png
Binary file added DesktopPet/resources/pet_11/shime20.png
Binary file added DesktopPet/resources/pet_11/shime21.png
Binary file added DesktopPet/resources/pet_11/shime22.png
Binary file added DesktopPet/resources/pet_11/shime23.png
Binary file added DesktopPet/resources/pet_11/shime24.png
Binary file added DesktopPet/resources/pet_11/shime25.png
Binary file added DesktopPet/resources/pet_11/shime26.png
Binary file added DesktopPet/resources/pet_11/shime27.png
Binary file added DesktopPet/resources/pet_11/shime28.png
Binary file added DesktopPet/resources/pet_11/shime29.png
Binary file added DesktopPet/resources/pet_11/shime3.png
Binary file added DesktopPet/resources/pet_11/shime30.png
Binary file added DesktopPet/resources/pet_11/shime31.png
Binary file added DesktopPet/resources/pet_11/shime32.png
Binary file added DesktopPet/resources/pet_11/shime33.png
Binary file added DesktopPet/resources/pet_11/shime34.png
Binary file added DesktopPet/resources/pet_11/shime35.png
Binary file added DesktopPet/resources/pet_11/shime36.png
Binary file added DesktopPet/resources/pet_11/shime37.png
Binary file added DesktopPet/resources/pet_11/shime38.png
Binary file added DesktopPet/resources/pet_11/shime39.png
Binary file added DesktopPet/resources/pet_11/shime4.png
Binary file added DesktopPet/resources/pet_11/shime40.png
Binary file added DesktopPet/resources/pet_11/shime41.png
Binary file added DesktopPet/resources/pet_11/shime42.png
Binary file added DesktopPet/resources/pet_11/shime43.png
Binary file added DesktopPet/resources/pet_11/shime44.png
Binary file added DesktopPet/resources/pet_11/shime45.png
Binary file added DesktopPet/resources/pet_11/shime46.png
Binary file added DesktopPet/resources/pet_11/shime5.png
Binary file added DesktopPet/resources/pet_11/shime6.png
Binary file added DesktopPet/resources/pet_11/shime7.png
Binary file added DesktopPet/resources/pet_11/shime8.png
Binary file added DesktopPet/resources/pet_11/shime9.png
Binary file added DesktopPet/resources/pet_12/shime1.png
Binary file added DesktopPet/resources/pet_12/shime10.png
Binary file added DesktopPet/resources/pet_12/shime11.png
Binary file added DesktopPet/resources/pet_12/shime12.png
Binary file added DesktopPet/resources/pet_12/shime13.png
Binary file added DesktopPet/resources/pet_12/shime14.png
Binary file added DesktopPet/resources/pet_12/shime15.png
Binary file added DesktopPet/resources/pet_12/shime16.png
Binary file added DesktopPet/resources/pet_12/shime17.png
Binary file added DesktopPet/resources/pet_12/shime18.png
Binary file added DesktopPet/resources/pet_12/shime19.png
Binary file added DesktopPet/resources/pet_12/shime2.png
Binary file added DesktopPet/resources/pet_12/shime20.png
Binary file added DesktopPet/resources/pet_12/shime21.png
Binary file added DesktopPet/resources/pet_12/shime22.png
Binary file added DesktopPet/resources/pet_12/shime23.png
Binary file added DesktopPet/resources/pet_12/shime24.png
Binary file added DesktopPet/resources/pet_12/shime25.png
Binary file added DesktopPet/resources/pet_12/shime26.png
Binary file added DesktopPet/resources/pet_12/shime27.png
Binary file added DesktopPet/resources/pet_12/shime28.png
Binary file added DesktopPet/resources/pet_12/shime29.png
Binary file added DesktopPet/resources/pet_12/shime3.png
Binary file added DesktopPet/resources/pet_12/shime30.png
Binary file added DesktopPet/resources/pet_12/shime31.png
Binary file added DesktopPet/resources/pet_12/shime32.png
Binary file added DesktopPet/resources/pet_12/shime33.png
Binary file added DesktopPet/resources/pet_12/shime34.png
Binary file added DesktopPet/resources/pet_12/shime35.png
Binary file added DesktopPet/resources/pet_12/shime36.png
Binary file added DesktopPet/resources/pet_12/shime37.png
Binary file added DesktopPet/resources/pet_12/shime38.png
Binary file added DesktopPet/resources/pet_12/shime39.png
Binary file added DesktopPet/resources/pet_12/shime4.png
Binary file added DesktopPet/resources/pet_12/shime40.png
Binary file added DesktopPet/resources/pet_12/shime41.png
Binary file added DesktopPet/resources/pet_12/shime42.png
Binary file added DesktopPet/resources/pet_12/shime43.png
Binary file added DesktopPet/resources/pet_12/shime44.png
Binary file added DesktopPet/resources/pet_12/shime45.png
Binary file added DesktopPet/resources/pet_12/shime46.png
Binary file added DesktopPet/resources/pet_12/shime5.png
Binary file added DesktopPet/resources/pet_12/shime6.png
Binary file added DesktopPet/resources/pet_12/shime7.png
Binary file added DesktopPet/resources/pet_12/shime8.png
Binary file added DesktopPet/resources/pet_12/shime9.png
Binary file added DesktopPet/resources/pet_13/shime1.png
Binary file added DesktopPet/resources/pet_13/shime10.png
Binary file added DesktopPet/resources/pet_13/shime11.png
Binary file added DesktopPet/resources/pet_13/shime12.png
Binary file added DesktopPet/resources/pet_13/shime13.png
Binary file added DesktopPet/resources/pet_13/shime14.png
Binary file added DesktopPet/resources/pet_13/shime15.png
Binary file added DesktopPet/resources/pet_13/shime16.png
Binary file added DesktopPet/resources/pet_13/shime17.png
Binary file added DesktopPet/resources/pet_13/shime18.png
Binary file added DesktopPet/resources/pet_13/shime19.png
Binary file added DesktopPet/resources/pet_13/shime2.png
Binary file added DesktopPet/resources/pet_13/shime20.png
Binary file added DesktopPet/resources/pet_13/shime21.png
Binary file added DesktopPet/resources/pet_13/shime22.png
Binary file added DesktopPet/resources/pet_13/shime23.png
Binary file added DesktopPet/resources/pet_13/shime24.png
Binary file added DesktopPet/resources/pet_13/shime25.png
Binary file added DesktopPet/resources/pet_13/shime26.png
Binary file added DesktopPet/resources/pet_13/shime27.png
Binary file added DesktopPet/resources/pet_13/shime28.png
Binary file added DesktopPet/resources/pet_13/shime29.png
Binary file added DesktopPet/resources/pet_13/shime3.png
Binary file added DesktopPet/resources/pet_13/shime30.png
Binary file added DesktopPet/resources/pet_13/shime31.png
Binary file added DesktopPet/resources/pet_13/shime32.png
Binary file added DesktopPet/resources/pet_13/shime33.png
Binary file added DesktopPet/resources/pet_13/shime34.png
Binary file added DesktopPet/resources/pet_13/shime35.png
Binary file added DesktopPet/resources/pet_13/shime36.png
Binary file added DesktopPet/resources/pet_13/shime37.png
Binary file added DesktopPet/resources/pet_13/shime38.png
Binary file added DesktopPet/resources/pet_13/shime39.png
Binary file added DesktopPet/resources/pet_13/shime4.png
Binary file added DesktopPet/resources/pet_13/shime40.png
Binary file added DesktopPet/resources/pet_13/shime41.png
Binary file added DesktopPet/resources/pet_13/shime42.png
Binary file added DesktopPet/resources/pet_13/shime43.png
Binary file added DesktopPet/resources/pet_13/shime44.png
Binary file added DesktopPet/resources/pet_13/shime45.png
Binary file added DesktopPet/resources/pet_13/shime46.png
Binary file added DesktopPet/resources/pet_13/shime5.png
Binary file added DesktopPet/resources/pet_13/shime6.png
Binary file added DesktopPet/resources/pet_13/shime7.png
Binary file added DesktopPet/resources/pet_13/shime8.png
Binary file added DesktopPet/resources/pet_13/shime9.png
Binary file added DesktopPet/resources/pet_14/shime1.png
Binary file added DesktopPet/resources/pet_14/shime10.png
Binary file added DesktopPet/resources/pet_14/shime11.png
Binary file added DesktopPet/resources/pet_14/shime12.png
Binary file added DesktopPet/resources/pet_14/shime13.png
Binary file added DesktopPet/resources/pet_14/shime14.png
Binary file added DesktopPet/resources/pet_14/shime15.png
Binary file added DesktopPet/resources/pet_14/shime16.png
Binary file added DesktopPet/resources/pet_14/shime17.png
Binary file added DesktopPet/resources/pet_14/shime18.png
Binary file added DesktopPet/resources/pet_14/shime19.png
Binary file added DesktopPet/resources/pet_14/shime2.png
Binary file added DesktopPet/resources/pet_14/shime20.png
Binary file added DesktopPet/resources/pet_14/shime21.png
Binary file added DesktopPet/resources/pet_14/shime22.png
Binary file added DesktopPet/resources/pet_14/shime23.png
Binary file added DesktopPet/resources/pet_14/shime24.png
Binary file added DesktopPet/resources/pet_14/shime25.png
Binary file added DesktopPet/resources/pet_14/shime26.png
Binary file added DesktopPet/resources/pet_14/shime27.png
Binary file added DesktopPet/resources/pet_14/shime28.png
Binary file added DesktopPet/resources/pet_14/shime29.png
Binary file added DesktopPet/resources/pet_14/shime3.png
Binary file added DesktopPet/resources/pet_14/shime30.png
Binary file added DesktopPet/resources/pet_14/shime31.png
Binary file added DesktopPet/resources/pet_14/shime32.png
Binary file added DesktopPet/resources/pet_14/shime33.png
Binary file added DesktopPet/resources/pet_14/shime34.png
Binary file added DesktopPet/resources/pet_14/shime35.png
Binary file added DesktopPet/resources/pet_14/shime36.png
Binary file added DesktopPet/resources/pet_14/shime37.png
Binary file added DesktopPet/resources/pet_14/shime38.png
Binary file added DesktopPet/resources/pet_14/shime39.png
Binary file added DesktopPet/resources/pet_14/shime4.png
Binary file added DesktopPet/resources/pet_14/shime40.png
Binary file added DesktopPet/resources/pet_14/shime41.png
Binary file added DesktopPet/resources/pet_14/shime42.png
Binary file added DesktopPet/resources/pet_14/shime43.png
Binary file added DesktopPet/resources/pet_14/shime44.png
Binary file added DesktopPet/resources/pet_14/shime45.png
Binary file added DesktopPet/resources/pet_14/shime46.png
Binary file added DesktopPet/resources/pet_14/shime5.png
Binary file added DesktopPet/resources/pet_14/shime6.png
Binary file added DesktopPet/resources/pet_14/shime7.png
Binary file added DesktopPet/resources/pet_14/shime8.png
Binary file added DesktopPet/resources/pet_14/shime9.png
Binary file added DesktopPet/resources/pet_15/shime1.png
Binary file added DesktopPet/resources/pet_15/shime10.png
Binary file added DesktopPet/resources/pet_15/shime11.png
Binary file added DesktopPet/resources/pet_15/shime12.png
Binary file added DesktopPet/resources/pet_15/shime13.png
Binary file added DesktopPet/resources/pet_15/shime14.png
Binary file added DesktopPet/resources/pet_15/shime15.png
Binary file added DesktopPet/resources/pet_15/shime16.png
Binary file added DesktopPet/resources/pet_15/shime17.png
Binary file added DesktopPet/resources/pet_15/shime18.png
Binary file added DesktopPet/resources/pet_15/shime19.png
Binary file added DesktopPet/resources/pet_15/shime2.png
Binary file added DesktopPet/resources/pet_15/shime20.png
Binary file added DesktopPet/resources/pet_15/shime21.png
Binary file added DesktopPet/resources/pet_15/shime22.png
Binary file added DesktopPet/resources/pet_15/shime23.png
Binary file added DesktopPet/resources/pet_15/shime24.png
Binary file added DesktopPet/resources/pet_15/shime25.png
Loading

0 comments on commit 3029492

Please sign in to comment.