From 32e1e68918a7b83064bd02e58a582af17c628575 Mon Sep 17 00:00:00 2001 From: xiaojie Date: Fri, 25 Oct 2024 19:38:18 +0800 Subject: [PATCH] =?UTF-8?q?=E7=B4=A7=E6=80=A5=E4=BF=AE=E5=A4=8D=E8=A7=A3?= =?UTF-8?q?=E6=9E=90=E8=AF=A6=E6=83=85=E9=A1=B5=E7=9A=84=E6=AD=A3=E5=88=99?= =?UTF-8?q?=E8=A1=A8=E8=BE=BE=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../client/parser/GalleryDetailParser.java | 130 +- .../ehviewer/client/parser/GalleryDetail.html | 2501 +++++------------ 2 files changed, 707 insertions(+), 1924 deletions(-) diff --git a/app/src/main/java/com/hippo/ehviewer/client/parser/GalleryDetailParser.java b/app/src/main/java/com/hippo/ehviewer/client/parser/GalleryDetailParser.java index 776130977..b7b6a0bd6 100644 --- a/app/src/main/java/com/hippo/ehviewer/client/parser/GalleryDetailParser.java +++ b/app/src/main/java/com/hippo/ehviewer/client/parser/GalleryDetailParser.java @@ -78,7 +78,9 @@ public class GalleryDetailParser { private static final Pattern PATTERN_PAGES = Pattern.compile("]*>Length:]*>([\\d,]+) pages"); private static final Pattern PATTERN_PREVIEW_PAGES = Pattern.compile("]+>]+>([\\d,]+)]+>(?:]+>)?>(?:)?"); private static final Pattern PATTERN_NORMAL_PREVIEW = Pattern.compile("
]*>]*width:(\\d+)[^<>]*height:(\\d+)[^<>]*\\((.+?)\\)[^<>]*-(\\d+)px[^<>]*>]*href=\"(.+?)\"[^<>]*>\"([\\d,]+)\"");[^<>]*<[^<>]*title=\"Page (\\d+):[^<>]*width:(\\d+)[^<>]*height:(\\d+)[^<>]*\\((.+?)\\)[^<>]*\">
[^<>]*"); private static final Pattern PATTERN_LARGE_PREVIEW = Pattern.compile("
\"([\\d,]+)\".+?src=\"(.+?)\"");[^<>]*
]*\\((.+?)\\)[^<>]*0 0[^<>]*>"); private static final Pattern PATTERN_ARCHIVE_DOWNLOAD = Pattern.compile("onclick=\"return popUp('(.*)',480,320)\">Archive Download"); private static final GalleryTagGroup[] EMPTY_GALLERY_TAG_GROUP_ARRAY = new GalleryTagGroup[0]; @@ -86,6 +88,8 @@ public class GalleryDetailParser { private static final DateFormat WEB_COMMENT_DATE_FORMAT = new SimpleDateFormat("dd MMMMM yyyy, HH:mm", Locale.US); + private static Integer EhSite; + static { WEB_COMMENT_DATE_FORMAT.setTimeZone(TimeZone.getTimeZone("UTC")); } @@ -516,17 +520,17 @@ public static GalleryComment parseComment(Element element) { // time Element c3 = JsoupUtils.getElementByClass(element, "c3"); String temp = c3.ownText(); - if (temp.contains(" by:")){ + if (temp.contains(" by:")) { temp = temp.substring("Posted on ".length(), temp.length() - " by:".length()); - }else { + } else { temp = temp.substring("Posted on ".length()); } comment.time = WEB_COMMENT_DATE_FORMAT.parse(temp).getTime(); // user - if (c3.children().isEmpty()){ + if (c3.children().isEmpty()) { comment.user = c4.text(); - }else { + } else { comment.user = c3.child(0).text(); } @@ -664,14 +668,29 @@ public static int parsePages(String body) throws ParseException { } public static PreviewSet parsePreviewSet(Document d, String body) throws ParseException { + if (null == EhSite) { + EhSite = Settings.getGallerySite(); + } + String previewClass; + switch (EhSite) { + case 0: + previewClass = body; + break; + case 1: + previewClass = d.getElementsByClass("gt200").html(); + break; + default: + previewClass = ""; + break; + } PreviewSet previewSet; try { - previewSet = parseLargePreviewSet(d, body); - if (previewSet == null) { - previewSet = parseNormalPreviewSet(body); + previewSet = parseNormalPreviewSet(previewClass); + if (previewSet.size() == 0) { + previewSet = parseLargePreviewSet(previewClass.isEmpty() ? body : previewClass); } - if (previewSet == null) { - throw new ParseException("加载预览图失败", body); + if (previewSet.size() == 0) { + throw new ParseException("加载预览图失败", previewClass); } return previewSet; // return parseLargePreviewSet(d, body); @@ -683,52 +702,26 @@ public static PreviewSet parsePreviewSet(Document d, String body) throws ParseEx } public static PreviewSet parsePreviewSet(String body) throws ParseException { - try { - return parseLargePreviewSet(body); - } catch (ParseException e) { - return parseNormalPreviewSet(body); - } + return parsePreviewSet(Jsoup.parse(body), body); } /** * Parse large previews with regular expressions */ - private static LargePreviewSet parseLargePreviewSet(Document d, String body) throws ParseException { - try { - LargePreviewSet largePreviewSet = new LargePreviewSet(); - Element gdt = d.getElementById("gdt"); - Elements gdtls = gdt.getElementsByClass("gdtl"); - int n = gdtls.size(); - if (n <= 0) { - return null; -// throw new ParseException("Can't parse large preview", body); - } - for (int i = 0; i < n; i++) { - Element element = gdtls.get(i).child(0); - String pageUrl = element.attr("href"); - element = element.child(0); - String imageUrl = element.attr("src"); - if (Settings.getFixThumbUrl()) { - imageUrl = EhUrl.getFixedPreviewThumbUrl(imageUrl); - } - int index = Integer.parseInt(element.attr("alt")) - 1; - largePreviewSet.addItem(index, imageUrl, pageUrl); - } - return largePreviewSet; - } catch (Throwable e) { - ExceptionUtils.throwIfFatal(e); - e.printStackTrace(); - throw new ParseException("Can't parse large preview", body); + private static LargePreviewSet parseLargePreviewSet(String body) { + Matcher m = PATTERN_LARGE_PREVIEW_NEW.matcher(body); + LargePreviewSet largePreviewSet = new LargePreviewSet(); + + find(m, largePreviewSet); + + if (largePreviewSet.size() == 0) { + m = PATTERN_LARGE_PREVIEW.matcher(body); + find(m, largePreviewSet); } + return largePreviewSet; } - /** - * Parse large previews with regular expressions - */ - private static LargePreviewSet parseLargePreviewSet(String body) throws ParseException { - Matcher m = PATTERN_LARGE_PREVIEW.matcher(body); - LargePreviewSet largePreviewSet = new LargePreviewSet(); - + private static void find(Matcher m, LargePreviewSet largePreviewSet) { while (m.find()) { int index = ParserUtils.parseInt(m.group(2), 0) - 1; if (index < 0) { @@ -741,42 +734,55 @@ private static LargePreviewSet parseLargePreviewSet(String body) throws ParseExc } largePreviewSet.addItem(index, imageUrl, pageUrl); } - - if (largePreviewSet.size() == 0) { - throw new ParseException("Can't parse large preview", body); - } - - return largePreviewSet; } /** * Parse normal previews with regular expressions */ private static NormalPreviewSet parseNormalPreviewSet(String body) throws ParseException { - Matcher m = PATTERN_NORMAL_PREVIEW.matcher(body); + + Matcher m = PATTERN_NORMAL_PREVIEW_NEW.matcher(body); NormalPreviewSet normalPreviewSet = new NormalPreviewSet(); while (m.find()) { - int position = ParserUtils.parseInt(m.group(6), 0) - 1; + int position = ParserUtils.parseInt(m.group(2), 0) - 1; if (position < 0) { continue; } - String imageUrl = ParserUtils.trim(m.group(3)); - int xOffset = ParserUtils.parseInt(m.group(4), 0); + String imageUrl = ParserUtils.trim(m.group(5)); + int xOffset = 0; int yOffset = 0; - int width = ParserUtils.parseInt(m.group(1), 0); + int width = ParserUtils.parseInt(m.group(3), 0); if (width <= 0) { continue; } - int height = ParserUtils.parseInt(m.group(2), 0); + int height = ParserUtils.parseInt(m.group(4), 0); if (height <= 0) { continue; } - String pageUrl = ParserUtils.trim(m.group(5)); + String pageUrl = ParserUtils.trim(m.group(1)); normalPreviewSet.addItem(position, imageUrl, xOffset, yOffset, width, height, pageUrl); } - if (normalPreviewSet.size() == 0) { - throw new ParseException("Can't parse normal preview", body); + m = PATTERN_NORMAL_PREVIEW.matcher(body); + while (m.find()) { + int position = ParserUtils.parseInt(m.group(6), 0) - 1; + if (position < 0) { + continue; + } + String imageUrl = ParserUtils.trim(m.group(3)); + int xOffset = ParserUtils.parseInt(m.group(4), 0); + int yOffset = 0; + int width = ParserUtils.parseInt(m.group(1), 0); + if (width <= 0) { + continue; + } + int height = ParserUtils.parseInt(m.group(2), 0); + if (height <= 0) { + continue; + } + String pageUrl = ParserUtils.trim(m.group(5)); + normalPreviewSet.addItem(position, imageUrl, xOffset, yOffset, width, height, pageUrl); + } } return normalPreviewSet; diff --git a/app/src/test/resources/com/hippo/ehviewer/client/parser/GalleryDetail.html b/app/src/test/resources/com/hippo/ehviewer/client/parser/GalleryDetail.html index 2d932d803..32b2a5738 100644 --- a/app/src/test/resources/com/hippo/ehviewer/client/parser/GalleryDetail.html +++ b/app/src/test/resources/com/hippo/ehviewer/client/parser/GalleryDetail.html @@ -1,98 +1,72 @@ - - + + - [Twitter] AkiyamaRyo (2019.11.09-2022.5.06) - E-Hentai Galleries - - - - - - - + [DMM.com] Flower Knight Girl (event CG) 2022.11~ - ExHentai.org + - - - - +
-
+
-

[Twitter] AkiyamaRyo (2019.11.09-2022.5.06)

-

+

[DMM.com] Flower Knight Girl (event CG) 2022.11~

+

[DMM.com] FLOWER KNIGHT GIRL ~X指定~ 2022.11~

-
Misc +
Game + CG
- +
- + - - + @@ -100,15 +74,15 @@

- + - + - +
Posted:2022-05-06 04:132024-10-25 08:20
Parent:2205333 + 3084561
Visible:No (Replaced)Yes
Language:
File Size:840.3 MB172.2 MiB
Length:393 pages838 pages
Favorited:22753 times2225 times
@@ -117,13 +91,14 @@

Rating: -
-
+
+ +
- 1181 + 189 - Average: 4.82 + Average: 4.46 @@ -150,13 +125,9 @@

-
-
-
- +
+
@@ -166,2129 +137,936 @@

parody: - - - - - + onclick="return toggle_tagmenu(355973,'parody:flower knight girl',this)">flower + knight girl
- character: + group: - - - - - - -
widowmaker + - male: + artist: - - - -
muscle + + + + + + + + + + female: -
anal -
- - -
collar + - - -
fishnets + -
horns + -
lingerie + -
pantyhose + -
ponytail + - - - - mixed: - -
group + href="https://exhentai.org/tag/female:stockings" class="" + onclick="return toggle_tagmenu(3360,'female:stockings',this)">stockings
+ other: -
3d -
- - - +
-
This gallery has - been replaced; tags can no longer be added on this version. -
-
-
+
+
-
-
- - - -
-

There are newer versions of this gallery available:

[Twitter] AkiyamaRyo - (2019.11.09-2022.5.10), added 2022-05-11 05:24
[Twitter] AkiyamaRyo - (2019.11.09-2022.5.11), added 2022-05-12 04:48
[Twitter] AkiyamaRyo - (2019.11.09-2022.5.15), added 2022-05-16 06:40
[Twitter] AkiyamaRyo - (2019.11.09-2022.5.23), added 2022-05-23 05:44
[Twitter] AkiyamaRyo - (2019.11.09-2022.5.26), added 2022-05-27 06:11
[Twitter] AkiyamaRyo - (2019.11.09-2022.6.01), added 2022-06-01 06:53
[Twitter] AkiyamaRyo - (2019.11.09-2022.6.07), added 2022-06-07 10:25
[Twitter] AkiyamaRyo - (2019.11.09-2022.6.14), added 2022-06-14 01:57
[Twitter] AkiyamaRyo - (2019.11.09-2022.6.18), added 2022-06-19 08:52
[Twitter] AkiyamaRyo - (2019.11.09-2022.6.22), added 2022-06-22 03:34
[Twitter] AkiyamaRyo - (2019.11.09-2022.6.24), added 2022-06-24 03:48
[Twitter] AkiyamaRyo - (2019.11.09-2022.6.28), added 2022-06-29 07:42
[Twitter] AkiyamaRyo - (2019.11.09-2022.7.04), added 2022-07-04 08:11
[Twitter] AkiyamaRyo - (2019.11.09-2022.7.06), added 2022-07-07 13:49
[Twitter] AkiyamaRyo - (2019.11.09-2022.7.10), added 2022-07-10 07:04
[Twitter] AkiyamaRyo - (2019.11.09-2022.7.12), added 2022-07-12 08:53
[Twitter] AkiyamaRyo - (2019.11.09-2022.7.16), added 2022-07-17 06:33
[Twitter] AkiyamaRyo - (2019.11.09-2022.7.21), added 2022-07-22 12:33
[Twitter] AkiyamaRyo - (2019.11.09-2022.7.23), added 2022-07-23 07:40
[Twitter] AkiyamaRyo - (2019.11.09-2022.7.26), added 2022-07-26 04:19
[Twitter] AkiyamaRyo - (2019.11.09-2022.7.28), added 2022-07-28 08:16
[Twitter] AkiyamaRyo - (2019.11.09-2022.8.03), added 2022-08-04 10:17
[Twitter] AkiyamaRyo - (2019.11.09-2022.8.05), added 2022-08-05 09:57
[Twitter] AkiyamaRyo - (2019.11.09-2022.8.09), added 2022-08-10 04:57
[Twitter] AkiyamaRyo - (2019.11.09-2022.8.11), added 2022-08-12 04:12
[Twitter] AkiyamaRyo - (2019.11.09-2022.8.11), added 2022-08-16 07:30
[Twitter] AkiyamaRyo - (2019.11.09-2022.8.19), added 2022-08-19 07:36
[Twitter] AkiyamaRyo - (2019.11.09-2022.8.24), added 2022-08-24 06:18
[Twitter] AkiyamaRyo - (2019.11.09-2022.8.27), added 2022-08-27 14:24
[Twitter] AkiyamaRyo - (2019.11.09-2022.9.01), added 2022-09-02 03:51
[Twitter] AkiyamaRyo - (2019.11.09-2022.9.03), added 2022-09-04 08:17
[Twitter] AkiyamaRyo - (2019.11.09-2022.9.07), added 2022-09-08 05:38
[Twitter] AkiyamaRyo - (2019.11.09-2022.9.14), added 2022-09-15 07:30
[Twitter] AkiyamaRyo - (2019.11.09-2022.9.18), added 2022-09-18 08:57
[Twitter] AkiyamaRyo - (2019.11.09-2022.9.21), added 2022-09-22 07:19
[Twitter] AkiyamaRyo - (2019.11.09-2022.9.26), added 2022-09-26 05:30
[Twitter] AkiyamaRyo - (2019.11.09-2022.10.03), added 2022-10-03 05:16
[Twitter] AkiyamaRyo - (2019.11.09-2022.10.07), added 2022-10-08 07:06
[Twitter] AkiyamaRyo - (2019.11.09-2022.10.10), added 2022-10-11 05:15
[Twitter] AkiyamaRyo - (2019.11.09-2022.10.14), added 2022-10-15 06:36
[Twitter] AkiyamaRyo - (2019.11.09-2022.10.18), added 2022-10-18 04:01
[Twitter] AkiyamaRyo - (2019.11.09-2022.10.21), added 2022-10-21 07:55
[Twitter] AkiyamaRyo - (2019.11.09-2022.10.21), added 2022-10-22 09:37
[Twitter] AkiyamaRyo - (2019.11.09-2022.10.27), added 2022-10-27 05:48
[Twitter] AkiyamaRyo - (2019.11.09-2022.10.30), added 2022-10-30 07:11
[Twitter] AkiyamaRyo - (2019.11.09-2022.11.06), added 2022-11-06 07:59
[Twitter] AkiyamaRyo - (2019.11.09-2022.11.09), added 2022-11-10 11:05
[Twitter] AkiyamaRyo - (2019.11.09-2022.11.15), added 2022-11-15 10:07
[Twitter] AkiyamaRyo - (2019.11.09-2022.11.15), added 2022-11-19 08:51
[Twitter] AkiyamaRyo - (2019.11.09-2022.11.23), added 2022-11-23 09:33
[Twitter] AkiyamaRyo - (2019.11.09-2022.11.29), added 2022-11-30 04:08
[Twitter] AkiyamaRyo - (2019.11.09-2022.12.01), added 2022-12-02 08:31
[Twitter] AkiyamaRyo - (2019.11.09-2022.12.09), added 2022-12-09 07:12
[Twitter] AkiyamaRyo - (2019.11.09-2022.12.10), added 2022-12-11 07:44
[Twitter] AkiyamaRyo - (2019.11.09-2022.12.14), added 2022-12-15 08:48
[Twitter] AkiyamaRyo - (2019.11.09-2022.12.19), added 2022-12-19 08:31
[Twitter] AkiyamaRyo - (2019.11.09-2022.12.25), added 2022-12-26 07:17
[Twitter] AkiyamaRyo - (2019.11.09-2023.1.01), added 2023-01-02 12:54
[Twitter] AkiyamaRyo - (2019.11.09-2023.1.12), added 2023-01-13 06:28
[Twitter] AkiyamaRyo - (2019.11.09-2023.1.17), added 2023-01-18 06:45
[Twitter] AkiyamaRyo - (2019.11.09-2023.1.19), added 2023-01-23 06:15
[Twitter] AkiyamaRyo - (2019.11.09-2023.1.25), added 2023-01-26 06:03
[Twitter] AkiyamaRyo - (2019.11.09-2023.1.30), added 2023-01-31 06:36
[Twitter] AkiyamaRyo - (2019.11.09-2023.2.05), added 2023-02-05 05:17
[Twitter] AkiyamaRyo - (2019.11.09-2023.2.10), added 2023-02-11 06:38
[Twitter] AkiyamaRyo - (2019.11.09-2023.2.12), added 2023-02-13 06:14
[Twitter] AkiyamaRyo - (2019.11.09-2023.2.17), added 2023-02-17 11:40
[Twitter] AkiyamaRyo - (2019.11.09-2023.2.20), added 2023-02-20 05:25
[Twitter] AkiyamaRyo - (2019.11.09-2023.2.27), added 2023-02-28 07:29
[Twitter] AkiyamaRyo - (2019.11.09-2023.3.09), added 2023-03-10 05:36
[Twitter] AkiyamaRyo - (2019.11.09-2023.3.17), added 2023-03-17 06:16
[Twitter] AkiyamaRyo - (2019.11.09-2023.3.17) [Stop Updating], added 2023-03-26 05:13
[Twitter] AkiyamaRyo - (2019.11.09-2023.3.28), added 2023-03-29 06:18
[Twitter] AkiyamaRyo - (2019.11.09-2023.4.01), added 2023-04-03 07:04
[Twitter] AkiyamaRyo - (2019.11.09-2023.4.09), added 2023-04-11 07:05
[Twitter] AkiyamaRyo - (2019.11.09-2023.4.12), added 2023-04-17 10:54
[Twitter] AkiyamaRyo - (2019.11.09-2023.5.07), added 2023-05-08 06:59
[Twitter] AkiyamaRyo - (2019.11.09-2023.5.14), added 2023-05-15 07:13
[Twitter] AkiyamaRyo - (2019.11.09-2023.5.22), added 2023-05-23 06:42
-

Showing 1 - 40 of 393 images

+

Showing 1 - 20 of 838 images

- - + href="https://exhentai.org/g/3101249/7fb0ea5a0e/?p=41" + onclick="return false">42
<1 2 3 4 5 6 7 + ... 10 > + href="https://exhentai.org/g/3101249/7fb0ea5a0e/?p=1" onclick="return false">>
-
-
-
-
4 rows
-
10 rows
-
20 rows
-
40 rows
-
-
-
-
-
Normal
-
- Large -
-
-
-
-
-
-
- 001
001
-
-
-
-
- 002
002
-
-
-
-
- 003
003
-
-
-
-
- 004
004
-
-
-
-
- 005
005
-
-
-
-
- 006
006
-
-
-
-
- 007
007
-
-
-
-
- 008
008
-
-
-
-
- 009
009
-
-
-
-
- 010
010
-
-
-
-
- 011
011
-
-
-
-
- 012
012
-
-
-
-
- 013
013
-
-
-
-
- 014
014
-
-
-
-
- 015
015
-
-
-
-
- 016
016
-
-
-
-
- 017
017
-
-
-
-
- 018
018
-
-
-
-
- 019
019
-
-
-
-
- 020
020
-
-
-
-
- 021
021
-
-
-
-
- 022
022
-
-
-
-
- 023
023
-
-
-
-
- 024
024
-
-
-
-
- 025
025
-
-
-
-
- 026
026
-
-
-
-
- 027
027
-
-
-
-
- 028
028
-
-
-
-
- 029
029
-
-
-
-
- 030
030
-
-
-
-
- 031
031
-
-
-
-
- 032
032
-
-
-
-
- 033
033
-
-
-
-
- 034
034
-
-
-
-
- 035
035
-
-
-
-
- 036
036
-
-
-
-
- 037
037
-
-
-
-
- 038
038
-
-
-
-
- 039
039
-
-
-
-
- 040
040
-
-
-
-
+
- - + href="https://exhentai.org/g/3101249/7fb0ea5a0e/?p=41" + onclick="return false">42
<1 2 3 4 5 6 7 + ... 10 > + href="https://exhentai.org/g/3101249/7fb0ea5a0e/?p=1" onclick="return false">>
- - -
-
Posted on 06 May 2022, 04:13 by:   AdamAbbott    PM -
+
Posted on 25 October 2024, 08:20 by:   longshenadu
Uploader Comment
-
- Twitter:
https://twitter.com/Akiryooooo

Pixiv:
https://www.pixiv.net/users/14264447
Fanbox:
https://akiyamaryo.fanbox.cc/
Patreon:
https://www.patreon.com/AkiyamaRyo +
フラワーナイトガール公式サイト:
PC版 + http://www.dmm.com/netgame_s/flower/
スマートフォン版 + https://flower-knight-girl.com/

これらのCGが好きでしたら、『フラワーナイトガール』をよろしくお願いします!
If + you like these CG, please support『Flower Knight Girl』!

请多谢画出好看的CG的画师们!
CGを描いた絵師たちをほめてください!
Please + praise the illustrators who painted these CG!

continue with
https://exhentai.org/g/1160069/530c3843cd/ + (by JackHammerNO1)
https://exhentai.org/g/2359784/3c35953756/ + 2018.1~2022.10

一周或者两周一更,基本保证和游戏更新频率平齐。
It's + basically guaranteed to update every week or two weeks.(Depends on how often the game is + updated)

动态cg/アニメーションCG/animated CG:https://exhentai.org/g/2100086/2fe3aaa6fb/(by + sl4yer)
专业发CG的人就是不一样,比我一直以来都不愿意传的试作品强太多了,要看动态就去这里……
このギャラリーに行ってアニメーションCGを見てください。彼の完成品は私がアップロードしたくない試作品よりずっとよくできています。
Welcome + to this gallery to see the animated CG. The work made by him is much better than the + trial work made by me as an amateur……

生放送表述了23年1月23日开始,实装的所有角色不再会有动态寝室,所以在那之前的就是花骑士历史上存在过的所有动态寝室了。
唉,还能运营下去就行了,毕竟现在是KMS收养的……
sl4yer在2月初已经上传了目前所有的动态寝室……
- -
-
-
Posted on 24 July 2021, 16:37 by:   肥宅二号plus  -   PM
-
[Vote+] -   [Vote-] -
-
Score - +86
-
-
-
我tm社保!
- -
- -
-
-
Posted on 24 July 2021, 18:44 by:   mluto    PM -
-
[Vote+] -   [Vote-] -
-
Score - +91
-
-
-
这谁顶得住啊
- -
- -
-
-
Posted on 24 July 2021, 23:19 by:   linzhijun    PM -
-
[Vote+] -   [Vote-] -
-
Score - +26
-
-
-
太棒了,保存了好多图
- -
- -
-
-
Posted on 09 August 2021, 11:59 by:   fallere123    PM -
-
[Vote+] -   [Vote-] -
-
Score - +17
-
-
-
有大佬给个合集下载
- -
- -
-
-
Posted on 09 August 2021, 12:44 by:   Imil    PM -
-
[Vote+] -   [Vote-] -
-
Score - +15
-
-
-
大型社保现场
- -
- -
-
-
Posted on 10 August 2021, 08:18 by:   GEEKASS    PM -
-
[Vote+] -   [Vote-] -
-
Score - +26
-
-
-
好多图没动呢
- -
- -
-
-
Posted on 12 August 2021, 15:59 by:   NineFea    PM -
-
[Vote+] -   [Vote-] -
-
Score - +45
-
-
-
感谢不换封面的更新上传者,让我可以精准的把之前的删除
- -
- -
-
-
Posted on 21 August 2021, 15:49 by:   Crazyhuh    PM -
-
[Vote+] -   [Vote-] -
-
Score - +6
-
-
-
akiyama兄贵老舞gachi了
- -
- -
-
-
Posted on 26 August 2021, 05:04 by:   Gulzar    PM -
-
[Vote+] -   [Vote-] -
-
Score - +37
-
-
-
似乎大多数图都不动了…不知道是不是我的网络问题
- -
- -
-
-
Posted on 07 September 2021, 14:21 by:   SurvivalS666    - PM -
-
[Vote+] -   [Vote-] -
-
Score - +13
-
-
-
最喜欢不知火舞了
- -
- +
-
Posted on 09 September 2021, 08:22 by:   奇异果种子  -   PM
-
[Vote+] -   [Vote-] +
Posted on 03 November 2022, 15:41 by:   cyh1012719457
+
[Vote+] +   [Vote-]
Score - +24
+ onmouseout="document.getElementById('cvotes_5277323').style.display='none'">Score + -43
-
你不喜欢管我们屁事
- -
- -
-
-
Posted on 12 September 2021, 09:35 by:   aaa296928197    - PM -
-
[Vote+] -   [Vote-] -
-
Score - +6
-
+
+ 为什么DMM的好多CG都不在了啊,包括置顶评论的下面几个,点进去都没有,是我方法错了吗?
-
为什么我搜索不到这些本子啊只能在历史记录看
- +
- +
-
Posted on 14 September 2021, 13:26 by:   86H8    PM -
-
[Vote+] -   [Vote-] +
Posted on 04 November 2022, 06:42 by:   GE-MOON
+
[Vote+] +   [Vote-]
Score - +19
+ onmouseout="document.getElementById('cvotes_5278707').style.display='none'">Score + +12
-
谁知道不知火舞乳牛装的3d动画啊,找了好久找不到
- -
- -
-
-
Posted on 20 September 2021, 15:23 by:   SurvivalS666    - PM -
-
[Vote+] -   [Vote-] -
-
Score - +77
-
-
-
图片画质太低了,可以上传高清图片吗?
The picture quality is too low. - Can you upload high-definition pictures? +
@cyh1012719457 我之前也這樣過 後來發現是開著vpn的關係 + 關掉後就正常了
- - +
-
Posted on 31 October 2021, 11:08 by:   DASH02134    PM -
-
[Vote+] -   [Vote-] +
Posted on 04 November 2022, 17:41 by:   geigenichengba
+
[Vote+] +   [Vote-]
Score - +12
+ onmouseout="document.getElementById('cvotes_5279792').style.display='none'">Score + -57
-
没种子下不下来的,很多图报错

比 [Twitter] AkiyamaRyo - (2019.11.9-2021.10.23) 这个的种子多了几张图,03 和293开始到303 +
话说能先不把dmm标签弄上去吗?好容易没啊。
+ -
Last edited on 31 October 2021, 17:32.
-
- +
-
Posted on 02 December 2021, 06:29 by:   ID12025998    PM -
-
[Vote+] -   [Vote-] +
Posted on 23 November 2022, 00:46 by:   jag0713
+
[Vote+] +   [Vote-]
Score - +34
+ onmouseout="document.getElementById('cvotes_5315282').style.display='none'">Score + +24
-
好想把不知火幹成阿嘿顏喔
- +
换非日本代理
+
- +
-
Posted on 03 December 2021, 13:50 by:   cong5410    PM -
-
[Vote+] -   [Vote-] +
Posted on 26 February 2023, 12:54 by:   JJYY753
+
[Vote+] +   [Vote-]
Score - +34
+ onmouseout="document.getElementById('cvotes_5538338').style.display='none'">Score + -100
-
所以玩偶姐姐其实是不知火舞?
- -
- -
-
-
Posted on 04 December 2021, 04:29 by:   Ljackdhdb    PM -
-
[Vote+] -   [Vote-] -
-
Score - +24
-
-
-
那个大佬知道那个女恶魔叫什么,是那个游戏里面的嘛
- -
- -
-
-
Posted on 13 December 2021, 15:41 by:   liuzy777    PM -
-
[Vote+] -   [Vote-] -
-
Score - +43
-
-
-
前些天刚好收集到这个大佬的资源。给个提示 f95zone。
话说那里真是个好地方,仿佛打开了新世界的大门。里头很多大佬发布各种3d资源,流量顶得住的兄弟就注册个号慢慢找。 +
已编辑.
+
Last edited on 27 March 2023, 12:39.
+ -
- +
-
Posted on 02 January 2022, 05:21 by:   Judojiop    PM -
-
[Vote+] -   [Vote-] +
Posted on 04 March 2023, 03:00 by:   longshenadu
+
[Vote+] +   [Vote-]
Score - +21
+ onmouseout="document.getElementById('cvotes_5549522').style.display='none'">Score + +230
-
@Rorschach.. 用Blender 3D软件做的

@Ljackdhdb - 叫做Daemon Girl, 3D建模师 Ryan Reos 做的 +
我说啊,能不能别什么都说AIAI的……
人家中村べーた老师一直以来就是这个画风,从当年开服有★2白三叶草的时候就是这种风格。

是,也许这个画风和别的老师相比之下不算特别优秀,
但是人家べーた老师一直以来都持续创作白三叶草的图,各种时期都有各种庆贺图,
还画了很多的各种其他中意的花骑士的画,制作同人志和周边,参加花骑士的同人展,
在大部分玩家眼里是非常热情非常好的一位老师,很受团长们欢迎。

白三叶草这么多年人气投票的名次在★2里可能不算高,但一直都不低于150名,
在现有这么多花骑士的情况下这个名次可是一点都不低。

好不容易实装了新版本,当时一大群团长在那里庆祝和恭贺,
画画的,抽卡的,道恭喜的,截剧情图的,做庭园的,还有cos的,
べーた老师自己也非常高兴的各种转发,画纪念画,

这现在给CG来一句这话……
你可以直接说“画风不符合我的喜好”,那没啥,每人口味不同,
但直接上来这么一句AI是不是太伤人心了?

别怪我说话这么样啊,
如果只是路人,请不要做AI小鬼做的那种事可以吗,这手和头发丝可是好好画的……
如果你是花骑士吧的或者玩千年战争的,当我没说,因为说了也没用。
- - +
-
Posted on 24 January 2022, 08:47 by:   骑兵军  -   PM
-
[Vote+] -   [Vote-] +
Posted on 18 March 2023, 19:49 by:   JJYY753
+
[Vote+] +   [Vote-]
Score - +9
+ onmouseout="document.getElementById('cvotes_5580936').style.display='none'">Score + +6
-
这作者大哥也玩起意大利蒂法的梗了,耶路撒冷重归罗马
- +
感谢长期更新
+
Last edited on 27 March 2023, 12:39.
+
- +
-
Posted on 04 March 2022, 20:24 by:   大白鹅007  -   PM
-
[Vote+] -   [Vote-] +
Posted on 20 March 2023, 12:32 by:   GUMID
+
[Vote+] +   [Vote-]
Score - +10
+ onmouseout="document.getElementById('cvotes_5584501').style.display='none'">Score + +6
-
有一说一建模真的细节,人物肢体细节都很柔和
- +
不会再有动态cg了么?可惜了
+
- +
-
Posted on 15 March 2022, 21:48 by:   大白鹅007  -   PM
-
[Vote+] -   [Vote-] +
Posted on 21 March 2023, 16:33 by:   longshenadu
+
[Vote+] +   [Vote-]
Score - +19
+ onmouseout="document.getElementById('cvotes_5587116').style.display='none'">Score + +48
-
笑死了,3D区的tifa都比国产特效做得好
- -
- -
-
-
Posted on 30 April 2022, 11:52 by:   Xiaozaizhong    - PM -
-
[Vote+] -   [Vote-] -
-
Score - +9
-
+
能了解实际情况就好……
对于不少画师老师来说,对花骑士是真的爱,毕竟花骑士这个游戏在这之前就是游戏的运营和创作者们和玩家一起同乐出来的环境,
既然了解了情人节白三叶草的事,本来我也想编辑的,
但我那个回复不知道为什么编辑不了了,没办法了……

动态CG目前如果没有再次声明的话肯定没了,
也许是发现做了动态也不一定能提升收益,还不如给这个收养的这方面也裁掉……
他们基本都是忙他们亲生的新游戏和自家的老游戏,反正是收养来的,这边能省事就省事了……
现在的不少东西都有点画饼,公告和推也经常错漏……
唉,反正能活着就行了,活一天是一天呗……
-
标签里有动图,可是看了没有啊。
- +
- +
-
Posted on 24 June 2022, 04:22 by:   lovejapan911    - PM -
-
[Vote+] -   [Vote-] +
Posted on 31 March 2023, 05:34 by:   SEluna
+
[Vote+] +   [Vote-]
Score - +6
+ onmouseout="document.getElementById('cvotes_5606957').style.display='none'">Score + +6
-
这是用blender做的吗
- +
花騎後來沒玩單純只是因為永遠都只有本番了...
+
- +
-
Posted on 12 July 2022, 11:10 by:   zf022218123    PM -
-
[Vote+] -   [Vote-] +
Posted on 12 May 2023, 09:09 by:   qwcscacs
+
[Vote+] +   [Vote-]
Score - +7
+ onmouseout="document.getElementById('cvotes_5695675').style.display='none'">Score + +8
-
好多动图都不会动了
- - +
-
Posted on 18 July 2022, 02:43 by:   ZeroG65    PM -
-
[Vote+] -   [Vote-] +
Posted on 06 June 2023, 09:25 by:   hakuai
+
[Vote+] +   [Vote-]
Score - +8
+ onmouseout="document.getElementById('cvotes_5747882').style.display='none'">Score + +1
-
Is anything new added after every upload?
- +
大佬有立绘吗?
+
- +
-
Posted on 16 August 2022, 12:31 by:   purelife    PM -
-
[Vote+] -   [Vote-] +
Posted on 17 June 2023, 19:48 by:   ionfire
+
[Vote+] +   [Vote-]
Score - +6
+ onmouseout="document.getElementById('cvotes_5771139').style.display='none'">Score + +6
-
gif才是动图,你让jpg怎么动。。。

再说了直接去看视频不是更好
- +
呜 不更新了吗
+
- +
-
Posted on 16 October 2022, 18:25 by:   alufas1921    PM -
-
[Vote+] -   [Vote-] +
Posted on 20 June 2023, 14:27 by:   ad2197
+
[Vote+] +   [Vote-]
Score - +19
+ onmouseout="document.getElementById('cvotes_5776188').style.display='none'">Score + +17
-
Does anyone know where vaginal birth is?
有人知道分娩的图在哪吗?有这个tag,但是看不到图啊。。。 +
@hakuai
https://exhentai.org/g/2586525/feebc52ab0/
960×640分辨率大小,如果你不介意的话,但种子文件并非是最新的
(只更新到05-18,854p)
- +
- +
-
Posted on 06 November 2022, 09:58 by:   stlnfsj    PM -
-
[Vote+] -   [Vote-] +
Posted on 22 June 2023, 04:27 by:   longshenadu
+
[Vote+] +   [Vote-]
Score - +21
+ onmouseout="document.getElementById('cvotes_5778979').style.display='none'">Score + +111
-
我最近主页还有别的都显示只有一页,不能往下翻,这个怎么解决啊?
- -
- -
-
-
Posted on 19 November 2022, 08:55 by:   米娜桑ぁ  -   PM
-
[Vote+] -   [Vote-] -
-
Score - +6
-
+
+ 确实,我们花骑士从15年后半的角色起就开始全是本番了……
不过最近的主线登场的限定角色「ケペラ/凯佩拉」的第一个好感度事件是后面来的,就是239,240的那只褐色萝莉,由シズ季老师作画的。
声优也是花桃的声优,用的一个声线!
是来自于春庭外面的世界的益虫使,觉得有兴趣的话欢迎在之后卡池复刻的时候去看看ww

立绘方面……无论是几种stand绘,还是bustup绘,我一般不传……
一方面嫌麻烦,一方面花骑士之前被不知名的游戏盗用过立绘(这事还挺难受的,不少游戏都被那个盗了),
也被盗用过主题歌……(叫啥同盟来着,名字我忘了……之前宣传PV盗用过花骑士的一首主题歌)
这个希望能理解一下……

别人好像有传的,但我没注意过……
其实要找单独角色的立绘,去花骑士的wikia找就可以(由一些欧美团长维护的英文花骑士wiki),他们每个新角色的页面上都能找到立绘……

更新?更新一直更,
只不过现在每期活动前半新角色经常会只先实装2个角色,像这样有点少的情况下;
以及后半能明确有某些其他新角色的情况下;
为了不提前一星期剧透也不想再调整每张CG顺序(懒),会2周一更,跟着后半实装的开花CG一起更新……
之前在这几个画廊的主要简介里说的2周一更就是这种情况……

(怪了,这新画廊无论是发过的哪个评论我都没法重新编辑追加点啥)
(哎,一会好用一会不好用的,真奇怪)

对,这次的获奖特典版本的卡特兰(生命树的祝福)是少有的非本番……
宇路月老师也在推上说“久违地画了本番以外的东西很开心”,然后在回复里回忆了一下上次非本番还是初期的3星茉莉。
在15年实装的角色后,非本番的角色除了之前说的凯佩拉酱是用后面之外,就是这次的卡特兰了……

要说是固定常态我觉得也不至于,不过看来目前的倾向是给换装多的角色的新版本,实装一些非本番寝室……

昼咲月见的新春的寝室基本不是豆腐的亲笔……好不容易的足,有点遗憾……
银兰和地榆本番那么少,这次礼服换装还实装了两个非本番……
之前银兰和地榆抱怨的人还不算太多,这次龙田草和草莓真的是让几个日维的评论区不满爆发了,不少人在抱怨这两个都才是第一个换装就实装非本番
这次更是不满爆发,女儿节这期活动,卡池樱梅的两个新版本不是本番也就算了,活动花骑士乙女椿这孩子居然也不是本番。上次吵成这样还是今年人气投票殿堂废除以及直言强角色的卡池的事……

现在2015年后实装的非本番的角色,凯佩拉:后,卡特兰(生命树的祝福):授〇手,仙客来(生命树的祝福):扫除口,昼咲月见草(新春):足,银叶菊(生命树的祝福):胸夹,银兰(式典的礼装),地榆(式典的礼装),龙田草(情人节),草莓(情人节),花魁草(桃源乡自警团),昙花(桃源乡自警团),梅(女儿节),樱(女儿节),乙女椿,枸杞(复活节),樱草,薰衣草(暗之魔女),杏花(六月新娘),柴胡(泳装婚纱),箭根薯(式典的礼装)
-
要还啥时候
- +
Last edited on 09 October 2024, 01:54.
+
- +
-
Posted on 07 December 2022, 03:18 by:   darksexual    PM -
-
[Vote+] -   [Vote-] +
Posted on 30 August 2023, 16:44 by:   dandan550
+
[Vote+] +   [Vote-]
Score - +11
+ onmouseout="document.getElementById('cvotes_5941562').style.display='none'">Score + +14
-
动图都在后面
- -
- -
-
-
Posted on 23 March 2023, 12:56 by:   mluto    PM -
-
[Vote+] -   [Vote-] -
-
Score - +17
-
+
Man the collab Hscenes are disappointing...
+ -
感谢分享,感谢Akiryo大佬的作品的陪伴,祝前途似锦。
-
- +
-
Posted on 23 March 2023, 14:49 by:   harukaze99    PM -
-
[Vote+] -   [Vote-] +
Posted on 11 September 2023, 20:38 by:   Timroom
+
[Vote+] +   [Vote-]
Score - +27
+ onmouseout="document.getElementById('cvotes_5969687').style.display='none'">Score + -7
-
悲报,大佬被迫上岸
- +
So why isn't this game on Nutaku anymore?
+
- +
-
Posted on 24 March 2023, 20:05 by:   cerbiruz    PM -
-
[Vote+] -   [Vote-] +
Posted on 24 October 2023, 21:35 by:   Yukizeru
+
[Vote+] +   [Vote-]
Score - +43
+ onmouseout="document.getElementById('cvotes_6058136').style.display='none'">Score + +6
-
what happen to AkiyamaRyo? all his account deleted? +
I'm looking for a Only loli gacha H Game, or at + least, " almost all loli". You guys knows where i can find one, or where i can + look about games like that?
- +
- +
-
Posted on 25 March 2023, 05:30 by:   Witch Hunter    - PM -
-
[Vote+] -   [Vote-] +
Posted on 23 November 2023, 14:49 by:   kevinliu77
+
[Vote+] +   [Vote-]
Score - +62
+ onmouseout="document.getElementById('cvotes_6117091').style.display='none'">Score + +6
-
His family disagree with his work.
- -
- -
-
-
Posted on 25 March 2023, 12:18 by:   lainmoo    PM -
-
[Vote+] -   [Vote-] -
-
Score - +13
-
+
+ 這次的卡特蘭是不是除了開服的幾隻以外,少數非本番的了?
UP主考據佬辛苦了,感謝持續更新
-
为什么上岸了啊卧槽
- +
Last edited on 05 December 2023, 11:30.
+
- +
-
Posted on 26 March 2023, 18:38 by:   BronyaTurbo    PM -
-
[Vote+] -   [Vote-] +
Posted on 25 November 2023, 18:25 by:   hexieshengguang
+
[Vote+] +   [Vote-]
Score - +27
+ onmouseout="document.getElementById('cvotes_6121432').style.display='none'">Score + -43
-
😭😭😭没了你我怎么活啊,akiryo!akiryo!!!😭😭😭
- +
说真的非本番的话我还没兴趣看了。
+
- +
-
Posted on 27 March 2023, 18:23 by:   XCL521    PM -
-
[Vote+] -   [Vote-] +
Posted on 25 December 2023, 08:48 by:   GE-MOON
+
[Vote+] +   [Vote-]
Score - +12
+ onmouseout="document.getElementById('cvotes_6181760').style.display='none'">Score + +17
-
真是可惜
- -
- -
-
-
Posted on 29 March 2023, 08:35 by:   guyok    PM -
-
[Vote+] -   [Vote-] -
-
Score - +6
-
+
唉 鎖海外了
--------------------
疑似又解了 + 但部分人還是鎖的
-
可惜。。
- +
Last edited on 23 May 2024, 15:12.
+
- +
-
Posted on 29 March 2023, 16:54 by:   9XX6X    PM -
-
[Vote+] -   [Vote-] +
Posted on 13 March 2024, 10:17 by:   xdbxz
+
[Vote+] +   [Vote-]
Score - +12
+ onmouseout="document.getElementById('cvotes_6365119').style.display='none'">Score + -65
-
上岸了吗。。。可惜了
- +
終於來非本番了
當初棄坑就是全本番太過無聊
+
- +
-
Posted on 01 April 2023, 14:01 by:   ljlfb    PM -
-
[Vote+] -   [Vote-] +
Posted on 17 June 2024, 11:28 by:   longshenadu
+
[Vote+] +   [Vote-]
Score - +37
+ onmouseout="document.getElementById('cvotes_6574835').style.display='none'">Score + +7
-
好消息,大佬在fanbox上说了会继续更新,哈哈
- - +
-
Posted on 12 April 2023, 10:59 by:   ryk321    PM +
Posted on 25 June 2024, 15:46 by:   哈曼的YY
-
[Vote+] -   [Vote-] +
[Vote+] +   [Vote-]
Score - +6
+ onmouseout="document.getElementById('cvotes_6591697').style.display='none'">Score + +7
-
蒂法,小舞,没有你们俺怎么活啊😭
- +
新出的シギラリア泳裝因為肥美大火啊
+
- +
-
Posted on 21 April 2023, 18:59 by:   瓦里克麦  -   PM
-
[Vote+] -   [Vote-] +
Posted on 07 August 2024, 23:00 by:   ionfire
+
[Vote+] +   [Vote-]
Score - +12
+ onmouseout="document.getElementById('cvotes_6688993').style.display='none'">Score + +6
-
大佬们有视频吗
- -
- -
-
-
Posted on 08 May 2023, 08:18 by:   alucard13mm    PM -
-
[Vote+] -   [Vote-] -
-
Score - +7
-
+
+ 要说运营对我打击最大的还是新春福袋限定(1w日元)的“新春雪花莲”并保证“不加入虹币兑换”。结果第二年直接取消虹币兑换任意虹,这下人人平等了,然后雪花莲抽一井就送(可以用免费石抽)。也没破坏承诺,井的怎么能叫兑换呢?
在那之后我甚至都感觉运营要割韭菜直接跑路
-
apparently he is still around. he posted a SFW - picture. -
- -
- -
-
-
Posted on 10 May 2023, 04:24 by:   mp555209978    PM -
-
[Vote+] -   [Vote-] -
-
Score - +8
-
-
-
一直想问一下,这个魅魔是谁啊?
- +
- +
-
Posted on 15 May 2023, 22:08 by:   litmussaligiare  -   PM
-
[Vote+] -   [Vote-] +
Posted on 27 August 2024, 19:12 by:   dandan550
+
[Vote+] +   [Vote-]
Score - +13
+ onmouseout="document.getElementById('cvotes_6748055').style.display='none'">Score + +9
-
twitter.com/Aki_None_/

回来了,都回来了
- - +
-
Posted on 23 May 2023, 09:17 by:   alucard13mm    PM -
-
[Vote+] -   [Vote-] +
Posted on 14 October 2024, 16:32 by:   youtubeyyyy
+
[Vote+] +   [Vote-]
Score - +7
+ onmouseout="document.getElementById('cvotes_6865429').style.display='none'">Score + +9
-
seems hes back, but hes only doing nudes atm ;< -
- -
- -
-
-
Posted on 23 May 2023, 19:30 by:   DLkeA    PM -
-
[Vote+] -   [Vote-] -
-
Score - +3
-
+
最令我憤怒是開始搞強度,那堆限定跟古代花我全部都沒有興趣
前面當作繳月費買虹幣、因為喜好買自選都變成了傻子一樣

這樣都算了,還搞高難給石頭,每次打開遊戲都覺得煩躁
當你老婆全都是蘿莉,然後還技能都爛死了還純輔助是怎樣的感受?
到底是我玩遊戲,還是遊戲在玩我?
-
有大佬能发下柚子柚的作品吗?
- +
-

There are 16 more comments below the viewing threshold - click to - show all.

-

[Post - New Comment]

+
-
- Front Page -   Terms of Service   Advertise +
+ Front +   Onion
- + \ No newline at end of file