I guess the sad part here is that Bridget is not a real person, and as such, has no voice in the matter. We will never hear a "true answer" out of Bridget's mouth.
Ishiwatari literally confirmed she's a trans woman lmao but by all means please keep bitching instead of just enjoying the art
Why are you replying to a comment from almost two weeks before that confirmation came out? He was wrong (and just making shit up), and it was obvious to anyone who actually paid attention to what the characters were saying what the truth was, but there's no point throwing shit at him now.
Why are you replying to a comment from almost two weeks before that confirmation came out? He was wrong (and just making shit up), and it was obvious to anyone who actually paid attention to what the characters were saying what the truth was, but there's no point throwing shit at him now.
Honestly, I just want this to be over and done with, if they want to keep denying over Bridget being a girl that's their delusion at this point, no hope in changing their minds.
You're all idiots. It's a fictional character that doesn't actually exist. Stop arguing over stuff like that, it only divides people like all of you even more, but hey, go off and call people delusional, or slurs or whatever, it doesn't change the fact that bitching about other peoples opinions online is absolutely stupid.
You're all idiots. It's a fictional character that doesn't actually exist. Stop arguing over stuff like that, it only divides people like all of you even more, but hey, go off and call people delusional, or slurs or whatever, it doesn't change the fact that bitching about other peoples opinions online is absolutely stupid.
The irony of you doing the exact same thing that you accuse the others it is amazing. Hypocrite and idiot at the same time
You're all idiots. It's a fictional character that doesn't actually exist. Stop arguing over stuff like that, it only divides people like all of you even more, but hey, go off and call people delusional, or slurs or whatever, it doesn't change the fact that bitching about other peoples opinions online is absolutely stupid.
And this is why I have Bridget, a character I love to bits, blacklisted.
Bit overkill considering there is so much great art under that tag. If you want to dabble with userscripts; This script autohides the entire comment section on any post containing the Bridget (Guilty Gear) tag. It will be replaced with a small Click here to unhide the comment section message that can be clicked to return it to its former state.
Bridget Comment Lockdown
// ==UserScript==
// @name Danbooru: Bridget Comment Lockdown
// @namespace https://danbooru.donmai.us/
// @version 1.0
// @description Collapse the comments section on posts tagged bridget_(guilty_gear), with a toggle to show it again.
// @match https://danbooru.donmai.us/posts/*
// @grant none
// @run-at document-idle
// ==/UserScript==
(function() {
'use strict';
// 1. Check for the specific tag in the tag list
const hasBridgetTag = document
.querySelectorAll('#tag-list [data-tag-name="bridget_(guilty_gear)"]')
.length > 0;
if (!hasBridgetTag) {
return; // nothing to do if the tag isn't present
}
// 2. Locate the comments section
const commentsSection = document.getElementById('comments');
if (!commentsSection) {
return; // bail out if comments container isn't found
}
// 3. Hide the comments container
commentsSection.style.display = 'none';
// 4. Create a toggle message
const toggleWrapper = document.createElement('div');
toggleWrapper.style.margin = '1em 0';
toggleWrapper.style.fontSize = '0.9em';
const toggleLink = document.createElement('a');
toggleLink.href = '#';
toggleLink.textContent = 'Click here to unhide the comment section';
toggleLink.style.cursor = 'pointer';
toggleLink.style.color = '#3572A5';
toggleLink.addEventListener('click', function(event) {
event.preventDefault();
commentsSection.style.display = ''; // restore default display
toggleWrapper.remove(); // remove the toggle link
});
toggleWrapper.appendChild(toggleLink);
// 5. Insert the toggle message just above the comments section
commentsSection.parentNode.insertBefore(toggleWrapper, commentsSection);
})();
Leave a comment