diff --git a/src/plugins/nonebot_bison/platform/mcbbsnews.py b/src/plugins/nonebot_bison/platform/mcbbsnews.py
new file mode 100644
index 0000000..23a127e
--- /dev/null
+++ b/src/plugins/nonebot_bison/platform/mcbbsnews.py
@@ -0,0 +1,265 @@
+import re
+import time
+from typing import Literal
+
+import httpx
+from bs4 import BeautifulSoup, NavigableString, Tag
+
+from ..post import Post
+from ..types import Category, RawPost, Target
+from .platform import CategoryNotSupport, NewMessage
+
+
+class McbbsNews(NewMessage):
+ categories = {1: "Java版本资讯", 2: "基岩版本资讯", 3: "快讯", 4: "基岩快讯", 5: "周边消息"}
+ enable_tag = False
+ platform_name = "mcbbsnews"
+ name = "MCBBS幻翼块讯"
+ enabled = True
+ is_common = False
+ schedule_type = "interval"
+ schedule_kw = {"hours": 1}
+ has_target = False
+
+ async def get_target_name(self, _: Target) -> str:
+ return self.name
+
+ async def get_sub_list(self, _: Target) -> list[RawPost]:
+ url = "https://www.mcbbs.net/forum-news-1.html"
+ headers = {
+ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) "
+ "Chrome/51.0.2704.63 Safari/537.36"
+ }
+
+ async with httpx.AsyncClient() as client:
+ html = await client.get(url, headers=headers)
+ soup = BeautifulSoup(html.text, "html.parser")
+ raw_post_list = soup.find_all(
+ "tbody", id=re.compile(r"normalthread_[0-9]*")
+ )
+ post_list = self._gen_post_list(raw_post_list)
+
+ return post_list
+
+ @staticmethod
+ def _format_text(rawtext: str, mode: int) -> str:
+ """处理BeautifulSoup生成的string中奇怪的回车+连续空格
+ mode 0:处理标题
+ mode 1:处理版本资讯类推文
+ mode 2:处理快讯类推文"""
+ if mode == 0:
+ ftext = re.sub(r"\n\s*", " ", rawtext)
+ elif mode == 1:
+ ftext = re.sub(r"[\n\s*]", "", rawtext)
+ elif mode == 2:
+ ftext = re.sub(r"\r\n", "", rawtext)
+ else:
+ raise NotImplementedError
+ return ftext
+
+ @staticmethod
+ def _stamp_date(rawdate: str) -> int:
+ """将时间转化为时间戳yyyy-mm-dd->timestamp"""
+ time_stamp = int(time.mktime(time.strptime(rawdate, "%Y-%m-%d")))
+ return time_stamp
+
+ def _gen_post_list(self, raw_post_list) -> list[RawPost]:
+ """解析生成推文列表"""
+ post_list = []
+ for raw_post in raw_post_list:
+ post = {}
+ post["url"] = raw_post.find("a", class_="s xst")["href"]
+ post["title"] = self._format_text(
+ raw_post.find("a", class_="s xst").string, 0
+ )
+ post["category"] = raw_post.select("th em a")[0].string
+ post["author"] = raw_post.select("td:nth-of-type(2) cite a")[0].string
+ post["id"] = raw_post["id"]
+ rawdate = (
+ raw_post.select("td:nth-of-type(2) em span span")[0]["title"]
+ if raw_post.select("td:nth-of-type(2) em span span")
+ else raw_post.select("td:nth-of-type(2) em span")[0].string
+ )
+ post["date"] = self._stamp_date(rawdate)
+ post_list.append(post)
+ return post_list
+
+ def get_id(self, post: RawPost) -> str:
+ return post["id"]
+
+ def get_date(self, post: RawPost) -> int:
+ # 获取datetime精度只到日期,故暂时舍弃
+ # return post["date"]
+ return None
+
+ def get_category(self, post: RawPost) -> Category:
+ if post["category"] == "Java版本资讯":
+ return Category(1)
+ elif post["category"] == "基岩版本资讯":
+ return Category(2)
+ else:
+ raise CategoryNotSupport("McbbsNews订阅暂不支持 `{}".format(post["category"]))
+
+ @staticmethod
+ def _check_str_chinese(check_str: str) -> bool:
+ """检测字符串是否含有中文(有一个就算)"""
+ for ch in check_str:
+ if "\u4e00" <= ch <= "\u9fff":
+ return True
+ return False
+
+ def _news_parser(self, raw_text: str, news_type: Literal["Java版本资讯", "基岩版本资讯"]):
+ """提取Java/Bedrock版本资讯的推送消息"""
+ raw_soup = BeautifulSoup(raw_text.replace("
", ""), "html.parser")
+ # 获取头图
+ if news_type == "Java版本资讯":
+ # 获取头图
+ pic_tag = raw_soup.find(
+ "img", file=re.compile(r"https://www.minecraft.net/\S*header.jpg")
+ )
+ pic_url: list[str] = (
+ [pic_tag.get("src", pic_tag.get("file"))] if pic_tag else []
+ )
+ # 获取blockquote标签下的内容
+ soup = raw_soup.find(
+ "td", id=re.compile(r"postmessage_[0-9]*")
+ ).blockquote.blockquote
+ elif news_type == "基岩版本资讯":
+ # 获取头图
+ pic_tag_0 = raw_soup.find(
+ "img", file=re.compile(r"https://www.minecraft.net/\S*header.jpg")
+ )
+ pic_tag_1 = raw_soup.find(
+ "img",
+ file=re.compile(r"https://feedback.minecraft.net/\S*beta\S*.jpg"),
+ )
+ pic_url: list[str] = [
+ pic_tag_0.get("src", pic_tag_0.get("file")) if pic_tag_0 else None,
+ pic_tag_1.get("src", pic_tag_1.get("file")) if pic_tag_1 else None,
+ ]
+ # 获取blockquote标签下的内容
+ soup = (
+ raw_soup.find("td", id=re.compile(r"postmessage_[0-9]*"))
+ .select("blockquote:nth-of-type(2)")[0]
+ .blockquote
+ )
+ else:
+ raise CategoryNotSupport(f"该函数不支持处理{news_type}")
+
+ # 通用步骤
+ # 删除无用的div和span段内容
+ for del_tag in soup.find_all(["div", "span"]):
+ del_tag.extract()
+ # 进一步删除无用尾部
+ # orig_info=soup.select("blockquote > strong")
+ # orig_info[0].extract()
+ # 展开所有的a,u和strong标签,展开ul,font标签里的font标签
+ for unwrap_tag in soup.find_all(["a", "strong", "u", "ul", "font"]):
+ if unwrap_tag.name in ["a", "strong", "u"]: # 展开所有的a,u和strong标签
+ unwrap_tag.unwrap()
+ elif unwrap_tag.name in ["ul", "font"]: # 展开ul,font里的font标签
+ for font_tag in unwrap_tag.find_all("font"):
+ font_tag.unwrap()
+
+ # 获取所有的中文句子
+ post_text = ""
+ last_is_empty_line = True
+ for element in soup.contents:
+ if isinstance(element, Tag):
+ if element.name == "font":
+ text = ""
+ for sub in element.contents:
+ if isinstance(sub, NavigableString):
+ text += sub
+ if self._check_str_chinese(text):
+ post_text += "{}\n".format(self._format_text(text, 1))
+ last_is_empty_line = False
+ elif element.name == "ul":
+ for li_tag in element.find_all("li"):
+ text = ""
+ for sub in li_tag.contents:
+ if isinstance(sub, NavigableString):
+ text += sub
+ if self._check_str_chinese(text):
+ post_text += "{}\n".format(self._format_text(text, 1))
+ last_is_empty_line = False
+ else:
+ continue
+ elif isinstance(element, NavigableString):
+ if str(element) == "\n":
+ if not last_is_empty_line:
+ post_text += "\n"
+ last_is_empty_line = True
+ else:
+ post_text += "{}\n".format(self._format_text(element, 1))
+ last_is_empty_line = False
+ else:
+ continue
+ return post_text, pic_url
+
+ def _express_parser(self, raw_text: str, news_type: Literal["快讯", "基岩快讯", "周边消息"]):
+ """提取快讯/基岩快讯/周边消息的推送消息"""
+ raw_soup = BeautifulSoup(raw_text.replace("
", ""), "html.parser")
+ # 获取原始推文内容
+ soup = raw_soup.find("td", id=re.compile(r"postmessage_[0-9]*"))
+ if tag := soup.find("ignore_js_op"):
+ tag.extract()
+ # 获取所有图片
+ pic_urls = []
+ for img_tag in soup.find_all("img"):
+ pic_url = img_tag.get("file") or img_tag.get("src")
+ pic_urls.append(pic_url)
+ # 验证是否有blockquote标签
+ has_bolockquote = soup.find("blockquote")
+ # 删除无用的span,div段内容
+ for del_tag in soup.find_all("i"):
+ del_tag.extract()
+ if extag := soup.find(class_="attach_nopermission attach_tips"):
+ extag.extract()
+ # 展开所有的a,strong标签
+ for unwrap_tag in soup.find_all(["a", "strong"]):
+ unwrap_tag.unwrap()
+ # 展开blockquote标签里的blockquote标签
+ for b_tag in soup.find_all("blockquote"):
+ for unwrap_tag in b_tag.find_all("blockquote"):
+ unwrap_tag.unwrap()
+ # 获取推文
+ text = ""
+ if has_bolockquote:
+ for post in soup.find_all("blockquote"):
+ # post.font.unwrap()
+ for string in post.stripped_strings:
+ text += "{}\n".format(string)
+ else:
+ for string in soup.stripped_strings:
+ text += "{}\n".format(string)
+ ftext = self._format_text(text, 2)
+ return ftext, pic_urls
+
+ async def parse(self, raw_post: RawPost) -> Post:
+ """获取并分配正式推文交由相应的函数解析"""
+ post_url = "https://www.mcbbs.net/{}".format(raw_post["url"])
+ headers = {
+ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) "
+ "Chrome/51.0.2704.63 Safari/537.36"
+ }
+
+ async with httpx.AsyncClient() as client:
+ html = await client.get(post_url, headers=headers)
+
+ if raw_post["category"] in ["Java版本资讯", "基岩版本资讯"]:
+ # 事先删除不需要的尾部
+ raw_text = re.sub(r"【本文排版借助了:[\s\S]*】", "", html.text)
+ text, pic_urls = self._news_parser(raw_text, raw_post["category"])
+ elif raw_post["category"] in ["快讯", "基岩快讯", "周边消息"]:
+ text, pic_urls = self._express_parser(html.text, raw_post["category"])
+ else:
+ raise CategoryNotSupport("McbbsNews订阅暂不支持 `{}".format(raw_post["category"]))
+
+ return Post(
+ self.name,
+ text="{}\n\n{}".format(raw_post["title"], text),
+ url=post_url,
+ pics=pic_urls,
+ target_name=raw_post["category"],
+ )
diff --git a/tests/platforms/static/mcbbsnews/mcbbsnews_raw_post_list.json b/tests/platforms/static/mcbbsnews/mcbbsnews_raw_post_list.json
new file mode 100644
index 0000000..7c2f166
--- /dev/null
+++ b/tests/platforms/static/mcbbsnews/mcbbsnews_raw_post_list.json
@@ -0,0 +1,218 @@
+[
+ {
+ "url": "thread-1340080-1-1.html",
+ "title": "Mojang Status:服务器出现一些小问题",
+ "category": "快讯",
+ "author": "DreamVoid",
+ "id": "normalthread_1340080",
+ "date": 1652630400
+ },
+ {
+ "url": "thread-1339940-1-1.html",
+ "title": "kinbdogz 就近期荒野更新的风波发表看法",
+ "category": "快讯",
+ "author": "卡狗",
+ "id": "normalthread_1339940",
+ "date": 1652630400
+ },
+ {
+ "url": "thread-1339097-1-1.html",
+ "title": "Minecraft 基岩版 1.18.33 发布(仅 Switch)",
+ "category": "基岩版本资讯",
+ "author": "电量量",
+ "id": "normalthread_1339097",
+ "date": 1652457600
+ },
+ {
+ "url": "thread-1338607-1-1.html",
+ "title": "Minecraft Java版 22w19a 发布",
+ "category": "Java版本资讯",
+ "author": "寂华",
+ "id": "normalthread_1338607",
+ "date": 1652371200
+ },
+ {
+ "url": "thread-1338592-1-1.html",
+ "title": "Minecraft 基岩版 Beta & Preview 1.19.0.32/33 发布",
+ "category": "基岩版本资讯",
+ "author": "苦力怕553",
+ "id": "normalthread_1338592",
+ "date": 1652371200
+ },
+ {
+ "url": "thread-1338588-1-1.html",
+ "title": "请给我们一个真正的“荒野更新”",
+ "category": "时评",
+ "author": "斯乌",
+ "id": "normalthread_1338588",
+ "date": 1652371200
+ },
+ {
+ "url": "thread-1338496-1-1.html",
+ "title": "slicedlime:周三无快照,推迟至周四",
+ "category": "快讯",
+ "author": "橄榄Chan",
+ "id": "normalthread_1338496",
+ "date": 1652198400
+ },
+ {
+ "url": "thread-1336371-1-1.html",
+ "title": "Minecraft 基岩版 1.18.32 发布(仅 Android、NS)【新增 NS 平台】",
+ "category": "基岩版本资讯",
+ "author": "电量量",
+ "id": "normalthread_1336371",
+ "date": 1651766400
+ },
+ {
+ "url": "thread-1335897-1-1.html",
+ "title": "Minecraft 基岩版 Beta & Preview 1.19.0.30/31 发布",
+ "category": "基岩版本资讯",
+ "author": "AzureZeng",
+ "id": "normalthread_1335897",
+ "date": 1651680000
+ },
+ {
+ "url": "thread-1335891-1-1.html",
+ "title": "Minecraft Java版 22w18a 发布",
+ "category": "Java版本资讯",
+ "author": "Aurora_Feather",
+ "id": "normalthread_1335891",
+ "date": 1651680000
+ },
+ {
+ "url": "thread-1333196-1-1.html",
+ "title": "Minecraft 基岩版 Beta & Preview 1.19.0.28/29 发布",
+ "category": "基岩版本资讯",
+ "author": "希铁石z",
+ "id": "normalthread_1333196",
+ "date": 1651161600
+ },
+ {
+ "url": "thread-1332834-1-1.html",
+ "title": "Minecraft 基岩版 1.18.31 发布",
+ "category": "基岩版本资讯",
+ "author": "希铁石z",
+ "id": "normalthread_1332834",
+ "date": 1651075200
+ },
+ {
+ "url": "thread-1332811-1-1.html",
+ "title": "Minecraft Java版 22w17a 发布",
+ "category": "Java版本资讯",
+ "author": "卡狗",
+ "id": "normalthread_1332811",
+ "date": 1651075200
+ },
+ {
+ "url": "thread-1332424-1-1.html",
+ "title": "Mojang Status:正在寻找1.18.30更新问题的解决方案",
+ "category": "基岩快讯",
+ "author": "ArmorRush",
+ "id": "normalthread_1332424",
+ "date": 1650988800
+ },
+ {
+ "url": "thread-1329712-1-1.html",
+ "title": "Minecraft 基岩版 Beta & Preview 1.19.0.26/27 发布",
+ "category": "基岩版本资讯",
+ "author": "ArmorRush",
+ "id": "normalthread_1329712",
+ "date": 1650470400
+ },
+ {
+ "url": "thread-1329651-1-1.html",
+ "title": "Minecraft Java版 22w16b 发布",
+ "category": "Java版本资讯",
+ "author": "卡狗",
+ "id": "normalthread_1329651",
+ "date": 1650470400
+ },
+ {
+ "url": "thread-1329644-1-1.html",
+ "title": "Minecraft Java版 22w16a 发布",
+ "category": "Java版本资讯",
+ "author": "希铁石z",
+ "id": "normalthread_1329644",
+ "date": 1650470400
+ },
+ {
+ "url": "thread-1329335-1-1.html",
+ "title": "Minecraft 基岩版 1.18.30 发布",
+ "category": "基岩版本资讯",
+ "author": "ArmorRush",
+ "id": "normalthread_1329335",
+ "date": 1650384000
+ },
+ {
+ "url": "thread-1328892-1-1.html",
+ "title": "“海王” 杰森·莫玛 有望主演《我的世界》大电影",
+ "category": "快讯",
+ "author": "广药",
+ "id": "normalthread_1328892",
+ "date": 1650297600
+ },
+ {
+ "url": "thread-1327089-1-1.html",
+ "title": "Minecraft 基岩版 Beta & Preview 1.19.0.24/25 发布",
+ "category": "基岩版本资讯",
+ "author": "ArmorRush",
+ "id": "normalthread_1327089",
+ "date": 1649952000
+ },
+ {
+ "url": "thread-1326640-1-1.html",
+ "title": "Minecraft Java版 22w15a 发布",
+ "category": "Java版本资讯",
+ "author": "ArmorRush",
+ "id": "normalthread_1326640",
+ "date": 1649865600
+ },
+ {
+ "url": "thread-1323762-1-1.html",
+ "title": "Minecraft 基岩版 Beta & Preview 1.19.0.20 发布",
+ "category": "基岩版本资讯",
+ "author": "ArmorRush",
+ "id": "normalthread_1323762",
+ "date": 1649260800
+ },
+ {
+ "url": "thread-1323662-1-1.html",
+ "title": "Minecraft Java版 22w14a 发布",
+ "category": "Java版本资讯",
+ "author": "卡狗",
+ "id": "normalthread_1323662",
+ "date": 1649260800
+ },
+ {
+ "url": "thread-1321419-1-1.html",
+ "title": "[愚人节] Minecraft Java版 22w13oneBlockAtATime 发布",
+ "category": "Java版本资讯",
+ "author": "希铁石z",
+ "id": "normalthread_1321419",
+ "date": 1648742400
+ },
+ {
+ "url": "thread-1320986-1-1.html",
+ "title": "Minecraft:近期没有为主机平台添加光线追踪的计划",
+ "category": "基岩快讯",
+ "author": "ArmorRush",
+ "id": "normalthread_1320986",
+ "date": 1648742400
+ },
+ {
+ "url": "thread-1320931-1-1.html",
+ "title": "Minecraft Java版 22w13a 发布",
+ "category": "Java版本资讯",
+ "author": "卡狗",
+ "id": "normalthread_1320931",
+ "date": 1648742400
+ },
+ {
+ "url": "thread-1342236-1-1.html",
+ "title": "Minecraft: 加入Microsoft Rewards赢取限量Xbox Series S",
+ "category": "周边消息",
+ "author": "ETW_Derp",
+ "id": "normalthread_1342236",
+ "date": 1648742400
+ }
+]
diff --git a/tests/platforms/static/mcbbsnews/mcbbsnews_raw_post_list_update.json b/tests/platforms/static/mcbbsnews/mcbbsnews_raw_post_list_update.json
new file mode 100644
index 0000000..6229393
--- /dev/null
+++ b/tests/platforms/static/mcbbsnews/mcbbsnews_raw_post_list_update.json
@@ -0,0 +1,218 @@
+[
+ {
+ "url": "thread-1340927-1-1.html",
+ "title": "Minecraft Java版 1.19-pre1 发布",
+ "category": "Java版本资讯",
+ "author": "希铁石z",
+ "id": "normalthread_1340927",
+ "date": 1652889600
+ },
+ {
+ "url": "thread-1340080-1-1.html",
+ "title": "Mojang Status:服务器出现一些小问题",
+ "category": "快讯",
+ "author": "DreamVoid",
+ "id": "normalthread_1340080",
+ "date": 1652630400
+ },
+ {
+ "url": "thread-1339940-1-1.html",
+ "title": "kinbdogz 就近期荒野更新的风波发表看法",
+ "category": "快讯",
+ "author": "卡狗",
+ "id": "normalthread_1339940",
+ "date": 1652630400
+ },
+ {
+ "url": "thread-1339097-1-1.html",
+ "title": "Minecraft 基岩版 1.18.33 发布(仅 Switch)",
+ "category": "基岩版本资讯",
+ "author": "电量量",
+ "id": "normalthread_1339097",
+ "date": 1652457600
+ },
+ {
+ "url": "thread-1338607-1-1.html",
+ "title": "Minecraft Java版 22w19a 发布",
+ "category": "Java版本资讯",
+ "author": "寂华",
+ "id": "normalthread_1338607",
+ "date": 1652371200
+ },
+ {
+ "url": "thread-1338592-1-1.html",
+ "title": "Minecraft 基岩版 Beta & Preview 1.19.0.32/33 发布",
+ "category": "基岩版本资讯",
+ "author": "苦力怕553",
+ "id": "normalthread_1338592",
+ "date": 1652371200
+ },
+ {
+ "url": "thread-1338588-1-1.html",
+ "title": "请给我们一个真正的“荒野更新”",
+ "category": "时评",
+ "author": "斯乌",
+ "id": "normalthread_1338588",
+ "date": 1652371200
+ },
+ {
+ "url": "thread-1338496-1-1.html",
+ "title": "slicedlime:周三无快照,推迟至周四",
+ "category": "快讯",
+ "author": "橄榄Chan",
+ "id": "normalthread_1338496",
+ "date": 1652198400
+ },
+ {
+ "url": "thread-1336371-1-1.html",
+ "title": "Minecraft 基岩版 1.18.32 发布(仅 Android、NS)【新增 NS 平台】",
+ "category": "基岩版本资讯",
+ "author": "电量量",
+ "id": "normalthread_1336371",
+ "date": 1651766400
+ },
+ {
+ "url": "thread-1335897-1-1.html",
+ "title": "Minecraft 基岩版 Beta & Preview 1.19.0.30/31 发布",
+ "category": "基岩版本资讯",
+ "author": "AzureZeng",
+ "id": "normalthread_1335897",
+ "date": 1651680000
+ },
+ {
+ "url": "thread-1335891-1-1.html",
+ "title": "Minecraft Java版 22w18a 发布",
+ "category": "Java版本资讯",
+ "author": "Aurora_Feather",
+ "id": "normalthread_1335891",
+ "date": 1651680000
+ },
+ {
+ "url": "thread-1333196-1-1.html",
+ "title": "Minecraft 基岩版 Beta & Preview 1.19.0.28/29 发布",
+ "category": "基岩版本资讯",
+ "author": "希铁石z",
+ "id": "normalthread_1333196",
+ "date": 1651161600
+ },
+ {
+ "url": "thread-1332834-1-1.html",
+ "title": "Minecraft 基岩版 1.18.31 发布",
+ "category": "基岩版本资讯",
+ "author": "希铁石z",
+ "id": "normalthread_1332834",
+ "date": 1651075200
+ },
+ {
+ "url": "thread-1332811-1-1.html",
+ "title": "Minecraft Java版 22w17a 发布",
+ "category": "Java版本资讯",
+ "author": "卡狗",
+ "id": "normalthread_1332811",
+ "date": 1651075200
+ },
+ {
+ "url": "thread-1332424-1-1.html",
+ "title": "Mojang Status:正在寻找1.18.30更新问题的解决方案",
+ "category": "基岩快讯",
+ "author": "ArmorRush",
+ "id": "normalthread_1332424",
+ "date": 1650988800
+ },
+ {
+ "url": "thread-1329712-1-1.html",
+ "title": "Minecraft 基岩版 Beta & Preview 1.19.0.26/27 发布",
+ "category": "基岩版本资讯",
+ "author": "ArmorRush",
+ "id": "normalthread_1329712",
+ "date": 1650470400
+ },
+ {
+ "url": "thread-1329651-1-1.html",
+ "title": "Minecraft Java版 22w16b 发布",
+ "category": "Java版本资讯",
+ "author": "卡狗",
+ "id": "normalthread_1329651",
+ "date": 1650470400
+ },
+ {
+ "url": "thread-1329644-1-1.html",
+ "title": "Minecraft Java版 22w16a 发布",
+ "category": "Java版本资讯",
+ "author": "希铁石z",
+ "id": "normalthread_1329644",
+ "date": 1650470400
+ },
+ {
+ "url": "thread-1329335-1-1.html",
+ "title": "Minecraft 基岩版 1.18.30 发布",
+ "category": "基岩版本资讯",
+ "author": "ArmorRush",
+ "id": "normalthread_1329335",
+ "date": 1650384000
+ },
+ {
+ "url": "thread-1328892-1-1.html",
+ "title": "“海王” 杰森·莫玛 有望主演《我的世界》大电影",
+ "category": "快讯",
+ "author": "广药",
+ "id": "normalthread_1328892",
+ "date": 1650297600
+ },
+ {
+ "url": "thread-1327089-1-1.html",
+ "title": "Minecraft 基岩版 Beta & Preview 1.19.0.24/25 发布",
+ "category": "基岩版本资讯",
+ "author": "ArmorRush",
+ "id": "normalthread_1327089",
+ "date": 1649952000
+ },
+ {
+ "url": "thread-1326640-1-1.html",
+ "title": "Minecraft Java版 22w15a 发布",
+ "category": "Java版本资讯",
+ "author": "ArmorRush",
+ "id": "normalthread_1326640",
+ "date": 1649865600
+ },
+ {
+ "url": "thread-1323762-1-1.html",
+ "title": "Minecraft 基岩版 Beta & Preview 1.19.0.20 发布",
+ "category": "基岩版本资讯",
+ "author": "ArmorRush",
+ "id": "normalthread_1323762",
+ "date": 1649260800
+ },
+ {
+ "url": "thread-1323662-1-1.html",
+ "title": "Minecraft Java版 22w14a 发布",
+ "category": "Java版本资讯",
+ "author": "卡狗",
+ "id": "normalthread_1323662",
+ "date": 1649260800
+ },
+ {
+ "url": "thread-1321419-1-1.html",
+ "title": "[愚人节] Minecraft Java版 22w13oneBlockAtATime 发布",
+ "category": "Java版本资讯",
+ "author": "希铁石z",
+ "id": "normalthread_1321419",
+ "date": 1648742400
+ },
+ {
+ "url": "thread-1320986-1-1.html",
+ "title": "Minecraft:近期没有为主机平台添加光线追踪的计划",
+ "category": "基岩快讯",
+ "author": "ArmorRush",
+ "id": "normalthread_1320986",
+ "date": 1648742400
+ },
+ {
+ "url": "thread-1320931-1-1.html",
+ "title": "Minecraft Java版 22w13a 发布",
+ "category": "Java版本资讯",
+ "author": "卡狗",
+ "id": "normalthread_1320931",
+ "date": 1648742400
+ }
+]
diff --git a/tests/platforms/static/mcbbsnews/mock/mcbbsnews_bedrock_express.html b/tests/platforms/static/mcbbsnews/mock/mcbbsnews_bedrock_express.html
new file mode 100644
index 0000000..669c750
--- /dev/null
+++ b/tests/platforms/static/mcbbsnews/mock/mcbbsnews_bedrock_express.html
@@ -0,0 +1,4406 @@
+
+
+
+
+
+ 1406
+
+
+ |
+
+
+
+ 12
+
+
+
+ |
+
+
+ + + [基岩快讯] + + + Mojang Status:正在寻找1.18.30更新问题的解决方案 + ++ + |
+
+ | ++ | +
+
+
+
+
+
+
+ ArmorRush
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ArmorRush
+
+
+
+ 当前离线
+
+
+
+
+
+ ![]()
+
+
+
+
+
+
+
+
+ ![]() |
+
+
+
+
+
+
+
+
+
+
+
+ + + + 评分 ++
|
+ ||||||||||||||
+
+
+
+
+
+ 帖子永久链接:
+
+
+
+
+
+ |
+ |||||||||||||||
+ | ++ + | +||||||||||||||
+ | ++ | +
+
+
+
+
+
+
+ xq23455
+
+
+
+
+
+
+
+
+
+
+
+
+
+ xq23455
+
+
+
+ 当前离线
+
+
+
+
+
+ ![]()
+
+
+
+
+
+
+
+
+ ![]() |
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+ |
+ | +||
+ | ++ + | +|
+ | ++ | +
+
+
+
+
+
+
+ ArmorRush
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ArmorRush
+
+
+
+ 当前离线
+
+
+
+
+
+ ![]()
+
+
+
+
+
+
+
+
+ ![]() |
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+ |
+ | +||
+ | ++ + | +|
+ | ++ | +
+ + | +
+
+
+
+
+
+
+
+
+
+
+
+ |
+ |
+ | +||
+ | ++ + | +|
+ | ++ | +
+
+
+
+
+
+
+ moshui662
+
+
+
+
+
+
+
+
+
+
+
+
+
+ moshui662
+
+
+
+ 当前离线
+
+
+
+
+
+ ![]()
+
+
+
+
+
+
+
+
+ ![]() |
+
+
+
+
+
+ 5
+
+
+ #
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+ |
+ | +||
+ | ++ + | +|
+ | ++ | +
+
+
+
+
+
+
+ Mplan_
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Mplan_
+
+
+
+ 当前离线
+
+
+
+
+
+ ![]()
+
+
+
+
+
+
+
+
+ ![]() |
+
+
+
+
+
+ 6
+
+
+ #
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+ |
+ | +||
+ | ++ + | +|
+ | ++ | +
+
+
+
+
+
+
+ AzureZeng
+
+
+
+
+
+
+
+
+
+
+
+
+
+ AzureZeng
+
+
+
+ 当前离线
+
+
+
+
+
+ ![]()
+
+
+
+
+
+
+
+
+ ![]() |
+
+
+
+
+
+ 7
+
+
+ #
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+ |
+ | +||
+ | ++ + | +|
+ | ++ | +
+
+
+
+
+
+
+ wosun117
+
+
+
+
+
+
+
+
+
+
+
+
+
+ wosun117
+
+
+
+ 当前离线
+
+
+
+
+
+ ![]()
+
+
+
+
+
+
+
+
+ ![]() |
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+ |
+ | +||
+ | ++ + | +|
+ | ++ | +
+
+
+
+
+
+
+ TS_剑雨星辰
+
+
+
+
+
+
+
+
+
+
+
+
+
+ TS_剑雨星辰
+
+
+
+ 当前离线
+
+
+
+
+
+ ![]()
+
+
+
+
+
+
+
+
+ ![]() |
+
+
+
+
+
+ 9
+
+
+ #
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+ |
+ | +||
+ | ++ + | +|
+ | ++ | +
+
+
+
+
+
+
+ TS_剑雨星辰
+
+
+
+
+
+
+
+
+
+
+
+
+
+ TS_剑雨星辰
+
+
+
+ 当前离线
+
+
+
+
+
+ ![]()
+
+
+
+
+
+
+
+
+ ![]() |
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+ |
+ | +||
+ | ++ + | +|
+ | ++ | +
+ + | +
+
+
+
+
+
+
+
+
+
+
+
+ |
+ |
+ | +||
+ | ++ + | +|
+ | ++ | +
+ + | +
+
+
+
+
+ 12
+
+
+ #
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+ |
+ | +||
+ | ++ + | +|
+ | ++ | +
+ + | +
+
+
+
+
+ 13
+
+
+ #
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+ |
+ | +||
+ | ++ + | +|
+ | ++ | +
+
+ Archiver
+
+
+ |
+
+
+ 小黑屋
+
+
+ |
+
+
+
+ Mcbbs.net
+
+
+ (
+
+ 京ICP备15023768号-1
+
+ ) |
+
+
+ 京公网安备 11010502037624号
+
+ |
+
+
+ 手机版
+
+
+
+ GMT+8, 2022-5-22 22:58 + + , Processed in 0.049426 second(s), Total 25, Slave 24 queries, Release: Build.2022.05.20 1436, Gzip On, Redis On. + + +
++ " + + Minecraft + + "以及"我的世界"为美国微软公司的商标 本站与微软公司没有从属关系 +
++ © 2010-2022 + + 我的世界中文论坛 + + 版权所有 本站内原创内容版权属于其原创作者,除作者或版规特别声明外未经许可不得转载 +
+
+
+ 2940| 7
+
+ |
+
+
+ + [基岩版本资讯] + Minecraft 基岩版 Beta & Preview 1.19.0.32/33 + 发布 ++ + |
+
+ | ++ | +
+ + | +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 评分+ + |
+ |||||||||
+
+
+
+
+ 帖子永久链接:
+ + + 呐呐,
+ + 要不要来看看我的 + B站主页 + |
+ ||||||||||
+ | + + | +|||||||||
+ | ++ | +
+ + | ++ + + + | +
+ | +|
+ | + + | +
+ | ++ | +
+ + | ++ + + + | +
+ | +|
+ | + + | +
+ | ++ | +
+ + | +
+
+
+
+
+
+
+
+
+
+
+
+ 评分+ + |
+ |
+ 呐呐,
+ + 要不要来看看我的 + B站主页 + |
+ ||
+ | + + | +|
+ | ++ | +
+
+
+
+
+
+
+
+
+
+
+
+
+
+ a760243820
+ 当前离线
+
+
+
+
+
+
+
+ 头像被屏蔽
+ + + + +
|
+
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+ |
+ | +||
+ | + + | +|
+ | ++ | +
+ + | +
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+ |
+ | +||
+ | + + | +|
+ | ++ | +
+ + | +
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+ |
+ | +||
+ | + + | +|
+ | ++ | +
+ + | ++ + + + | +
+ + | +|
+ | + + | +
+ | ++ | +
+ Archiver|小黑屋|Mcbbs.net
+ ( 京ICP备15023768号-1 ) | 京公网安备
+ 11010502037624号 |
+ 手机版
+
+
+
+ GMT+8, 2022-6-5 14:01 + , Processed in 0.145592 second(s), Total 34, Slave 33 queries, Release: Build.2022.05.30 1905, + Gzip On, Redis On. + + +
+"Minecraft"以及"我的世界"为美国微软公司的商标 本站与微软公司没有从属关系 +
+© 2010-2022 我的世界中文论坛 版权所有 + 本站内原创内容版权属于其原创作者,除作者或版规特别声明外未经许可不得转载
+
+
+1612| 3
+
+ |
+
+
++[快讯] +(已恢复)Mojang Status:服务器出现一些小问题 ++ + |
+
+ | ++ | +
+ + | +
+
+
+
+
+
+
+
+
+评分+
| |||||||||||||||
+ 帖子永久链接: |
+||||||||||||||||
+ | + + | +|||||||||||||||
+ | ++ | +
+ + | +
+
+
+
+
+
+
+
+
+ | |
+ | +||
+ | + + | +|
+ | ++ | +
+ + | +
+
+
+
+
+
+
+
+
+ | |
+ | +||
+ | + + | +|
+ | ++ | +
+ + | +
+
+
+
+
+
+
+
+
+ | |
+ | +||
+ | + + | +|
+ | ++ | +
+Archiver|小黑屋|Mcbbs.net
+( 京ICP备15023768号-1 ) | 京公网安备 11010502037624号 | 手机版
+
+
+
+GMT+8, 2022-6-5 15:00 +, Processed in 0.086316 second(s), Total 31, Slave 29 queries, Release: Build.2022.05.30 1905, Gzip On, Redis On. + + +
+"Minecraft"以及"我的世界"为美国微软公司的商标 本站与微软公司没有从属关系
+© 2010-2022 我的世界中文论坛 版权所有 本站内原创内容版权属于其原创作者,除作者或版规特别声明外未经许可不得转载
+
+
+ 5774| 47
+
+ |
+
+
+ + [Java版本资讯] + Minecraft Java版 22w19a 发布 ++ + |
+
+ | ++ | +
+ + | +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 评分+
|
+ |||||||||||||||||||||||||||||||||||||||||||||
+
+
+
+
+ 帖子永久链接:
+ + + |
+ ||||||||||||||||||||||||||||||||||||||||||||||
+ | + + | +|||||||||||||||||||||||||||||||||||||||||||||
+ | ++ | +
+ + | +
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+ |
+ | +||
+ | + + | +|
+ | ++ | +
+ + | +
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+ |
+ | +||
+ | + + | +|
+ | ++ | +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Burning_snow
+ 当前离线
+
+
+ + + + + ++ + +
|
+
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+ |
+ ![]() + + 本帖最后由 阴阳师元素祭祀 于 1分钟前 关闭 + + [1.14.4/MOD]噔噔咚MOD + + + + [1.15x~1.16.x | 64x] + Simple 3D + / + Shark + + + ![]() |
+ ||
+ | + + | +|
+ | ++ | +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + + + + +
|
+
+
+
+
+
+
+
+
+
+
+
+
+ 评分+
|
+ |||||||
+ + | +||||||||
+ | + + | +|||||||
+ | ++ | +
+ + | +
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+ |
+
+ 起床战争守床老艺术家
+ + 著名阴间学家,阴乐霉术大师 ![]() + + 我的wiki + |我的空间 + 累计挖矿消耗金粒:600|累计致负卡消耗金粒:1500 + |累计挖掘卡消耗金粒:1060 + + + |举 报净获得金粒:1005 + + 拒绝以做任务为理由的好友申请 + + + 拒绝六级及以下不加理由的好友申请 + + ![]() |
+ ||
+ | + + | +|
+ | ++ | +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ miller8887090
+ 当前在线
+
+
+ + + + + + + +
|
+
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+ |
+ + | +||
+ | + + | +|
+ | ++ | +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ xiao_qi_zi
+ 当前离线
+
+
+ + + + + + + +
|
+
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+ |
+ | +||
+ | + + | +|
+ | ++ | +
+ + | +
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+ |
+ ![]() ![]() |
+ ||
+ | + + | +|
+ | ++ | +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + + + + + + +
|
+
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+ |
+ | +||
+ | + + | +|
+ | ++ | +
+ + | +
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+ |
+ + | +||
+ | + + | +|
+ | ++ | +
+ + | +
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+ |
+ | +||
+ | + + | +|
+ | ++ | +
+ + | +
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+ |
+ + | +||
+ | + + | +|
+ | ++ | +
+ + | +
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+ |
+ | +||
+ | + + | +|
+ | ++ | +
+ + | +
+
+
+
+
+
+
+
+
+
+
+
+ 评分+ + |
+ |
+ + | +||
+ | + + | +|
+ | ++ | +
+ Archiver|小黑屋|Mcbbs.net
+ ( 京ICP备15023768号-1 ) | 京公网安备
+ 11010502037624号 |
+ 手机版
+
+
+
+ GMT+8, 2022-6-5 13:58 + , Processed in 0.163479 second(s), Total 44, Slave 42 queries, Release: Build.2022.05.30 1905, + Gzip On, Redis On. + + +
+"Minecraft"以及"我的世界"为美国微软公司的商标 本站与微软公司没有从属关系 +
+© 2010-2022 我的世界中文论坛 版权所有 + 本站内原创内容版权属于其原创作者,除作者或版规特别声明外未经许可不得转载
+
+
+996| 8
+
+ |
+
+
++[周边消息] +Minecraft: 加入Microsoft Rewards赢取限量Xbox Series S ++ + |
+
+ | ++ | +
+ + | +
+
+
+
+
+
+
+
+
+评分+ + | ||
+ 帖子永久链接:
+ ![]() + ![]() + |
+|||
+ | + + | +||
+ | ++ | +
+ + | ++ + + |
+ 搬运 | 资源包 | 这些萌萌哒的怪物你一定喜欢! > 在 MCBBS V4 查看 >
++搬运 | 汉化 | 地图 | 让我们去海岛游玩放松放松 > 在 MCBBS V4 查看 > + +访问我的个人 Blog > + + +以上文字都可以戳awa |
+|
+ | + + | +
+ | ++ | +
+ + | +
+
+
+
+
+
+
+
+
+ | |
+ | +||
+ | + + | +|
+ | ++ | +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+a136569113
+当前离线
+
+
+ + + + + + + +
|
+
+
+
+
+
+
+
+
+
+ | |
+ 有开心的工作就做到死吧
+ |
+||
+ | + + | +|
+ | ++ | +
+ + | +
+
+
+
+
+
+
+
+
+ | |
+ 仰羡黄昏鸟,投林羽翮轻。
++ ——杜甫《独坐》 + + ![]() |
+||
+ | + + | +|
+ | ++ | +
+ + | +
+
+
+
+
+
+
+
+
+ | |
+ + | +||
+ | + + | +|
+ | ++ | +
+ + | +
+
+
+
+
+
+
+
+
+ | |
+ 有鸡的地方就会有影鼠捏,,,
+ |
+||
+ | + + | +|
+ | ++ | +
+ + | +
+
+
+
+
+
+
+
+
+ | |
+![]() + |
+||
+ | + + | +|
+ | ++ | +
+ + | +
+
+
+
+
+
+
+
+
+ | |
+ + | +||
+ | + + | +|
+ | ++ | +
+Archiver|小黑屋|Mcbbs.net
+( 京ICP备15023768号-1 ) | 京公网安备 11010502037624号 | 手机版
+
+
+
+GMT+8, 2022-6-5 14:28 +, Processed in 0.115639 second(s), Total 34, Slave 33 queries, Release: Build.2022.05.30 1905, Gzip On, Redis On. + + +
+"Minecraft"以及"我的世界"为美国微软公司的商标 本站与微软公司没有从属关系
+© 2010-2022 我的世界中文论坛 版权所有 本站内原创内容版权属于其原创作者,除作者或版规特别声明外未经许可不得转载
+
+
+
+ 1622
+
+
+ |
+
+
+
+ 26
+
+
+
+ |
+
+
+ + + [Java版本资讯] + + + Minecraft Java版 1.19-pre1 发布 + ++ + |
+
+ | ++ | +
+ + | +
+
+
+
+
+
+
+
+
+
+
+
+ + + + 评分 ++
|
+ |||||||||||||||||||||||||||||||||
+
+
+
+
+
+ 帖子永久链接:
+
+
+
+
+
+ |
+ ||||||||||||||||||||||||||||||||||
+ | ++ + | +|||||||||||||||||||||||||||||||||
+ | ++ | +
+ + | +
+
+
+
+
+
+
+
+
+
+ + + + 评分 ++
|
+ |||||||
+ | +||||||||
+ | ++ + | +|||||||
+ | ++ | +
+ + | +
+
+
+
+
+
+
+
+
+
+
+
+ |
+ |
+ | +||
+ | ++ + | +|
+ | ++ | +
+ + | +
+
+
+
+
+
+
+
+
+
+
+
+ |
+ |
+ | +||
+ | ++ + | +|
+ | ++ | +
+
+
+
+
+
+
+ AzureZeng
+
+
+
+
+
+
+
+
+
+
+
+
+
+ AzureZeng
+
+
+
+ 当前离线
+
+
+
+
+
+ ![]()
+
+
+
+
+
+
+
+
+ ![]() |
+
+
+
+
+
+ 5
+
+
+ #
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+ |
+ | +||
+ | ++ + | +|
+ | ++ | +
+
+
+
+
+
+
+ 10935336
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 10935336
+
+
+
+ 当前离线
+
+
+
+
+
+ ![]()
+
+
+
+
+
+
+
+
+ ![]() |
+
+
+
+
+
+ 6
+
+
+ #
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+ |
+ | +||
+ | ++ + | +|
+ | ++ | +
+
+
+
+
+
+
+ 164ebr
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 164ebr
+
+
+
+ 当前离线
+
+
+
+
+
+ ![]()
+
+
+
+
+
+
+
+
+ ![]() |
+
+
+
+
+
+ 7
+
+
+ #
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+ |
+ | +||
+ | ++ + | +|
+ | ++ | +
+
+
+
+
+
+
+ 橄榄Chan
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 橄榄Chan
+
+
+
+ 当前离线
+
+
+
+
+
+ ![]()
+
+
+
+
+
+
+
+
+ ![]() |
+
+
+
+
+
+ 8
+
+
+ #
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+ |
+ | +||
+ | ++ + | +|
+ | ++ | +
+
+
+
+
+
+
+ 春枫微微倾城
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 春枫微微倾城
+
+
+
+ 当前离线
+
+
+
+
+
+ ![]()
+
+
+
+
+
+
+
+
+ ![]() |
+
+
+
+
+
+ 9
+
+
+ #
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+ |
+ | +||
+ | ++ + | +|
+ | ++ | +
+ + | +
+
+
+
+
+ 10
+
+
+ #
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+ |
+ | +||
+ | ++ + | +|
+ | ++ | +
+
+
+
+
+
+
+ 117779284
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 117779284
+
+
+
+ 当前离线
+
+
+
+
+
+ ![]()
+
+
+
+
+
+
+
+
+ ![]() |
+
+
+
+
+
+ 11
+
+
+ #
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+ |
+ | +||
+ | ++ + | +|
+ | ++ | +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ miller8887090
+
+
+
+ 当前离线
+
+
+
+
+
+ ![]()
+
+
+
+
+
+
+
+
+ ![]() |
+
+
+
+
+
+ 12
+
+
+ #
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+ |
+ | +||
+ | ++ + | +|
+ | ++ | +
+
+
+
+
+
+
+ mztnql9gz
+
+
+
+
+
+
+
+
+
+
+
+
+
+ mztnql9gz
+
+
+
+ 当前离线
+
+
+
+
+
+ ![]()
+
+
+
+
+
+
+
+
+ ![]() |
+
+
+
+
+
+ 13
+
+
+ #
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+ |
+ | +||
+ | ++ + | +|
+ | ++ | +
+ + | +
+
+
+
+
+ 14
+
+
+ #
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+ |
+ | +||
+ | ++ + | +|
+ | ++ | +
+
+
+
+
+
+
+ xiao_qi_zi
+
+
+
+
+
+
+
+
+
+
+
+
+
+ xiao_qi_zi
+
+
+
+ 当前离线
+
+
+
+
+
+ ![]()
+
+
+
+
+
+
+
+
+ ![]() |
+
+
+
+
+
+ 15
+
+
+ #
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+ |
+ | +||
+ | ++ + | +|
+ | ++ | +
+
+ Archiver
+
+
+ |
+
+
+ 小黑屋
+
+
+ |
+
+
+
+ Mcbbs.net
+
+
+ (
+
+ 京ICP备15023768号-1
+
+ ) |
+
+
+ 京公网安备 11010502037624号
+
+ |
+
+
+ 手机版
+
+
+
+ GMT+8, 2022-5-20 00:11 + + , Processed in 0.065029 second(s), Total 28, Slave 27 queries, Release: Build.2022.05.18 1107, + Gzip On, Redis On. + + +
++ " + + Minecraft + + "以及"我的世界"为美国微软公司的商标 本站与微软公司没有从属关系 +
++ © 2010-2022 + + 我的世界中文论坛 + + 版权所有 本站内原创内容版权属于其原创作者,除作者或版规特别声明外未经许可不得转载 +
+
+ ![]() |
+
+ 识海漫谈+ + |
+ + 1789 + | ++ + | +
+ Archiver|小黑屋|Mcbbs.net
+ ( 京ICP备15023768号-1 ) | 京公网安备
+ 11010502037624号 |
+ 手机版
+
+
+
+ GMT+8, 2022-5-20 00:15 + , Processed in 0.057567 second(s), Total 10, Slave 10 queries, Release: Build.2022.05.18 1107, + Gzip On, Redis On. + + +
+"Minecraft"以及"我的世界"为美国微软公司的商标 本站与微软公司没有从属关系 +
+© 2010-2022 我的世界中文论坛 版权所有 + 本站内原创内容版权属于其原创作者,除作者或版规特别声明外未经许可不得转载
+
+ ![]() |
+
+ 识海漫谈+ + |
+ + 1789 + | ++ + | +
+ Archiver|小黑屋|Mcbbs.net
+ ( 京ICP备15023768号-1 ) | 京公网安备
+ 11010502037624号 |
+ 手机版
+
+
+
+ GMT+8, 2022-5-20 00:15 + , Processed in 0.057567 second(s), Total 10, Slave 10 queries, Release: Build.2022.05.18 1107, + Gzip On, Redis On. + + +
+"Minecraft"以及"我的世界"为美国微软公司的商标 本站与微软公司没有从属关系 +
+© 2010-2022 我的世界中文论坛 版权所有 + 本站内原创内容版权属于其原创作者,除作者或版规特别声明外未经许可不得转载
+