Anime Female Wrestling
Would you like to react to this message? Create an account in a few clicks or log in to continue.
test tag
0, 'dups' => 0); $tag_array = explode(',', $tags); for($i = 0; $i < sizeof($tag_array); $i++) { if(insert_tag(str_replace('"', '', trim($tag_array[$i])), $topic_id)){ $outcome['added']++; }else{ $outcome['dups']++; } } return $outcome; } function insert_tag($tag, $topic_id){ global $db; $sql_array = array('tag' => $tag, 'topic_id' => $topic_id); if(trim($tag) == '') { //exit right away return false; } $sql = 'SELECT * FROM ' . TAGS_TABLE . " WHERE " . $db->sql_build_array('SELECT', $sql_array); $result = $db->sql_query($sql); $row = $db->sql_fetchrow($result); if($row != null) { return false; } else { $sql = "INSERT INTO " . TAGS_TABLE . ' ' . $db->sql_build_array('INSERT', $sql_array); $db->sql_query($sql); return true; } } function get_board_tags($limit){ global $db, $config, $auth; $sql = "SELECT t.*, topics.forum_id FROM " . TAGS_TABLE . " t JOIN " . TOPICS_TABLE . " topics ON t.topic_id = topics.topic_id "; $sql = get_cloud_sort($sql); if($limit > 0){ $result = $db->sql_query_limit($sql, $limit, 0); }else{ $result = $db->sql_query($sql); } /* for($i = 0; $i < sizeof($result_set); $i++){ $tag_array[$result_set[$i]['tag']] = $result_set[$i]['tag_count']; } * */ $tag_list = array(); while ($row = $db->sql_fetchrow($result)){ // Do not include those topics the user has no permission to access if ($auth->acl_get('f_read', $row['forum_id'])){ if(isset($tag_list[$row['tag']])){ $tag_list[$row['tag']] += 1; }else{ $tag_list[$row['tag']] = 1; } } } return $tag_list; } function get_topic_tags($topic_id, $limit){ global $db, $config, $auth; $sql = "SELECT t.*, topics.forum_id FROM " . TAGS_TABLE . " t JOIN " . TOPICS_TABLE . " topics ON t.topic_id = topics.topic_id - "; + WHERE t.topic_id = " . (int)$topic_id; $sql = get_cloud_sort($sql); if($limit > 0){ $result = $db->sql_query_limit($sql, $limit, 0); }else{ $result = $db->sql_query($sql); } $tag_list = array(); while ($row = $db->sql_fetchrow($result)){ // Do not include those topics the user has no permission to access if ($auth->acl_get('f_read', $row['forum_id'])){ if(isset($tag_list[$row['tag']])){ $tag_list[$row['tag']] += 1; }else{ $tag_list[$row['tag']] = 1; } } } return $tag_list; } function get_cloud_sort($sql){ global $config; switch($config['ptt_tag_sort']){ case 'random': $sql .= " ORDER BY RAND()"; break; case 'popular': $sql .= ' ORDER BY tag_count DESC'; break; case 'alphabetical': default: $sql .= " ORDER BY t.tag"; break; } return $sql; } function get_tag_cloud($min_size, $max_size, $col1, $col2, $limit){ global $phpEx, $user, $config, $phpbb_root_path; $tags = get_board_tags($limit); if(sizeof($tags) > 0){ $min_count = min(array_values($tags)); $max_count = max(array_values($tags)); $spread = $max_count - $min_count; if($spread == 0){ $spread = 1; } $tag_cloud = ''; $cTools = new ColourTools(); $gradient = $cTools->gradient($col1, $col2, $max_count); foreach ($tags as $tag => $count) { $size = $min_size + ($count - $min_count) * ($max_size - $min_size) / $spread; $tag_param = $tag; if(strpos($tag, ' ') !== false){ $tag_param = '"' . urlencode($tag) . '"'; } $tag_cloud .= ' ' . $tag . ' '; } }else{ $tag_cloud = false; } return $tag_cloud; } function get_tag_list($topic_id, $limit, $type = 'topic', $admin = false){ global $phpbb_root_path, $phpEx, $user; $tag_list = ""; $tags = get_topic_tags($topic_id, $limit); if(sizeof($tags) > 0) { foreach ($tags as $tag => $count) { $tag_param = $tag; if(strpos($tag, ' ') !== false) { $tag_param = '"' . urlencode($tag) . '"'; } if($admin){ //$tag_list .= '     '; } $tag_list .= '' . $tag . ', '; } $tag_list = substr($tag_list, 0, -2); } else { $tag_list = false; } return $tag_list; } /* USED FOR DIFFERENT TAGS DEPENDING ON WETHER IT SHOULD BE BOARD, TOPIC, FROUM. NEEDS RE WORKING function get_topic_tags($type = 'board', $id = 0, $limit = 60){ //TODO: santize input global $db; switch($type){ case 'forum': //forum sql $sql = "SELECT t.tag, COUNT(*) tag_count FROM " . TAGS_TABLE . " t, " . TOPICS_TABLE . " topics WHERE topics.forum_id = $id AND t.topic_id = topics.topic_id GROUP BY t.tag"; break; case 'topic': //topic sql $sql = "SELECT t.tag, COUNT(*) tag_count FROM " . TAGS_TABLE . " t WHERE t.topic_id = $id GROUP BY t.tag"; break; case 'board': default: //board sql $sql = "SELECT t.tag, COUNT(*) tag_count FROM " . TAGS_TABLE . " t GROUP BY t.tag"; } if($limit > 0){ $result = $db->sql_query_limit($sql, $limit, 0); }else{ $result = $db->sql_query($sql); } $result_set = $db->sql_fetchrowset($result); $tag_array = array(); for($i = 0; $i < sizeof($result_set); $i++) { $tag_array[$result_set[$i]['tag']] = $result_set[$i]['tag_count']; } return $tag_array; } function get_tag_list($topic_id, $limit, $type = 'topic', $admin = false){ global $phpbb_root_path, $phpEx, $user; $tag_list = ""; $tags = get_topic_tags($type, $topic_id, $limit); if(sizeof($tags) > 0) { foreach ($tags as $tag => $count) { $tag_param = $tag; if(strpos($tag, ' ') !== false) { $tag_param = '"' . $tag . '"'; } if($admin){ $tag_list .= '     '; } $tag_list .= '' . $tag . ', '; } $tag_list = substr($tag_list, 0, -2); } else { $tag_list = false; } return $tag_list; } function get_tag_cloud($type = 'board', $id = -1, $min_size = 8, $max_size = 26, $limit = 60){ global $phpEx, $user, $config; $tags = get_topic_tags($type, $id, $limit); if(sizeof($tags) > 0) { $min_count = min(array_values($tags)); $max_count = max(array_values($tags)); $spread = $max_count - $min_count; if($spread == 0) { $spread = 1; } $cTools = new ColourTools(); $gradient = $cTools->gradient($config['ptt_colour1'], $config['ptt_colour2'], $max_count); foreach ($tags as $tag => $count) { $size = $min_size + ($count - $min_count) * ($max_size - $min_size) / $spread; $tag_param = $tag; if(strpos($tag, ' ') !== false) { $tag_param = '"' . $tag . '"'; } $tag_cloud .= ' ' . $tag . ' '; } } else { $tag_cloud = false; } return $tag_cloud; } */ function get_num_rows($tags){ global $db, $config, $auth; $end = $config['topics_per_page']; $tag_array = filter_tags($tags); $sql = "SELECT topi.topic_id, topi.forum_id, topi.topic_type, topi.topic_replies_real, topi.topic_replies, topi.topic_status, topi.topic_moved_id, topi.topic_last_post_time, topi.topic_approved, topi.topic_poster, topi.topic_first_poster_name, topi.topic_time, topi.topic_last_post_subject, topi.topic_last_post_time, topi.topic_last_poster_id, topi.topic_views, topi.topic_title, topi.icon_id, topi.poll_start, topi.topic_attachment, topi.topic_first_poster_name, COUNT(topi.topic_id) count FROM ". TAGS_TABLE ." t, ". TOPICS_TABLE ." topi"; if(!empty($tag_array['include'])){ $sql .= " WHERE (t.tag IN ("; $sql .= prepare_search_string($tag_array['include']); $sql .= "))"; } if(!empty($tag_array['include']) && !empty($tag_array['exclude'])){ $sql .= " AND "; }else if(empty($tag_array['include']) && !empty($tag_array['exclude'])){ $sql .= " WHERE "; } if(!empty($tag_array['exclude'])){ $sql .= " (topi.topic_id NOT IN ( SELECT top2.topic_id FROM ". TAGS_TABLE ." t2, ". TOPICS_TABLE ." top2 WHERE t2.topic_id = top2.topic_id"; $sql .= prep_exclusion_string($tag_array['exclude']); $sql .= "))"; } $sql .= "AND topi.topic_id = t.topic_id GROUP BY topi.topic_id, topi.forum_id, topi.topic_type, topi.topic_replies_real, topi.topic_replies, topi.topic_status, topi.topic_moved_id, topi.topic_last_post_time, topi.topic_approved, topi.topic_poster, topi.topic_first_poster_name, topi.topic_time, topi.topic_last_post_subject, topi.topic_last_post_time, topi.topic_last_poster_id, topi.topic_views, topi.topic_title, topi.icon_id, topi.poll_start, topi.topic_attachment, topi.topic_first_poster_name ORDER BY count DESC"; if(!($result = $db->sql_query($sql))) { message_die(GENERAL_ERROR, 'Error retrieving search results', '', __LINE__, __FILE__, $sql); } $topic_list = array(); while ($row = $db->sql_fetchrow($result)){ // Do not include those topics the user has no permission to access if ($auth->acl_get('f_read', $row['forum_id'])){ $topic_list[] = $row; } } return sizeof($topic_list); } function search_tags($tags, $start = 0, $end = false){ global $db, $config, $auth; $topics_count = (int) $db->sql_fetchfield('num_topics'); if($end === false){ $end = $config['topics_per_page']; } $tag_array = filter_tags($tags); $sql = "SELECT topi.topic_id, topi.forum_id, topi.topic_type, topi.topic_replies_real, topi.topic_replies, topi.topic_status, topi.topic_moved_id, topi.topic_last_post_time, topi.topic_approved, topi.topic_poster, topi.topic_first_poster_name, topi.topic_time, topi.topic_last_post_subject, topi.topic_last_post_time, topi.topic_last_poster_id, topi.topic_views, topi.topic_title, topi.icon_id, topi.topic_attachment, topi.topic_first_poster_name, topi.topic_last_post_id, topi.topic_last_poster_id, topi.topic_last_poster_name, topi.topic_last_poster_colour, topi.topic_last_post_subject, topi.topic_last_post_time, topi.topic_last_view_time, topi.poll_start, COUNT(topi.topic_id) count FROM ". TAGS_TABLE ." t, ". TOPICS_TABLE ." topi"; if(!empty($tag_array['include'])){ $sql .= " WHERE (t.tag IN ("; $sql .= prepare_search_string($tag_array['include']); $sql .= "))"; } if(!empty($tag_array['include']) && !empty($tag_array['exclude'])){ $sql .= " AND "; }else if(empty($tag_array['include']) && !empty($tag_array['exclude'])){ $sql .= " WHERE "; } if(!empty($tag_array['exclude'])){ $sql .= "(topi.topic_id NOT IN ( SELECT top2.topic_id FROM ". TAGS_TABLE ." t2, ". TOPICS_TABLE ." top2 WHERE t2.topic_id = top2.topic_id"; $sql .= prep_exclusion_string($tag_array['exclude']); $sql .= "))"; } $sql .= "AND topi.topic_id = t.topic_id GROUP BY topi.topic_id, topi.forum_id, topi.topic_type, topi.topic_replies_real, topi.topic_replies, topi.topic_status, topi.topic_moved_id, topi.topic_last_post_time, topi.topic_approved, topi.topic_poster, topi.topic_first_poster_name, topi.topic_time, topi.topic_last_post_subject, topi.topic_last_post_time, topi.topic_last_poster_id, topi.topic_views, topi.topic_title, topi.icon_id, topi.topic_attachment, topi.topic_first_poster_name, topi.topic_last_post_id, topi.topic_last_poster_id, topi.topic_last_poster_name, topi.topic_last_poster_colour, topi.topic_last_post_subject, topi.topic_last_post_time, topi.topic_last_view_time ORDER BY topic_time DESC"; if(!($result = $db->sql_query_limit($sql, $end, $start))) { message_die(GENERAL_ERROR, 'Error retrieving search results', '', __LINE__, __FILE__, $sql); } $topic_list = array(); while ($row = $db->sql_fetchrow($result)){ // Do not include those topics the user has no permission to access if ($auth->acl_get('f_read', $row['forum_id'])){ $topic_list[] = $row; } } return $topic_list; } function prep_exclusion_string($exclude_array){ $string = ''; for($i = 0; $i < sizeof($exclude_array); $i++){ $string .= ' AND t2.tag = \'' . $exclude_array[$i] . '\''; } return $string; } function filter_tags($tags){ $tag_array = tags_to_array($tags); $incl = array(); $excl = array(); $filtered_array = array('include' => $incl, 'exclude' => $excl); for($i = 0; $i < sizeof($tag_array); $i++){ if($tag_array[$i][0] == '-'){ array_push($filtered_array['exclude'], substr($tag_array[$i], 1)); }else{ array_push($filtered_array['include'], $tag_array[$i]); } } return $filtered_array; } function tags_to_array($string){ $str_array = array(); $qoute = false; $str_buffer = ""; $tags = html_entity_decode($string); //$tags = $string; for($i = 0; $i < strlen($tags); $i++ ) { if(($tags[$i] == '"') && $qoute === true) { $qoute = false; } else if(($tags[$i] == '"') && $qoute === false) { $qoute = true; } if($tags[$i] == ' ' && !$qoute) { //str_replace( $str_buffer = str_replace('"', '', $str_buffer); array_push($str_array, $str_buffer); $str_buffer = ""; } else { $str_buffer .= $tags[$i]; } } $str_buffer = htmlspecialchars(str_replace('"', '', $str_buffer)); array_push($str_array, $str_buffer); return $str_array; } function prepare_search_string($str_array){ global $db; $prep_str = ""; for($j = 0; $j < sizeof($str_array); $j++) { $prep_str .= "'" . $db->sql_escape($str_array[$j]) . "',"; } return substr($prep_str, 0, strlen($prep_str)-1); } ?>
Search
 
 

Display results as :
 


Rechercher Advanced Search

Keywords

Latest topics
» Test Blog number one
Akashi Tanikaze EmptySun Aug 31, 2014 8:50 am by Kelsea

» Akashi Tanikaze
Akashi Tanikaze EmptySat Aug 30, 2014 11:41 pm by Tatyina

» This is a basic user generated topic.
Akashi Tanikaze EmptySat Aug 23, 2014 5:14 pm by anegge

» Your first subject
Akashi Tanikaze EmptyWed Aug 13, 2014 8:41 pm by Kelsea

March 2024
MonTueWedThuFriSatSun
    123
45678910
11121314151617
18192021222324
25262728293031

Calendar Calendar

Affiliates

free forum

Forumotion on Facebook Forumotion on Twitter Forumotion on YouTube Forumotion on Google+


Akashi Tanikaze

Go down

Akashi Tanikaze Empty Akashi Tanikaze

Post by Tatyina Sat Aug 30, 2014 11:36 pm

Akashi Tanikaze KJxAio4

Name: Akashi Tanikaze
Alias: "Hikyuu"
Sex/Gender: Female
Age: 28
Eyes: Green
Hair: Long, black ringletted in the front
Height: 5'8" (173cm)
Weight: 193lbs. (88kg)
Nationality: Japanese
Citizenship: Japanese

Wrestling Information

Strategy: Offensive
Style: Sumo
Type: Face
Preferred Attacks: Grapples, throws and strikes
Preferred Matches: Any. Standard and hentai (hardstyle) and less inclined to hardcore matches
Difficulty level: Very Hard

Finishing Moves:

Tengoku no Tenshi no Hyaku (Angel Splitter)- A torture rack

Waxing Moon, Waning Tide- A bear hug that is followed up by a falling forward and slamming the opponent on their back, crushing them between Akashi and the mat.

Brawler Buster- Exactly like 'Waxing Moon, Waning Tide' except Akashi places her forehead against her opponent's before dropping to the ground, crushing their skull between Akashi's and the mat. While exponentially more devastating, this move tends to hurt Akashi a lot as well and she'll only use it in dire straights or against particularly tough opponents.

Crashing Tide, Thunderous Mountain: Akashi will grab her opponents legs when they are on their back and leap over them, slamming her large butt into their face as well as putting them into a painful matchbook pin.

Entrance Music: "Storm" by Yoshida Brothers (Solo) | "Smoking Billy" by Thee Michelle Gun Elephant (KamiKaze)  | "One Long River" By Yoshida Brothers (Solo Hentai) | "Blooming" by Yoshida Brothers (Former Solo)| "Kemuri" by Kanjani8 (Sumo+Sensei)

Characteristics

Personality: Akashi is strong willed. She isn't usually mean spirited but in the right mood she can be cocky or even a bit sadistic. She likes a good match and is proud of her Sumo background. She is confident and acts like it. She will try and help others as long as there isn't too much of a burden for her to do so. For example she will give advice to those who seek it, especially if they want to learn about Sumo. She does have honor but will stoop down to the level of her opponents. Generally the dirtier they are the dirtier she will become.

Past/History: Akashi grew up in a large family who had devoted their lives to the art of Sumo for many generations. The only daughter of five children she grew up as "one of the brothers" being very tomboyish. They taught her the art of Sumo but she was unable to enter professional competition like her brothers due to her gender. Unperturbed by this she found the AFW and hopes that her Sumo roots will bring her the kind of fame that she could not earn inside the Dohyou.

Attire: Akashi wears a traditional Sumo mawashi sash that is dark red with leopard spot pattern. She prefers to go topless whenever she is able but if she must cover herself she wears a dark red sports bra with a stylized shide on the left breast. She also wears an armband depicting the Japanese navel emblem.

Fun facts
-Akashi was born in the Ryōgoku Kokugikan. The Sumo hall in the Ryōgoku district of Tokyo. She was born in the hall during the hanbasho tournament that her father was participating in. Though she was supposed to be born a few days after the tournament, she came out early, during the middle of the match. Her brothers assisted her mother and an on hand doctor during the birthing process and everything went without a hitch. Her father had continued on in the tournament and won every match he had afterward. When asked about the fierce power during his matches, he said that it was the birth of his daughter and the feeling that the great Akashi Shiganosuke was guiding his strikes. Akashi was named after the man who is considered to be the first Yokozuna. Her brothers are extremely jealous of this.

-Akashi can out drink almost anyone in a drinking contest. She can hold a large amount of liquor and rarely gets hangovers. Unfortunately she gets drunk only after imbibing a small amount of alcohol. This doesn't stop her from drinking often.

-A little more about Akashi and her family: Akashi is the youngest of five children. She is also the only female. Her family has a long tradition of Sumo and her father had a long and distinguished career in Sumo, even achieving the rank of Yokozuna. Her brothers are all named after famous sumo like Akashi is: Her oldest brother is Kajinosuke and is 38. Then are a pair of twins named Umegatani and Toutarou. They are 33 years old The youngest is Hitachiyama. He is 28 and is closest to Akashi in both age and bond. Akashi's father died in his sleep when she was six years old. Though the reasons are unknown, the Tanikaze family believe that he had accomplished all his goals in life. He had a strong  male that had become a Sumo and was able to take care of the rest of his family. Three other boys that looked like they would be strong men and carry on the tradition. A beautiful girl and a strong lovely wife. He had also had a great career and even achieved Yokozuna. It is said when they found him in the morning, he had a knowing smile on his face and looked like he was truly at peace.

-Akashi's nickname is Hikyuu which means leopardess in Japanese.

-Akashi has two tattoos on her body. On her right shoulder blade she has the kanji for 'Ronin' or masterless samurai. The Kanji is from one night of drinking with Sarah Gatt. It represents her life as someone who was born to serve Sumo and could not because of her gender. The other is a three pronged tomoe on her left. It is often found on the drums that the Kami Raijin beats. In Japanese mythology, he is said to have been the kami that created the typhoon that protected the Japanese from the mongols. The 'Kami' in Kamikaze. The three prongs also represent her father, her mother and brothers and her adopted sister Taylor Parker. The three stages in her life and the family who was with her during them. Akashi Tanikaze 1859139-11K11GG
^Approximation of how it looks^

AFW Information

Singles
Record: 23-12-1
Wins:
Vs. Valley Doll via Submission
Vs. Silver Ace via Pinfall
Vs. Miss Muriel Spencer via pinfall
Vs. Tai Kamiya via Bodyslam (Championship Match)
Vs. Rebecca Tomko via Forced Orgasm
Vs. Taylor Parker via Verbal Submission (@ Avalanche '12)
Vs. Rei Tomizawa via Humiliation Submission
Vs. Bullet Ant via Table
Vs. Shel via Orgasm (Hentai Blitz Tournament)
Vs. Erica via Orgasm (Hentai Blitz Tournament)
Vs. Miss Leiko via Orgasm (Hentai Blitz Tournament)
Vs. Tiffany Laurence via Pinfall (Title Defense)
Vs. Nashira Tidanaru via Orgasm (Non-title)
Vs. Angel via Submission (Title Defense) (@Avalanche '11)
Vs. Daisuke Kamiya via Disqualification (Non-title)
Vs. Kirin Sumomo via Pinfall (Championship Match)
Vs. Janabell via Pinfall
Vs. Sadie via pinfall
Vs. Riana Helstrom via orgasm (Best 2/3, 2-1)
Vs. Krystal Lee via 2 tables(best 2/3 table match)
Vs. Shanari Drackanov via Pinfall (Tournament)
Vs. Mina Oates and Mina Vice via orgasm (Made both orgasm once before she orgasmed twice)
Vs. Sarah Gatt via pinfall



Losses:
Vs. Joy, Natasha Loclear, <[Masako]>, <Natalia>, Sena Iwakura, <Andrea Ümlaüt>, <Cally Dayson>, Asha Bellanar, Elena Kelli, <Ryuujin>(Hentai Blitz Royale)
Vs. Tear Grantz via vibrator induced orgasm
Vs. Miss Muriel Spencer via getting hit directly in the butt with a kayak oar (SS 13' Bonus Match)
Vs. Kelly Conway, Heather Sunderland, Natasha Loclear, Tatsuki Le Feuvre, Sally Brown and Reika Suzuka via being thrown over the top rope
Vs. Marisa via Pinfall after orgasming
Vs. Natalia via Orgasming and being tossed off the boat (Title Match)(@Summer Splash '12)
Vs. Sarah Gatt via pinfall (@ Avalanche '11)
Vs. Robin via sumbission
Vs. Makoto Aihara via Knockout/Forfeit (Tournament)
Vs. Kirin Sumomo via Submission/Forfeit (Tournament)
Vs. Rose Deltora via Pinfall
Vs. Sarah Gatt via Pinfall

Draws:
Vs. Masane Tajiri

No Contest:
Vs. Taylor Parker

Tag Team
Record: 3-4-0

As Kamikaze:
Wins:
w/ Taylor Parker Vs. Uncharted Love! (Misha and Erica) via Pinfall (Misha)
w/ Taylor Parker Vs. Shiro Shinde (Naoko Shinoda and Stephanie McCoy) via Pinfall (Stephanie)
w/ Taylor Parker Vs. Tai Kamiya and Brad Chad via Submission (Tai Kamiya) (Tension Match)

Losses:
w/ Taylor Parker Vs. Hard Velocity (Heather Sunderland and Cecilia Northman) via Pinfall (Taylor Parker)
w/ Talia Wilson Vs. The Rinne Sisters (Karina and Yuriko) via Pinfall (Akashi Tanikaze)

Other Tag Matches:

Wins:

Losses:
Vs. The Love Bunnies via Pinfall (Miss Spencer)(@Avalanche '13)
Vs. Heather Sunderland and Adrian Kytes via Disqualification (Akashi Tanikaze) [w/Chigusa Yuuki]

Draws:

Total
26-16-1

Championships/Accomplishments
Former Friction Champion (2 Title Defenses)

Former Entropy Champion

Winner of the Inaugural Hentai Blitz Tournament

Most eliminations in the inaugural Hentai Blitz Royale (5)

Former Hentai Division #1 Contender (One Title Match[Loss])

Previously ranked #1 in the Friction Top Ten Rankings

Former #1 contender for the Tag Team Titles

Made it to the semi finals of the contendership bracket of the AFW Tournament, losing to Kirin Sumomo

Leader of Team Green Monkey during the 2012 Temple Games Akashi Tanikaze 1186061-F6GX5FK

Relationships

Friends:
Angel
Cassie Elliot
Rika Smart
Taylor Parker

Allies:
One half of Kamikaze with Taylor Parker (Formerly Talia Wilsom)
One half of Sumo+Sensei with Miss Spencer
Miyabi Takiyama (pupil)

Rival/Friend:
Sarah Gatt
Adrian Kytes
Karina Rine
Rebecca Tomko

Friend/Rival:
Katsumi Sadaji
Natalia

Rivals:
Yekaterina Lvova
Miss Muriel Spencer

Enemies:
Talia Wilson

Crushes:
Riana Helstrom
Katsumi Sadaji
Karina Rinne
Yuriko Rinne
Kahlana Rinne
Muriel Spencer (shhhhh)

Lovers:
Angel
Mina Oates (Ex)

Alliance:


Last edited by Tatyina on Sun Aug 31, 2014 12:00 am; edited 2 times in total (Reason for editing : To change the fancy colors!)
Tatyina
Tatyina

Posts : 2
Join date : 2014-08-16
Location : Eagle Nebula

Back to top Go down

Akashi Tanikaze Empty Re: Akashi Tanikaze

Post by Tatyina Sat Aug 30, 2014 11:41 pm

Timeline

Road to the Top
Spoiler:


The Champion's Path
Spoiler:


A Friendship Divided
Spoiler:

A Family Affair/Chasing Champions
Spoiler:

Chasing Champions: End
Spoiler:

Begin: A Family Affair/Hot for Teacher
Spoiler:

Sakoku
118. While You Were Out
119. Hentai Blitz Royale
120. Iron Abs
121. Taylor Parker Vs. Fallon Terrazas (from post onward)
122. Ryōgoku Rumble
123. Kamikaze Vs. Uncharted Love
124. The Ace and the Sumo
125. [Friction World Cup] Canada vs Japan: Ace vs Akashi
126. Please Train Me, Tanikaze-sama!
127. Cassie Elliot Is A Pro Wrestler(from post onward)
128. Kita-Ku, Saturday, 7pm (From post onward)
129. The Japanese Way
130. [FWC] Tournament Japan Vs. Germany (one post only)
131. [FWC] Semi Finals Japan Vs United States
132. Can I Come Over?
133. Sakoku
134. Akashi Tanikaze vs. Valley Doll - Pride and Prejudice
Tatyina
Tatyina

Posts : 2
Join date : 2014-08-16
Location : Eagle Nebula

Back to top Go down

Back to top


 
Permissions in this forum:
You cannot reply to topics in this forum