首页 > 其他分享 >Script of Narrative Writing from different point of view

Script of Narrative Writing from different point of view

时间:2024-04-26 22:34:02浏览次数:24  
标签:different they Script point Ellie Carl view was he

My favorite story: up
The point of view of the story: First person point of view
New point of view: Third person point of view
Script:
Little boy Carl was mad about adventure from childhood, hoping to be a great adventurer.
One day, he encountered tomboy Ellie with enthusiasm of adventure. Ellie shared her dream place with him, "Paradise Falls, a land lost in time" . "That's it! You can take us there in a blimp! Swear you'll take us! Cross your heart!" Ellie said with great excitement. Carl nodded obediently. That promise bound them together ever since.
Gradually, they fell in love with each other. The same hobby eventually made Carl and Ellie a lifelong couple. They grew up together and got married until they were old.
Carl and Ellie shared a common desire to explore the "Wonderland Falls" in South America. However, that dream never came ture when Ellie was alive.
After Ellie passed away, government planed to rebuild the place where Carl lived. But Carl was unwilling to leave the house which beared the memories of Ellie. "Tell your boss he can have our house, when I'm dead!" Carl said angrily. A few days later, Carl were forced to go to a nursing home for accidentally injuring someone. Before leaving, "I wanna say one last goodbye to the old place." Carl said to the worker of the nursing home and closed the door. A few minutes later, a shocking picture emerged—Carl lifted his house into the sky with colorful balloons, resolving to realize their unfulfilled dream.
While he was enjoying this great journey alone, suddenly there was a knock at the door. Carl opened the door and looked around. Suddenly, he found a boy clinging to the window as he was about to be blown down. It was Russell, an overly optimistic 8-year-old boy, who called himself the "Wilderness Explorer". "Please let me in." Russell said tremblingly. For the sake of mercy, Carl had to take Russell with him on this thrilling adventure.
While walking through a forest, they encountered Kevin, a large flightless bird, and Dug, a talking dog, which added pleasure to the journey.
However, what behind this was Charles Muntz's malicious scheme, who was the idol of Carl in the past. They found that Muntz was a bad man who would do anything to get what he wanted. Knowing they had seen kevin, a beautiful bird he wanted to catch to prove himself, "These people who pass through here, they all tell pretty good stories. A surveyor making a map. A botanist cataloging plants. An old man taking his house to Paradise Falls. "Muntz said threateningly to Carl, throwing a helmet at carl's side,"I mean, that's the best one yet. I can't wait to hear how it ends." Soon after, the journey of escaping began.
With the help of Dug, they were out of danger temporarily. At that time, Cral was just one step away from his dream place.
Carl read through Ellie's adventure diary and saw a message she had left for him,"Thanks for the adventure, now go have a new one!"
Eventually, in order to save Russell and Kevin, Carl gave up his flyhouse, gave up his dream, and even gave up the memories with Ellie. Seeing his flyhouse falling down slowly, Carl said calmly, "It's just a house", as if he had let go of the past. He moved on from the past and started a new journey.

标签:different,they,Script,point,Ellie,Carl,view,was,he
From: https://www.cnblogs.com/mmq123456/p/18161015

相关文章

  • Script of Narrative Writing from different point of view
    Myfavoritestory:SoulThepointofviewofthestory:ThirdpersonpointofviewNewpointofview:FirstpersonpointofviewScript:MynameisJoeGardner.I'manordinarymiddleschoolmusicteacher.Mydailylifeisarepetitionofthesameth......
  • javascript高级编程系列 - 使用fetch发送http请求
    fetch采用模块化设计,api分散在多个对象上(Response对象,Request对象,Header对象),fetch通过数据流(stream对象)处理数据可以分块读取,有利于提高网站性能。发送GET请求fetch函数只传递一个url,默认以get方法发送请求。promisefetch(url).then(response=>response.json()).......
  • The "TypeScript Vue Plugin (Volar)" extension is no longer needed since v2. Plea
    这个报错信息表明你正在使用的是VisualStudioCode或者其他支持Volar的编辑器,而Volar是一个为Vue3应用提供TypeScript支持的工具。这个报错指出自从Volar版本2开始,"TypeScriptVue插件(Volar)"这个扩展就不再需要了。解决方法:如果你在使用的是VisualStudioCode编辑器,并且安装......
  • JavaScript---FileReader、Blob、File对象
    ArrayBuffer对象,Blob对象ArrayBuffer对象ArrayBuffer对象表示一段二进制数据,用来模拟内存里面的数据。通过这个对象,JavaScript可以读写二进制数据。这个对象可以看作内存数据的表达。这个对象是ES6才写入标准的,普通的网页编程用不到它,为了教程体系的完整,下面只提供一......
  • 闪回还原点(Restore Point)
    还原点概念Restorepoint 有两种类型: Normal 和 Guaranteed。1)Normalrestorepoint创建语法:createrestorepointrp_name;相当于某个时间点或者 SCN 的一个别名。 restorepoint 的名字和对应的 SCN 会保存在控制文件中。创建了 normalrestorepoint 后,如果需......
  • 支付宝JavaScript跳转领取红包
    代码如下<!DOCTYPEhtml><html><head> <title>赚钱红包</title> <metacharset="utf-8"> <metaname="wechat-enable-text-zoom-em"content="true"> <metahttp-equiv="Content-Type"......
  • PImpl:Pointer to Implementation
    Pimpl(Pointertoimplementation)是一种C++编程技术,用于将类的实现细节与其接口分离。通常情况下,类的实现细节会暴露在类的头文件中,这会增加代码的复杂性并使得类的修改和维护变得困难。使用Pimpl技术,可以在类的头文件中只暴露必要的接口,而将具体实现细节放在单独的实现文件中,通过......
  • 【Flink入门修炼】2-3 Flink Checkpoint 原理机制
    如果让你来做一个有状态流式应用的故障恢复,你会如何来做呢?单机和多机会遇到什么不同的问题?FlinkCheckpoint是做什么用的?原理是什么?一、什么是Checkpoint?Checkpoint是对当前运行状态的完整记录。程序重启后能从Checkpoint中恢复出输入数据读取到哪了,各个算子原来的状态是......
  • 【vue3入门】-【3】使用javascript表达式
    使用javascript表达式每个绑定仅支持单一表达式,也就是一段能够被求值的JavaScript代码。一个简单的判断方法是是否可以合法的写在return后面。<template><h3>模版语法</h3><p>{{msg}}</p><p>{{number+1}}</p><p>{{ok?"yes":"No"}}</......
  • 深入解析JavaScript的块级作用域和for循环的性能考量
    "当然,以下是一篇关于JavaScript中块级作用域和循环的深入分析的博客文章草稿:深入解析JavaScript的块级作用域和for循环的性能考量块级作用域的基本理解在JavaScript中,块级作用域是由大括号{}定义的作用域,限定了变量的可见性和生命周期。通常情况下,如if、try...catch以及with等......