1
0
mirror of https://github.com/FloatTech/zbpwife.git synced 2024-09-29 17:46:29 +09:00

更多老婆

This commit is contained in:
莫思敛 2022-10-05 19:58:35 +08:00
parent cae35140ea
commit 499fe8ad3b
66 changed files with 766 additions and 0 deletions

View File

@ -1,2 +1,15 @@
# zbpwife # zbpwife
用于ZeroBot-Plugin的老婆库 用于ZeroBot-Plugin的老婆库
## 使用方法
在zbp主程序中导入此包并将wives文件夹改名为Wives放入zbp/data目录下
## 自定义老婆库
将以`{Waifu名字}.{后缀名}`命名的文件加入`wives`/`Wives`文件夹后,运行`python3 genjson.py`即可将生成新的老婆库!
## 征集台词
wife.json中预留下了角色台词的空间欢迎pr加入更多内容

63
main.go Normal file
View File

@ -0,0 +1,63 @@
// Package wife 抽老婆
package wife
import (
"encoding/json"
"strconv"
fcext "github.com/FloatTech/floatbox/ctxext"
"github.com/FloatTech/floatbox/file"
ctrl "github.com/FloatTech/zbpctrl"
"github.com/FloatTech/zbputils/control"
"github.com/FloatTech/zbputils/ctxext"
"github.com/sirupsen/logrus"
zero "github.com/wdvxdr1123/ZeroBot"
"github.com/wdvxdr1123/ZeroBot/message"
)
type cardInfo struct {
Name string `json:"name"`
URL string `json:"url"`
Lines []string `json:"lines"`
}
type cardSet = map[string]cardInfo
var cardMap = make(cardSet, 50)
var datapath string
func init() {
engine := control.Register("wife", &ctrl.Options[*zero.Ctx]{
DisableOnDefault: false,
Help: "抽老婆\n" +
"- 抽老婆",
PublicDataFolder: "Wives",
}).ApplySingle(ctxext.DefaultSingle)
engine.OnFullMatchGroup([]string{"抽老婆"}, fcext.DoOnceOnSuccess(
func(ctx *zero.Ctx) bool {
data, err := engine.GetLazyData("wife.json", true)
if err != nil {
ctx.SendChain(message.Text("ERROR:", err))
return false
}
err = json.Unmarshal(data, &cardMap)
if err != nil {
ctx.SendChain(message.Text("ERROR:", err))
return false
}
datapath = file.BOTPATH + "/" + engine.DataFolder()
logrus.Infof("[wife]读取%d个老婆", len(cardMap))
return true
},
)).SetBlock(true).
Handle(func(ctx *zero.Ctx) {
i := fcext.RandSenderPerDayN(ctx.Event.UserID, len(cardMap))
card := cardMap[(strconv.Itoa(i))]
ctx.SendChain(
message.At(ctx.Event.UserID),
message.Text("今天的二次元老婆是~【", card.Name, "】哒"),
message.Image("file:///"+datapath+card.URL),
// message.Text("\n【", card.Lines[rand.Intn(len(card.Lines))], "】"),
)
})
}

BIN
wives/a2.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 127 KiB

23
wives/genjson.py Normal file
View File

@ -0,0 +1,23 @@
import os
import json
sgs = {}
if os.path.exists('wife.json'):
with open('wife.json', 'r',encoding='utf-8') as f:
sgs = json.load(f)
# print(sgs)
pwd = os.getcwd()
urlList = []
for i in sgs:
urlList.append(sgs[i]['url'])
ind = len(sgs)
print(os.listdir(pwd))
for i in os.listdir(pwd):
if i.split('.')[1] == "jpg" or i.split('.')[1] == "png":
if i in urlList:
continue
print(i)
sgs[ind] = {"name":i.split('.')[0],'url':i,"lines":[]}
ind+=1
with open('wife.json', 'w+',encoding='utf-8') as f:
json.dump(sgs, f,ensure_ascii=False)

667
wives/wife.json Normal file
View File

@ -0,0 +1,667 @@
{
"0": {
"name": "a2",
"url": "a2.jpg",
"lines": []
},
"1": {
"name": "七海千秋",
"url": "七海千秋.png",
"lines": []
},
"2": {
"name": "中野梓",
"url": "中野梓.png",
"lines": []
},
"3": {
"name": "丸善斯基",
"url": "丸善斯基.jpg",
"lines": []
},
"4": {
"name": "伊什塔尔",
"url": "伊什塔尔.png",
"lines": []
},
"5": {
"name": "伊利亚",
"url": "伊利亚.jpg",
"lines": []
},
"6": {
"name": "伊莉雅",
"url": "伊莉雅.png",
"lines": []
},
"7": {
"name": "伊蕾娜",
"url": "伊蕾娜.png",
"lines": []
},
"8": {
"name": "伽莱翁",
"url": "伽莱翁.jpg",
"lines": []
},
"9": {
"name": "佐伊",
"url": "佐伊.jpg",
"lines": []
},
"10": {
"name": "克莱雅",
"url": "克莱雅.jpg",
"lines": []
},
"11": {
"name": "冲田总司",
"url": "冲田总司.png",
"lines": []
},
"12": {
"name": "凉宫春日",
"url": "凉宫春日.png",
"lines": []
},
"13": {
"name": "初音未来",
"url": "初音未来.png",
"lines": []
},
"14": {
"name": "加藤惠",
"url": "加藤惠.png",
"lines": []
},
"15": {
"name": "博丽灵梦",
"url": "博丽灵梦.png",
"lines": []
},
"16": {
"name": "卡莲·卡斯兰娜",
"url": "卡莲·卡斯兰娜.png",
"lines": []
},
"17": {
"name": "卡莲·奥尔黛西亚",
"url": "卡莲·奥尔黛西亚.png",
"lines": []
},
"18": {
"name": "原村和",
"url": "原村和.jpg",
"lines": []
},
"19": {
"name": "友利奈绪",
"url": "友利奈绪.png",
"lines": []
},
"20": {
"name": "古拉",
"url": "古拉.png",
"lines": []
},
"21": {
"name": "古明地恋",
"url": "古明地恋.jpg",
"lines": []
},
"22": {
"name": "哈泽丽拉",
"url": "哈泽丽拉.jpg",
"lines": []
},
"23": {
"name": "响",
"url": "响.jpg",
"lines": []
},
"24": {
"name": "喜多川海梦",
"url": "喜多川海梦.png",
"lines": []
},
"25": {
"name": "四宫辉夜",
"url": "四宫辉夜.png",
"lines": []
},
"26": {
"name": "埃吉尔",
"url": "埃吉尔.jpg",
"lines": []
},
"27": {
"name": "埃塞克斯",
"url": "埃塞克斯.png",
"lines": []
},
"28": {
"name": "塔什干",
"url": "塔什干.png",
"lines": []
},
"29": {
"name": "塔普利斯酱",
"url": "塔普利斯酱.png",
"lines": []
},
"30": {
"name": "夜叉神天衣",
"url": "夜叉神天衣.png",
"lines": []
},
"31": {
"name": "夜夜",
"url": "夜夜.png",
"lines": []
},
"32": {
"name": "大吉岭",
"url": "大吉岭.jpg",
"lines": []
},
"33": {
"name": "大和",
"url": "大和.png",
"lines": []
},
"34": {
"name": "大和赤骥",
"url": "大和赤骥.jpg",
"lines": []
},
"35": {
"name": "姬塔",
"url": "姬塔.jpg",
"lines": []
},
"36": {
"name": "娜娜莫",
"url": "娜娜莫.png",
"lines": []
},
"37": {
"name": "安丘比",
"url": "安丘比.jpg",
"lines": []
},
"38": {
"name": "安娜",
"url": "安娜.png",
"lines": []
},
"39": {
"name": "安德烈多利亚",
"url": "安德烈多利亚.png",
"lines": []
},
"40": {
"name": "小栗帽",
"url": "小栗帽.jpg",
"lines": []
},
"41": {
"name": "少女前线HK416",
"url": "少女前线HK416.png",
"lines": []
},
"42": {
"name": "少女前线UMP-45",
"url": "少女前线UMP-45.png",
"lines": []
},
"43": {
"name": "少女前线wa2000",
"url": "少女前线wa2000.png",
"lines": []
},
"44": {
"name": "布洛妮娅",
"url": "布洛妮娅.png",
"lines": []
},
"45": {
"name": "希儿·芙乐艾",
"url": "希儿·芙乐艾.png",
"lines": []
},
"46": {
"name": "平泽唯",
"url": "平泽唯.png",
"lines": []
},
"47": {
"name": "幽兰戴尔",
"url": "幽兰戴尔.png",
"lines": []
},
"48": {
"name": "御坂美琴",
"url": "御坂美琴.png",
"lines": []
},
"49": {
"name": "拉芙塔莉雅",
"url": "拉芙塔莉雅.png",
"lines": []
},
"50": {
"name": "新条茜",
"url": "新条茜.jpg",
"lines": []
},
"51": {
"name": "明日方舟-假日威龙陈",
"url": "明日方舟-假日威龙陈.png",
"lines": []
},
"52": {
"name": "明日方舟-华法琳",
"url": "明日方舟-华法琳.png",
"lines": []
},
"53": {
"name": "明日方舟-夕",
"url": "明日方舟-夕.png",
"lines": []
},
"54": {
"name": "明日方舟-安洁莉娜",
"url": "明日方舟-安洁莉娜.png",
"lines": []
},
"55": {
"name": "明日方舟-年",
"url": "明日方舟-年.png",
"lines": []
},
"56": {
"name": "明日方舟-德克萨斯-2",
"url": "明日方舟-德克萨斯-2.png",
"lines": []
},
"57": {
"name": "明日方舟-德克萨斯",
"url": "明日方舟-德克萨斯.png",
"lines": []
},
"58": {
"name": "明日方舟-拉普兰德",
"url": "明日方舟-拉普兰德.png",
"lines": []
},
"59": {
"name": "明日方舟-空",
"url": "明日方舟-空.png",
"lines": []
},
"60": {
"name": "明日方舟-艾雅法拉",
"url": "明日方舟-艾雅法拉.png",
"lines": []
},
"61": {
"name": "明日方舟-阿米娅",
"url": "明日方舟-阿米娅.png",
"lines": []
},
"62": {
"name": "暗锁",
"url": "暗锁.png",
"lines": []
},
"63": {
"name": "更科瑠夏",
"url": "更科瑠夏.png",
"lines": []
},
"64": {
"name": "月之美兔",
"url": "月之美兔.jpg",
"lines": []
},
"65": {
"name": "本间向日葵",
"url": "本间向日葵.jpg",
"lines": []
},
"66": {
"name": "杜野凛世",
"url": "杜野凛世.png",
"lines": []
},
"67": {
"name": "栗山未来",
"url": "栗山未来.png",
"lines": []
},
"68": {
"name": "森中花咲",
"url": "森中花咲.jpg",
"lines": []
},
"69": {
"name": "椎名唯华",
"url": "椎名唯华.jpg",
"lines": []
},
"70": {
"name": "樋口圆香",
"url": "樋口圆香.jpg",
"lines": []
},
"71": {
"name": "樱木真乃",
"url": "樱木真乃.jpg",
"lines": []
},
"72": {
"name": "洛琪希·米格路迪亚",
"url": "洛琪希·米格路迪亚.png",
"lines": []
},
"73": {
"name": "派蒙",
"url": "派蒙.png",
"lines": []
},
"74": {
"name": "溶解莉莉丝",
"url": "溶解莉莉丝.png",
"lines": []
},
"75": {
"name": "焰",
"url": "焰.jpg",
"lines": []
},
"76": {
"name": "爱莉希雅",
"url": "爱莉希雅.png",
"lines": []
},
"77": {
"name": "猫羽雫",
"url": "猫羽雫.jpg",
"lines": []
},
"78": {
"name": "玛利亚特蕾莎",
"url": "玛利亚特蕾莎.jpg",
"lines": []
},
"79": {
"name": "玛奇玛",
"url": "玛奇玛.jpg",
"lines": []
},
"80": {
"name": "珈百璃",
"url": "珈百璃.png",
"lines": []
},
"81": {
"name": "琪露诺",
"url": "琪露诺.png",
"lines": []
},
"82": {
"name": "白井黑子",
"url": "白井黑子.png",
"lines": []
},
"83": {
"name": "目白阿尔丹",
"url": "目白阿尔丹.png",
"lines": []
},
"84": {
"name": "碧卡拉",
"url": "碧卡拉.png",
"lines": []
},
"85": {
"name": "碧蓝航线 光辉",
"url": "碧蓝航线 光辉.png",
"lines": []
},
"86": {
"name": "福丸小糸",
"url": "福丸小糸.jpg",
"lines": []
},
"87": {
"name": "秋山澪",
"url": "秋山澪.png",
"lines": []
},
"88": {
"name": "空银子",
"url": "空银子.png",
"lines": []
},
"89": {
"name": "童田明治",
"url": "童田明治.jpg",
"lines": []
},
"90": {
"name": "米浴",
"url": "米浴.png",
"lines": []
},
"91": {
"name": "维内托",
"url": "维内托.png",
"lines": []
},
"92": {
"name": "美浦波旁",
"url": "美浦波旁.jpg",
"lines": []
},
"93": {
"name": "腓特烈大帝",
"url": "腓特烈大帝.jpg",
"lines": []
},
"94": {
"name": "舰c时雨",
"url": "舰c时雨.png",
"lines": []
},
"95": {
"name": "舰c欧根亲王",
"url": "舰c欧根亲王.jpg",
"lines": []
},
"96": {
"name": "舰c爱宕",
"url": "舰c爱宕.jpg",
"lines": []
},
"97": {
"name": "舰c苍龙",
"url": "舰c苍龙.jpg",
"lines": []
},
"98": {
"name": "舰c高雄",
"url": "舰c高雄.jpg",
"lines": []
},
"99": {
"name": "舰r企业",
"url": "舰r企业.jpg",
"lines": []
},
"100": {
"name": "舰r列克星敦",
"url": "舰r列克星敦.jpg",
"lines": []
},
"101": {
"name": "舰r提尔比茨",
"url": "舰r提尔比茨.jpg",
"lines": []
},
"102": {
"name": "艾列什基伽勒",
"url": "艾列什基伽勒.png",
"lines": []
},
"103": {
"name": "艾拉",
"url": "艾拉.png",
"lines": []
},
"104": {
"name": "芙劳",
"url": "芙劳.jpg",
"lines": []
},
"105": {
"name": "芙拉蒂蕾娜·米利杰",
"url": "芙拉蒂蕾娜·米利杰.png",
"lines": []
},
"106": {
"name": "芽衣",
"url": "芽衣.jpg",
"lines": []
},
"107": {
"name": "英梨梨",
"url": "英梨梨.png",
"lines": []
},
"108": {
"name": "莉洁娜",
"url": "莉洁娜.jpg",
"lines": []
},
"109": {
"name": "莫迪乌斯",
"url": "莫迪乌斯.jpg",
"lines": []
},
"110": {
"name": "菲林",
"url": "菲林.jpg",
"lines": []
},
"111": {
"name": "菲洛",
"url": "菲洛.png",
"lines": []
},
"112": {
"name": "葛饰北斋",
"url": "葛饰北斋.png",
"lines": []
},
"113": {
"name": "蕾塞",
"url": "蕾塞.jpg",
"lines": []
},
"114": {
"name": "蝴蝶忍",
"url": "蝴蝶忍.png",
"lines": []
},
"115": {
"name": "衣阿华",
"url": "衣阿华.jpg",
"lines": []
},
"116": {
"name": "谋勇兼备",
"url": "谋勇兼备.jpg",
"lines": []
},
"117": {
"name": "贞德",
"url": "贞德.png",
"lines": []
},
"118": {
"name": "路西法",
"url": "路西法.jpg",
"lines": []
},
"119": {
"name": "迦摩",
"url": "迦摩.png",
"lines": []
},
"120": {
"name": "铃园露露",
"url": "铃园露露.jpg",
"lines": []
},
"121": {
"name": "阿尼拉",
"url": "阿尼拉.jpg",
"lines": []
},
"122": {
"name": "阿比盖尔·威廉姆斯",
"url": "阿比盖尔·威廉姆斯.png",
"lines": []
},
"123": {
"name": "雏鹤爱",
"url": "雏鹤爱.png",
"lines": []
},
"124": {
"name": "雷电将军",
"url": "雷电将军.jpg",
"lines": []
},
"125": {
"name": "雷电芽衣",
"url": "雷电芽衣.png",
"lines": []
},
"126": {
"name": "雾雨魔理沙",
"url": "雾雨魔理沙.png",
"lines": []
},
"127": {
"name": "霞之秋诗羽",
"url": "霞之秋诗羽.png",
"lines": []
},
"128": {
"name": "静凛",
"url": "静凛.jpg",
"lines": []
},
"129": {
"name": "食蜂操祈",
"url": "食蜂操祈.png",
"lines": []
},
"130": {
"name": "香风智乃",
"url": "香风智乃.png",
"lines": []
},
"131": {
"name": "魂魄妖梦",
"url": "魂魄妖梦.png",
"lines": []
},
"132": {
"name": "黛冬优子",
"url": "黛冬优子.jpg",
"lines": []
}
}

BIN
wives/丸善斯基.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 272 KiB

BIN
wives/伊利亚.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 90 KiB

BIN
wives/伽莱翁.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 109 KiB

BIN
wives/佐伊.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 203 KiB

BIN
wives/克莱雅.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 136 KiB

BIN
wives/初音未来.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 837 KiB

BIN
wives/原村和.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 84 KiB

BIN
wives/哈泽丽拉.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 142 KiB

BIN
wives/响.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

BIN
wives/埃吉尔.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 850 KiB

BIN
wives/埃塞克斯.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 493 KiB

BIN
wives/夜夜.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1020 KiB

BIN
wives/大吉岭.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 78 KiB

BIN
wives/大和.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

BIN
wives/大和赤骥.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 161 KiB

BIN
wives/姬塔.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 92 KiB

BIN
wives/娜娜莫.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 645 KiB

BIN
wives/安丘比.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 87 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 820 KiB

BIN
wives/小栗帽.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 117 KiB

BIN
wives/新条茜.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 169 KiB

BIN
wives/月之美兔.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 KiB

BIN
wives/本间向日葵.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 116 KiB

BIN
wives/杜野凛世.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 833 KiB

BIN
wives/森中花咲.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 209 KiB

BIN
wives/椎名唯华.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 163 KiB

BIN
wives/樋口圆香.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 171 KiB

BIN
wives/樱木真乃.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 297 KiB

BIN
wives/派蒙.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 MiB

BIN
wives/焰.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 99 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 163 KiB

BIN
wives/玛奇玛.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 543 KiB

BIN
wives/目白阿尔丹.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 MiB

BIN
wives/碧卡拉.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 690 KiB

BIN
wives/福丸小糸.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 97 KiB

BIN
wives/童田明治.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 122 KiB

BIN
wives/维内托.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 334 KiB

BIN
wives/美浦波旁.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 186 KiB

BIN
wives/腓特烈大帝.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 208 KiB

BIN
wives/舰c时雨.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 676 KiB

BIN
wives/舰c欧根亲王.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 233 KiB

BIN
wives/舰c爱宕.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 90 KiB

BIN
wives/舰c苍龙.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 86 KiB

BIN
wives/舰c高雄.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

BIN
wives/舰r企业.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 97 KiB

BIN
wives/舰r列克星敦.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 KiB

BIN
wives/舰r提尔比茨.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

BIN
wives/芙劳.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 166 KiB

BIN
wives/芽衣.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 197 KiB

BIN
wives/莉洁娜.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 276 KiB

BIN
wives/莫迪乌斯.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 942 KiB

BIN
wives/菲林.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 167 KiB

BIN
wives/蕾塞.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 81 KiB

BIN
wives/衣阿华.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 133 KiB

BIN
wives/谋勇兼备.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

BIN
wives/路西法.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 342 KiB

BIN
wives/铃园露露.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 277 KiB

BIN
wives/阿尼拉.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 403 KiB

BIN
wives/雷电将军.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 124 KiB

BIN
wives/静凛.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 158 KiB

BIN
wives/黛冬优子.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 163 KiB